ETH Price: $3,501.36 (+3.86%)
Gas: 4 Gwei

Token

Censored (PFP)
 

Overview

Max Total Supply

449 PFP

Holders

151

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
simonbuidl.eth
Balance
5 PFP
0x11145fc22221d317784bd5fdc5dd429354aa0d9c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Censored

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : Censored.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.10;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "./IReverseRegistrar.sol";
import "./ERC721.sol";

/**
 * @title MasterchefMasatoshi
 * NFT + DAO = NEW META
 * Vitalik, remove contract size limit pls
 */
contract Censored is ERC721, Ownable {
  using ECDSA for bytes32;
  string public PROVENANCE;
  bool provenanceSet;

  uint256 public mintPrice;
  uint256 public maxPossibleSupply;
  uint256 public allowListMintPrice;
  uint256 public maxAllowedMints;

  address public immutable currency;
  address immutable wrappedNativeCoinAddress;

  address private signerAddress;
  bool public paused;

  address immutable ENSReverseRegistrar = 0x084b1c3C81545d370f3634392De611CaaBFf8148;

  enum MintStatus {
    PreMint,
    AllowList,
    Public,
    Finished
  }

  MintStatus public mintStatus = MintStatus.PreMint;

  mapping (address => uint256) totalMintsPerAddress;

  constructor(
      string memory _name,
      string memory _symbol,
      uint256 _maxPossibleSupply,
      uint256 _mintPrice,
      uint256 _allowListMintPrice,
      uint256 _maxAllowedMints,
      address _signerAddress,
      address _currency,
      address _wrappedNativeCoinAddress
  ) ERC721(_name, _symbol, _maxAllowedMints) {
    maxPossibleSupply = _maxPossibleSupply;
    mintPrice = _mintPrice;
    allowListMintPrice = _allowListMintPrice;
    maxAllowedMints = _maxAllowedMints;
    signerAddress = _signerAddress;
    currency = _currency;
    wrappedNativeCoinAddress = _wrappedNativeCoinAddress;
  }

  function flipPaused() external onlyOwner {
    paused = !paused;
  }

  function preMint(uint amount) public onlyOwner {
    require(mintStatus == MintStatus.PreMint, "s");
    require(totalSupply() + amount <= maxPossibleSupply, "m");  
    _safeMint(msg.sender, amount);
  }

  function setProvenanceHash(string memory provenanceHash) public onlyOwner {
    require(!provenanceSet);
    PROVENANCE = provenanceHash;
    provenanceSet = true;
  }

  function setBaseURI(string memory baseURI) public onlyOwner {
    _setBaseURI(baseURI);
  }
  
  function changeMintStatus(MintStatus _status) external onlyOwner {
    require(_status != MintStatus.PreMint);
    mintStatus = _status;
  }

  function mintAllowList(
    bytes32 messageHash,
    bytes calldata signature,
    uint amount
  ) public payable {
    require(mintStatus == MintStatus.AllowList && !paused, "s");
    require(totalSupply() + amount <= maxPossibleSupply, "m");
    require(hashMessage(msg.sender, address(this)) == messageHash, "i");
    require(verifyAddressSigner(messageHash, signature), "f");
    require(totalMintsPerAddress[msg.sender] + amount <= maxAllowedMints, "l");

    if (currency == wrappedNativeCoinAddress) {
      require(allowListMintPrice * amount <= msg.value, "a");
    } else {
      IERC20 _currency = IERC20(currency);
      _currency.transferFrom(msg.sender, address(this), amount * allowListMintPrice);
    }

    totalMintsPerAddress[msg.sender] = totalMintsPerAddress[msg.sender] + amount;
    _safeMint(msg.sender, amount);
  }

  function mintPublic(uint amount) public payable {
    require(mintStatus == MintStatus.Public && !paused, "s");
    require(totalSupply() + amount <= maxPossibleSupply, "m");
    require(totalMintsPerAddress[msg.sender] + amount <= maxAllowedMints, "l");

    if (currency == wrappedNativeCoinAddress) {
      require(mintPrice * amount <= msg.value, "a");
    } else {
      IERC20 _currency = IERC20(currency);
      _currency.transferFrom(msg.sender, address(this), amount * mintPrice);
    }

    totalMintsPerAddress[msg.sender] = totalMintsPerAddress[msg.sender] + amount;
    _safeMint(msg.sender, amount);

    if (totalSupply() == maxPossibleSupply) {
      mintStatus = MintStatus.Finished;
    }
  }

  function addReverseENSRecord(string memory name) external onlyOwner {
    IReverseRegistrar(ENSReverseRegistrar).setName(name);
  }

  receive() external payable {
    mintPublic(msg.value / mintPrice);
  }

  function verifyAddressSigner(bytes32 messageHash, bytes memory signature) private view returns (bool) {
    return signerAddress == messageHash.toEthSignedMessageHash().recover(signature);
  }

  function hashMessage(address sender, address thisContract) public pure returns (bytes32) {
    return keccak256(abi.encodePacked(sender, thisContract));
  }

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

  function withdrawTokens(address tokenAddress) external onlyOwner() {
    IERC20(tokenAddress).transfer(msg.sender, IERC20(tokenAddress).balanceOf(address(this)));
  }
}

// The High Table

File 2 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 15 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 4 of 15 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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 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 15 : IReverseRegistrar.sol
// SPDX-License-Identifier: UNLICENSED

pragma solidity >=0.8.4;

interface IReverseRegistrar {
    function setDefaultResolver(address resolver) external;

    function claim(address owner) external returns (bytes32);

    function claimForAddr(
        address addr,
        address owner,
        address resolver
    ) external returns (bytes32);

    function claimWithResolver(address owner, address resolver)
        external
        returns (bytes32);

    function setName(string memory name) external returns (bytes32);

    function setNameForAddr(
        address addr,
        address owner,
        address resolver,
        string memory name
    ) external returns (bytes32);

    function node(address addr) external pure returns (bytes32);
    function setAddr(bytes32 node, address a) external;
}

File 6 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.10;

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 ERC721 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;

    // Base URI
    string private _baseURI;

    // 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, "b");
        _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(), "g");
        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), "b");
        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("u");
    }

    /**
     * @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), "0");
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "0");
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "t");

        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("o");
    }

    /**
     * @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), "z");

        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() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }



    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "o");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "a"
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), "a");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "a");

        _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),
            "z"
        );
    }

    /**
     * @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), "0");
        // 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), "a");
        require(quantity <= maxBatchSize, "m");

        _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),
                "z"
            );
            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, "a");

        require(prevOwnership.addr == from, "o");
        require(to != address(0), "0");

        _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, "q");
        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), "n");
        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("z");
                } 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 7 of 15 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 8 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 10 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 12 of 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 15 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 14 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 15 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_maxPossibleSupply","type":"uint256"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_allowListMintPrice","type":"uint256"},{"internalType":"uint256","name":"_maxAllowedMints","type":"uint256"},{"internalType":"address","name":"_signerAddress","type":"address"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"address","name":"_wrappedNativeCoinAddress","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":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":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"}],"name":"addReverseENSRecord","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowListMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum Censored.MintStatus","name":"_status","type":"uint8"}],"name":"changeMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"thisContract","type":"address"}],"name":"hashMessage","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","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":"maxAllowedMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPossibleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"messageHash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStatus","outputs":[{"internalType":"enum Censored.MintStatus","name":"","type":"uint8"}],"stateMutability":"view","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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"preMint","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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

61010060405260008055600060085573084b1c3c81545d370f3634392de611caabff814873ffffffffffffffffffffffffffffffffffffffff1660e09073ffffffffffffffffffffffffffffffffffffffff168152506000601060156101000a81548160ff021916908360038111156200007e576200007d620003ae565b5b02179055503480156200009057600080fd5b5060405162005fdf38038062005fdf8339818101604052810190620000b691906200061a565b88888560008111620000ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000f69062000798565b60405180910390fd5b826001908051906020019062000117929190620002fe565b50816002908051906020019062000130929190620002fe565b5080608081815250505050506200015c620001506200023060201b60201c565b6200023860201b60201c565b86600d8190555085600c8190555084600e8190555083600f8190555082601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250505050505050505050506200081f565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200030c90620007e9565b90600052602060002090601f0160209004810192826200033057600085556200037c565b82601f106200034b57805160ff19168380011785556200037c565b828001600101855582156200037c579182015b828111156200037b5782518255916020019190600101906200035e565b5b5090506200038b91906200038f565b5090565b5b80821115620003aa57600081600090555060010162000390565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200044682620003fb565b810181811067ffffffffffffffff821117156200046857620004676200040c565b5b80604052505050565b60006200047d620003dd565b90506200048b82826200043b565b919050565b600067ffffffffffffffff821115620004ae57620004ad6200040c565b5b620004b982620003fb565b9050602081019050919050565b60005b83811015620004e6578082015181840152602081019050620004c9565b83811115620004f6576000848401525b50505050565b6000620005136200050d8462000490565b62000471565b905082815260208101848484011115620005325762000531620003f6565b5b6200053f848285620004c6565b509392505050565b600082601f8301126200055f576200055e620003f1565b5b815162000571848260208601620004fc565b91505092915050565b6000819050919050565b6200058f816200057a565b81146200059b57600080fd5b50565b600081519050620005af8162000584565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005e282620005b5565b9050919050565b620005f481620005d5565b81146200060057600080fd5b50565b6000815190506200061481620005e9565b92915050565b60008060008060008060008060006101208a8c03121562000640576200063f620003e7565b5b60008a015167ffffffffffffffff811115620006615762000660620003ec565b5b6200066f8c828d0162000547565b99505060208a015167ffffffffffffffff811115620006935762000692620003ec565b5b620006a18c828d0162000547565b9850506040620006b48c828d016200059e565b9750506060620006c78c828d016200059e565b9650506080620006da8c828d016200059e565b95505060a0620006ed8c828d016200059e565b94505060c0620007008c828d0162000603565b93505060e0620007138c828d0162000603565b925050610100620007278c828d0162000603565b9150509295985092959850929598565b600082825260208201905092915050565b7f6200000000000000000000000000000000000000000000000000000000000000600082015250565b60006200078060018362000737565b91506200078d8262000748565b602082019050919050565b60006020820190508181036000830152620007b38162000771565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200080257607f821691505b60208210811415620008195762000818620007ba565b5b50919050565b60805160a05160c05160e0516157556200088a60003960006124c6015260008181610ac00152612124015260008181610af701528181610b8b0152818161215b015281816121ef0152612566015260008181612e8a01528181612eb3015261351e01526157556000f3fe60806040526004361061023f5760003560e01c806368855b641161012e578063a22cb465116100ab578063dfb5259c1161006f578063dfb5259c14610873578063e5a6b10f1461089c578063e985e9c5146108c7578063efd0cbf914610904578063f2fde38b146109205761025c565b8063a22cb4651461079d578063a9cbd06d146107c6578063b88d4fde146107e2578063c87b56dd1461080b578063d7224ba0146108485761025c565b80637cac2602116100f25780637cac2602146106ca5780638ad433ac146106f35780638da5cb5b1461071c57806395d89b41146107475780639da3f8fd146107725761025c565b806368855b64146105e35780636c0360eb1461060e5780636c82054b1461063957806370a0823114610676578063715018a6146106b35761025c565b80633ccfd60b116101bc57806355f804b31161018057806355f804b3146104fc5780635c975abb146105255780636352211e146105505780636373a6b11461058d5780636817c76c146105b85761025c565b80633ccfd60b1461042b57806342842e0e1461044257806344fead9e1461046b57806349df728c146104965780634f6ccce7146104bf5761025c565b806318160ddd1161020357806318160ddd1461035857806323b872dd146103835780632f745c59146103ac578063333171bb146103e9578063386b7691146104005761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b314610306578063109695231461032f5761025c565b3661025c5761025a600c54346102559190613eaa565b610949565b005b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613f47565b610d14565b6040516102959190613f8f565b60405180910390f35b3480156102aa57600080fd5b506102b3610e5e565b6040516102c09190614043565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190614091565b610ef0565b6040516102fd91906140ff565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190614146565b610f75565b005b34801561033b57600080fd5b50610356600480360381019061035191906142bb565b61108e565b005b34801561036457600080fd5b5061036d611159565b60405161037a9190614313565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a5919061432e565b611162565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190614146565b611172565b6040516103e09190614313565b60405180910390f35b3480156103f557600080fd5b506103fe611370565b005b34801561040c57600080fd5b50610415611418565b6040516104229190614313565b60405180910390f35b34801561043757600080fd5b5061044061141e565b005b34801561044e57600080fd5b506104696004803603810190610464919061432e565b6114e3565b005b34801561047757600080fd5b50610480611503565b60405161048d9190614313565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190614381565b611509565b005b3480156104cb57600080fd5b506104e660048036038101906104e19190614091565b611680565b6040516104f39190614313565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e91906142bb565b6116d3565b005b34801561053157600080fd5b5061053a61175b565b6040516105479190613f8f565b60405180910390f35b34801561055c57600080fd5b5061057760048036038101906105729190614091565b61176e565b60405161058491906140ff565b60405180910390f35b34801561059957600080fd5b506105a2611784565b6040516105af9190614043565b60405180910390f35b3480156105c457600080fd5b506105cd611812565b6040516105da9190614313565b60405180910390f35b3480156105ef57600080fd5b506105f8611818565b6040516106059190614313565b60405180910390f35b34801561061a57600080fd5b5061062361181e565b6040516106309190614043565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b91906143ae565b6118b0565b60405161066d9190614407565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190614381565b6118e3565b6040516106aa9190614313565b60405180910390f35b3480156106bf57600080fd5b506106c86119cc565b005b3480156106d657600080fd5b506106f160048036038101906106ec9190614447565b611a54565b005b3480156106ff57600080fd5b5061071a60048036038101906107159190614091565b611b2f565b005b34801561072857600080fd5b50610731611c85565b60405161073e91906140ff565b60405180910390f35b34801561075357600080fd5b5061075c611caf565b6040516107699190614043565b60405180910390f35b34801561077e57600080fd5b50610787611d41565b60405161079491906144eb565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190614532565b611d54565b005b6107e060048036038101906107db91906145fe565b611ed5565b005b3480156107ee57600080fd5b5061080960048036038101906108049190614713565b61233e565b005b34801561081757600080fd5b50610832600480360381019061082d9190614091565b61239a565b60405161083f9190614043565b60405180910390f35b34801561085457600080fd5b5061085d612442565b60405161086a9190614313565b60405180910390f35b34801561087f57600080fd5b5061089a600480360381019061089591906142bb565b612448565b005b3480156108a857600080fd5b506108b1612564565b6040516108be91906140ff565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e991906143ae565b612588565b6040516108fb9190613f8f565b60405180910390f35b61091e60048036038101906109199190614091565b610949565b005b34801561092c57600080fd5b5061094760048036038101906109429190614381565b61261c565b005b6002600381111561095d5761095c614474565b5b601060159054906101000a900460ff16600381111561097f5761097e614474565b5b1480156109995750601060149054906101000a900460ff16155b6109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf906147e2565b60405180910390fd5b600d54816109e4611159565b6109ee9190614802565b1115610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a26906148a4565b60405180910390fd5b600f5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a7d9190614802565b1115610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab590614910565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff161415610b87573481600c54610b419190614930565b1115610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b79906149d6565b60405180910390fd5b610c3c565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600c5486610bd89190614930565b6040518463ffffffff1660e01b8152600401610bf6939291906149f6565b6020604051808303816000875af1158015610c15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c399190614a42565b50505b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c879190614802565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610cd43382612714565b600d54610cdf611159565b1415610d11576003601060156101000a81548160ff02191690836003811115610d0b57610d0a614474565b5b02179055505b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ddf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e4757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e575750610e5682612732565b5b9050919050565b606060018054610e6d90614a9e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9990614a9e565b8015610ee65780601f10610ebb57610100808354040283529160200191610ee6565b820191906000526020600020905b815481529060010190602001808311610ec957829003601f168201915b5050505050905090565b6000610efb8261279c565b610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f31906149d6565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f808261176e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890614b1c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166110106127a9565b73ffffffffffffffffffffffffffffffffffffffff16148061103f575061103e816110396127a9565b612588565b5b61107e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611075906149d6565b60405180910390fd5b6110898383836127b1565b505050565b6110966127a9565b73ffffffffffffffffffffffffffffffffffffffff166110b4611c85565b73ffffffffffffffffffffffffffffffffffffffff161461110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190614b88565b60405180910390fd5b600b60009054906101000a900460ff161561112457600080fd5b80600a908051906020019061113a929190613d65565b506001600b60006101000a81548160ff02191690831515021790555050565b60008054905090565b61116d838383612863565b505050565b600061117d836118e3565b82106111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b590614bf4565b60405180910390fd5b60006111c8611159565b905060008060005b8381101561132e576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146112c257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561131a578684141561130b57819550505050505061136a565b838061131690614c14565b9450505b50808061132690614c14565b9150506111d0565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190614ca9565b60405180910390fd5b92915050565b6113786127a9565b73ffffffffffffffffffffffffffffffffffffffff16611396611c85565b73ffffffffffffffffffffffffffffffffffffffff16146113ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e390614b88565b60405180910390fd5b601060149054906101000a900460ff1615601060146101000a81548160ff021916908315150217905550565b600d5481565b6114266127a9565b73ffffffffffffffffffffffffffffffffffffffff16611444611c85565b73ffffffffffffffffffffffffffffffffffffffff161461149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190614b88565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156114e0573d6000803e3d6000fd5b50565b6114fe8383836040518060200160405280600081525061233e565b505050565b600f5481565b6115116127a9565b73ffffffffffffffffffffffffffffffffffffffff1661152f611c85565b73ffffffffffffffffffffffffffffffffffffffff1614611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c90614b88565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016115db91906140ff565b602060405180830381865afa1580156115f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161c9190614cde565b6040518363ffffffff1660e01b8152600401611639929190614d0b565b6020604051808303816000875af1158015611658573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061167c9190614a42565b5050565b600061168a611159565b82106116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c290614d80565b60405180910390fd5b819050919050565b6116db6127a9565b73ffffffffffffffffffffffffffffffffffffffff166116f9611c85565b73ffffffffffffffffffffffffffffffffffffffff161461174f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174690614b88565b60405180910390fd5b61175881612e1c565b50565b601060149054906101000a900460ff1681565b600061177982612e36565b600001519050919050565b600a805461179190614a9e565b80601f01602080910402602001604051908101604052809291908181526020018280546117bd90614a9e565b801561180a5780601f106117df5761010080835404028352916020019161180a565b820191906000526020600020905b8154815290600101906020018083116117ed57829003601f168201915b505050505081565b600c5481565b600e5481565b60606003805461182d90614a9e565b80601f016020809104026020016040519081016040528092919081815260200182805461185990614a9e565b80156118a65780601f1061187b576101008083540402835291602001916118a6565b820191906000526020600020905b81548152906001019060200180831161188957829003601f168201915b5050505050905090565b600082826040516020016118c5929190614de8565b60405160208183030381529060405280519060200120905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b90614e60565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6119d46127a9565b73ffffffffffffffffffffffffffffffffffffffff166119f2611c85565b73ffffffffffffffffffffffffffffffffffffffff1614611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f90614b88565b60405180910390fd5b611a526000613039565b565b611a5c6127a9565b73ffffffffffffffffffffffffffffffffffffffff16611a7a611c85565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790614b88565b60405180910390fd5b60006003811115611ae457611ae3614474565b5b816003811115611af757611af6614474565b5b1415611b0257600080fd5b80601060156101000a81548160ff02191690836003811115611b2757611b26614474565b5b021790555050565b611b376127a9565b73ffffffffffffffffffffffffffffffffffffffff16611b55611c85565b73ffffffffffffffffffffffffffffffffffffffff1614611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290614b88565b60405180910390fd5b60006003811115611bbf57611bbe614474565b5b601060159054906101000a900460ff166003811115611be157611be0614474565b5b14611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c18906147e2565b60405180910390fd5b600d5481611c2d611159565b611c379190614802565b1115611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f906148a4565b60405180910390fd5b611c823382612714565b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611cbe90614a9e565b80601f0160208091040260200160405190810160405280929190818152602001828054611cea90614a9e565b8015611d375780601f10611d0c57610100808354040283529160200191611d37565b820191906000526020600020905b815481529060010190602001808311611d1a57829003601f168201915b5050505050905090565b601060159054906101000a900460ff1681565b611d5c6127a9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc1906149d6565b60405180910390fd5b8060076000611dd76127a9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e846127a9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ec99190613f8f565b60405180910390a35050565b60016003811115611ee957611ee8614474565b5b601060159054906101000a900460ff166003811115611f0b57611f0a614474565b5b148015611f255750601060149054906101000a900460ff16155b611f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5b906147e2565b60405180910390fd5b600d5481611f70611159565b611f7a9190614802565b1115611fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb2906148a4565b60405180910390fd5b83611fc633306118b0565b14612006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffd90614ecc565b60405180910390fd5b6120548484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506130ff565b612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90614f38565b60405180910390fd5b600f5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120e19190614802565b1115612122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211990614910565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1614156121eb573481600e546121a59190614930565b11156121e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dd906149d6565b60405180910390fd5b6122a0565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600e548661223c9190614930565b6040518463ffffffff1660e01b815260040161225a939291906149f6565b6020604051808303816000875af1158015612279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229d9190614a42565b50505b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122eb9190614802565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506123383382612714565b50505050565b612349848484612863565b61235584848484613174565b612394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238b90614fa4565b60405180910390fd5b50505050565b60606123a58261279c565b6123e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123db90614fa4565b60405180910390fd5b6000600380546123f390614a9e565b90501161240f576040518060200160405280600081525061243b565b600361241a836132fc565b60405160200161242b929190615094565b6040516020818303038152906040525b9050919050565b60085481565b6124506127a9565b73ffffffffffffffffffffffffffffffffffffffff1661246e611c85565b73ffffffffffffffffffffffffffffffffffffffff16146124c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bb90614b88565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c47f0027826040518263ffffffff1660e01b815260040161251d9190614043565b6020604051808303816000875af115801561253c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061256091906150cd565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6126246127a9565b73ffffffffffffffffffffffffffffffffffffffff16612642611c85565b73ffffffffffffffffffffffffffffffffffffffff1614612698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268f90614b88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ff9061516c565b60405180910390fd5b61271181613039565b50565b61272e82826040518060200160405280600081525061345d565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061286e82612e36565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166128956127a9565b73ffffffffffffffffffffffffffffffffffffffff1614806128f157506128ba6127a9565b73ffffffffffffffffffffffffffffffffffffffff166128d984610ef0565b73ffffffffffffffffffffffffffffffffffffffff16145b8061290d575061290c82600001516129076127a9565b612588565b5b90508061294f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612946906149d6565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146129c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b890614b1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2890614e60565b60405180910390fd5b612a3e858585600161393c565b612a4e60008484600001516127b1565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612abc91906151a8565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612b6091906151dc565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612c669190614802565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612dac57612cdc8161279c565b15612dab576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e148686866001613942565b505050505050565b8060039080519060200190612e32929190613d65565b5050565b612e3e613deb565b612e478261279c565b612e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7d9061526e565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612eea5760017f000000000000000000000000000000000000000000000000000000000000000084612edd919061528e565b612ee79190614802565b90505b60008390505b818110612ff8576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fe457809350505050613034565b508080612ff0906152c2565b915050612ef0565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302b90614b1c565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061311c8261310e85613948565b61397890919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b60006131958473ffffffffffffffffffffffffffffffffffffffff1661399f565b156132ef578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131be6127a9565b8786866040518563ffffffff1660e01b81526004016131e09493929190615341565b6020604051808303816000875af192505050801561321c57506040513d601f19601f8201168201806040525081019061321991906153a2565b60015b61329f573d806000811461324c576040519150601f19603f3d011682016040523d82523d6000602084013e613251565b606091505b50600081511415613297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328e90614fa4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132f4565b600190505b949350505050565b60606000821415613344576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613458565b600082905060005b6000821461337657808061335f90614c14565b915050600a8261336f9190613eaa565b915061334c565b60008167ffffffffffffffff81111561339257613391614190565b5b6040519080825280601f01601f1916602001820160405280156133c45781602001600182028036833780820191505090505b5090505b60008514613451576001826133dd919061528e565b9150600a856133ec91906153cf565b60306133f89190614802565b60f81b81838151811061340e5761340d615400565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561344a9190613eaa565b94506133c8565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156134d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ca90614e60565b60405180910390fd5b6134dc8161279c565b1561351c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613513906149d6565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083111561357f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613576906148a4565b60405180910390fd5b61358c600085838661393c565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161368991906151dc565b6fffffffffffffffffffffffffffffffff1681526020018583602001516136b091906151dc565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561391f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138bf6000888488613174565b6138fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138f590614fa4565b60405180910390fd5b818061390990614c14565b925050808061391790614c14565b91505061384e565b50806000819055506139346000878588613942565b505050505050565b50505050565b50505050565b60008160405160200161395b919061549c565b604051602081830303815290604052805190602001209050919050565b600080600061398785856139b2565b9150915061399481613a35565b819250505092915050565b600080823b905060008111915050919050565b6000806041835114156139f45760008060006020860151925060408601519150606086015160001a90506139e887828585613c0a565b94509450505050613a2e565b604083511415613a25576000806020850151915060408501519050613a1a868383613d17565b935093505050613a2e565b60006002915091505b9250929050565b60006004811115613a4957613a48614474565b5b816004811115613a5c57613a5b614474565b5b1415613a6757613c07565b60016004811115613a7b57613a7a614474565b5b816004811115613a8e57613a8d614474565b5b1415613acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ac69061550e565b60405180910390fd5b60026004811115613ae357613ae2614474565b5b816004811115613af657613af5614474565b5b1415613b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b2e9061557a565b60405180910390fd5b60036004811115613b4b57613b4a614474565b5b816004811115613b5e57613b5d614474565b5b1415613b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b969061560c565b60405180910390fd5b600480811115613bb257613bb1614474565b5b816004811115613bc557613bc4614474565b5b1415613c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bfd9061569e565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613c45576000600391509150613d0e565b601b8560ff1614158015613c5d5750601c8560ff1614155b15613c6f576000600491509150613d0e565b600060018787878760405160008152602001604052604051613c9494939291906156da565b6020604051602081039080840390855afa158015613cb6573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613d0557600060019250925050613d0e565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613d5787828885613c0a565b935093505050935093915050565b828054613d7190614a9e565b90600052602060002090601f016020900481019282613d935760008555613dda565b82601f10613dac57805160ff1916838001178555613dda565b82800160010185558215613dda579182015b82811115613dd9578251825591602001919060010190613dbe565b5b509050613de79190613e25565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613e3e576000816000905550600101613e26565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613eb582613e42565b9150613ec083613e42565b925082613ed057613ecf613e4c565b5b828204905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613f2481613eef565b8114613f2f57600080fd5b50565b600081359050613f4181613f1b565b92915050565b600060208284031215613f5d57613f5c613ee5565b5b6000613f6b84828501613f32565b91505092915050565b60008115159050919050565b613f8981613f74565b82525050565b6000602082019050613fa46000830184613f80565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613fe4578082015181840152602081019050613fc9565b83811115613ff3576000848401525b50505050565b6000601f19601f8301169050919050565b600061401582613faa565b61401f8185613fb5565b935061402f818560208601613fc6565b61403881613ff9565b840191505092915050565b6000602082019050818103600083015261405d818461400a565b905092915050565b61406e81613e42565b811461407957600080fd5b50565b60008135905061408b81614065565b92915050565b6000602082840312156140a7576140a6613ee5565b5b60006140b58482850161407c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006140e9826140be565b9050919050565b6140f9816140de565b82525050565b600060208201905061411460008301846140f0565b92915050565b614123816140de565b811461412e57600080fd5b50565b6000813590506141408161411a565b92915050565b6000806040838503121561415d5761415c613ee5565b5b600061416b85828601614131565b925050602061417c8582860161407c565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6141c882613ff9565b810181811067ffffffffffffffff821117156141e7576141e6614190565b5b80604052505050565b60006141fa613edb565b905061420682826141bf565b919050565b600067ffffffffffffffff82111561422657614225614190565b5b61422f82613ff9565b9050602081019050919050565b82818337600083830152505050565b600061425e6142598461420b565b6141f0565b90508281526020810184848401111561427a5761427961418b565b5b61428584828561423c565b509392505050565b600082601f8301126142a2576142a1614186565b5b81356142b284826020860161424b565b91505092915050565b6000602082840312156142d1576142d0613ee5565b5b600082013567ffffffffffffffff8111156142ef576142ee613eea565b5b6142fb8482850161428d565b91505092915050565b61430d81613e42565b82525050565b60006020820190506143286000830184614304565b92915050565b60008060006060848603121561434757614346613ee5565b5b600061435586828701614131565b935050602061436686828701614131565b92505060406143778682870161407c565b9150509250925092565b60006020828403121561439757614396613ee5565b5b60006143a584828501614131565b91505092915050565b600080604083850312156143c5576143c4613ee5565b5b60006143d385828601614131565b92505060206143e485828601614131565b9150509250929050565b6000819050919050565b614401816143ee565b82525050565b600060208201905061441c60008301846143f8565b92915050565b6004811061442f57600080fd5b50565b60008135905061444181614422565b92915050565b60006020828403121561445d5761445c613ee5565b5b600061446b84828501614432565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600481106144b4576144b3614474565b5b50565b60008190506144c5826144a3565b919050565b60006144d5826144b7565b9050919050565b6144e5816144ca565b82525050565b600060208201905061450060008301846144dc565b92915050565b61450f81613f74565b811461451a57600080fd5b50565b60008135905061452c81614506565b92915050565b6000806040838503121561454957614548613ee5565b5b600061455785828601614131565b92505060206145688582860161451d565b9150509250929050565b61457b816143ee565b811461458657600080fd5b50565b60008135905061459881614572565b92915050565b600080fd5b600080fd5b60008083601f8401126145be576145bd614186565b5b8235905067ffffffffffffffff8111156145db576145da61459e565b5b6020830191508360018202830111156145f7576145f66145a3565b5b9250929050565b6000806000806060858703121561461857614617613ee5565b5b600061462687828801614589565b945050602085013567ffffffffffffffff81111561464757614646613eea565b5b614653878288016145a8565b935093505060406146668782880161407c565b91505092959194509250565b600067ffffffffffffffff82111561468d5761468c614190565b5b61469682613ff9565b9050602081019050919050565b60006146b66146b184614672565b6141f0565b9050828152602081018484840111156146d2576146d161418b565b5b6146dd84828561423c565b509392505050565b600082601f8301126146fa576146f9614186565b5b813561470a8482602086016146a3565b91505092915050565b6000806000806080858703121561472d5761472c613ee5565b5b600061473b87828801614131565b945050602061474c87828801614131565b935050604061475d8782880161407c565b925050606085013567ffffffffffffffff81111561477e5761477d613eea565b5b61478a878288016146e5565b91505092959194509250565b7f7300000000000000000000000000000000000000000000000000000000000000600082015250565b60006147cc600183613fb5565b91506147d782614796565b602082019050919050565b600060208201905081810360008301526147fb816147bf565b9050919050565b600061480d82613e42565b915061481883613e42565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561484d5761484c613e7b565b5b828201905092915050565b7f6d00000000000000000000000000000000000000000000000000000000000000600082015250565b600061488e600183613fb5565b915061489982614858565b602082019050919050565b600060208201905081810360008301526148bd81614881565b9050919050565b7f6c00000000000000000000000000000000000000000000000000000000000000600082015250565b60006148fa600183613fb5565b9150614905826148c4565b602082019050919050565b60006020820190508181036000830152614929816148ed565b9050919050565b600061493b82613e42565b915061494683613e42565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561497f5761497e613e7b565b5b828202905092915050565b7f6100000000000000000000000000000000000000000000000000000000000000600082015250565b60006149c0600183613fb5565b91506149cb8261498a565b602082019050919050565b600060208201905081810360008301526149ef816149b3565b9050919050565b6000606082019050614a0b60008301866140f0565b614a1860208301856140f0565b614a256040830184614304565b949350505050565b600081519050614a3c81614506565b92915050565b600060208284031215614a5857614a57613ee5565b5b6000614a6684828501614a2d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614ab657607f821691505b60208210811415614aca57614ac9614a6f565b5b50919050565b7f6f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614b06600183613fb5565b9150614b1182614ad0565b602082019050919050565b60006020820190508181036000830152614b3581614af9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b72602083613fb5565b9150614b7d82614b3c565b602082019050919050565b60006020820190508181036000830152614ba181614b65565b9050919050565b7f6200000000000000000000000000000000000000000000000000000000000000600082015250565b6000614bde600183613fb5565b9150614be982614ba8565b602082019050919050565b60006020820190508181036000830152614c0d81614bd1565b9050919050565b6000614c1f82613e42565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c5257614c51613e7b565b5b600182019050919050565b7f7500000000000000000000000000000000000000000000000000000000000000600082015250565b6000614c93600183613fb5565b9150614c9e82614c5d565b602082019050919050565b60006020820190508181036000830152614cc281614c86565b9050919050565b600081519050614cd881614065565b92915050565b600060208284031215614cf457614cf3613ee5565b5b6000614d0284828501614cc9565b91505092915050565b6000604082019050614d2060008301856140f0565b614d2d6020830184614304565b9392505050565b7f6700000000000000000000000000000000000000000000000000000000000000600082015250565b6000614d6a600183613fb5565b9150614d7582614d34565b602082019050919050565b60006020820190508181036000830152614d9981614d5d565b9050919050565b60008160601b9050919050565b6000614db882614da0565b9050919050565b6000614dca82614dad565b9050919050565b614de2614ddd826140de565b614dbf565b82525050565b6000614df48285614dd1565b601482019150614e048284614dd1565b6014820191508190509392505050565b7f3000000000000000000000000000000000000000000000000000000000000000600082015250565b6000614e4a600183613fb5565b9150614e5582614e14565b602082019050919050565b60006020820190508181036000830152614e7981614e3d565b9050919050565b7f6900000000000000000000000000000000000000000000000000000000000000600082015250565b6000614eb6600183613fb5565b9150614ec182614e80565b602082019050919050565b60006020820190508181036000830152614ee581614ea9565b9050919050565b7f6600000000000000000000000000000000000000000000000000000000000000600082015250565b6000614f22600183613fb5565b9150614f2d82614eec565b602082019050919050565b60006020820190508181036000830152614f5181614f15565b9050919050565b7f7a00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614f8e600183613fb5565b9150614f9982614f58565b602082019050919050565b60006020820190508181036000830152614fbd81614f81565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614ff181614a9e565b614ffb8186614fc4565b9450600182166000811461501657600181146150275761505a565b60ff1983168652818601935061505a565b61503085614fcf565b60005b8381101561505257815481890152600182019150602081019050615033565b838801955050505b50505092915050565b600061506e82613faa565b6150788185614fc4565b9350615088818560208601613fc6565b80840191505092915050565b60006150a08285614fe4565b91506150ac8284615063565b91508190509392505050565b6000815190506150c781614572565b92915050565b6000602082840312156150e3576150e2613ee5565b5b60006150f1848285016150b8565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615156602683613fb5565b9150615161826150fa565b604082019050919050565b6000602082019050818103600083015261518581615149565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006151b38261518c565b91506151be8361518c565b9250828210156151d1576151d0613e7b565b5b828203905092915050565b60006151e78261518c565b91506151f28361518c565b9250826fffffffffffffffffffffffffffffffff0382111561521757615216613e7b565b5b828201905092915050565b7f7400000000000000000000000000000000000000000000000000000000000000600082015250565b6000615258600183613fb5565b915061526382615222565b602082019050919050565b600060208201905081810360008301526152878161524b565b9050919050565b600061529982613e42565b91506152a483613e42565b9250828210156152b7576152b6613e7b565b5b828203905092915050565b60006152cd82613e42565b915060008214156152e1576152e0613e7b565b5b600182039050919050565b600081519050919050565b600082825260208201905092915050565b6000615313826152ec565b61531d81856152f7565b935061532d818560208601613fc6565b61533681613ff9565b840191505092915050565b600060808201905061535660008301876140f0565b61536360208301866140f0565b6153706040830185614304565b81810360608301526153828184615308565b905095945050505050565b60008151905061539c81613f1b565b92915050565b6000602082840312156153b8576153b7613ee5565b5b60006153c68482850161538d565b91505092915050565b60006153da82613e42565b91506153e583613e42565b9250826153f5576153f4613e4c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000615465601c83614fc4565b91506154708261542f565b601c82019050919050565b6000819050919050565b615496615491826143ee565b61547b565b82525050565b60006154a782615458565b91506154b38284615485565b60208201915081905092915050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006154f8601883613fb5565b9150615503826154c2565b602082019050919050565b60006020820190508181036000830152615527816154eb565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000615564601f83613fb5565b915061556f8261552e565b602082019050919050565b6000602082019050818103600083015261559381615557565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006155f6602283613fb5565b91506156018261559a565b604082019050919050565b60006020820190508181036000830152615625816155e9565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615688602283613fb5565b91506156938261562c565b604082019050919050565b600060208201905081810360008301526156b78161567b565b9050919050565b600060ff82169050919050565b6156d4816156be565b82525050565b60006080820190506156ef60008301876143f8565b6156fc60208301866156cb565b61570960408301856143f8565b61571660608301846143f8565b9594505050505056fea2646970667358221220c3e03016c1829623283250f3e88843b23ae57daa9c40b0e8a6913da53070b44364736f6c634300080a003300000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000038d7ea4c6800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000e9a347e4bfbe5a219f3497b1ca3ac8568a99ed6c000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000000843656e736f72656400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035046500000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023f5760003560e01c806368855b641161012e578063a22cb465116100ab578063dfb5259c1161006f578063dfb5259c14610873578063e5a6b10f1461089c578063e985e9c5146108c7578063efd0cbf914610904578063f2fde38b146109205761025c565b8063a22cb4651461079d578063a9cbd06d146107c6578063b88d4fde146107e2578063c87b56dd1461080b578063d7224ba0146108485761025c565b80637cac2602116100f25780637cac2602146106ca5780638ad433ac146106f35780638da5cb5b1461071c57806395d89b41146107475780639da3f8fd146107725761025c565b806368855b64146105e35780636c0360eb1461060e5780636c82054b1461063957806370a0823114610676578063715018a6146106b35761025c565b80633ccfd60b116101bc57806355f804b31161018057806355f804b3146104fc5780635c975abb146105255780636352211e146105505780636373a6b11461058d5780636817c76c146105b85761025c565b80633ccfd60b1461042b57806342842e0e1461044257806344fead9e1461046b57806349df728c146104965780634f6ccce7146104bf5761025c565b806318160ddd1161020357806318160ddd1461035857806323b872dd146103835780632f745c59146103ac578063333171bb146103e9578063386b7691146104005761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b314610306578063109695231461032f5761025c565b3661025c5761025a600c54346102559190613eaa565b610949565b005b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613f47565b610d14565b6040516102959190613f8f565b60405180910390f35b3480156102aa57600080fd5b506102b3610e5e565b6040516102c09190614043565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190614091565b610ef0565b6040516102fd91906140ff565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190614146565b610f75565b005b34801561033b57600080fd5b50610356600480360381019061035191906142bb565b61108e565b005b34801561036457600080fd5b5061036d611159565b60405161037a9190614313565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a5919061432e565b611162565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190614146565b611172565b6040516103e09190614313565b60405180910390f35b3480156103f557600080fd5b506103fe611370565b005b34801561040c57600080fd5b50610415611418565b6040516104229190614313565b60405180910390f35b34801561043757600080fd5b5061044061141e565b005b34801561044e57600080fd5b506104696004803603810190610464919061432e565b6114e3565b005b34801561047757600080fd5b50610480611503565b60405161048d9190614313565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190614381565b611509565b005b3480156104cb57600080fd5b506104e660048036038101906104e19190614091565b611680565b6040516104f39190614313565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e91906142bb565b6116d3565b005b34801561053157600080fd5b5061053a61175b565b6040516105479190613f8f565b60405180910390f35b34801561055c57600080fd5b5061057760048036038101906105729190614091565b61176e565b60405161058491906140ff565b60405180910390f35b34801561059957600080fd5b506105a2611784565b6040516105af9190614043565b60405180910390f35b3480156105c457600080fd5b506105cd611812565b6040516105da9190614313565b60405180910390f35b3480156105ef57600080fd5b506105f8611818565b6040516106059190614313565b60405180910390f35b34801561061a57600080fd5b5061062361181e565b6040516106309190614043565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b91906143ae565b6118b0565b60405161066d9190614407565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190614381565b6118e3565b6040516106aa9190614313565b60405180910390f35b3480156106bf57600080fd5b506106c86119cc565b005b3480156106d657600080fd5b506106f160048036038101906106ec9190614447565b611a54565b005b3480156106ff57600080fd5b5061071a60048036038101906107159190614091565b611b2f565b005b34801561072857600080fd5b50610731611c85565b60405161073e91906140ff565b60405180910390f35b34801561075357600080fd5b5061075c611caf565b6040516107699190614043565b60405180910390f35b34801561077e57600080fd5b50610787611d41565b60405161079491906144eb565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190614532565b611d54565b005b6107e060048036038101906107db91906145fe565b611ed5565b005b3480156107ee57600080fd5b5061080960048036038101906108049190614713565b61233e565b005b34801561081757600080fd5b50610832600480360381019061082d9190614091565b61239a565b60405161083f9190614043565b60405180910390f35b34801561085457600080fd5b5061085d612442565b60405161086a9190614313565b60405180910390f35b34801561087f57600080fd5b5061089a600480360381019061089591906142bb565b612448565b005b3480156108a857600080fd5b506108b1612564565b6040516108be91906140ff565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e991906143ae565b612588565b6040516108fb9190613f8f565b60405180910390f35b61091e60048036038101906109199190614091565b610949565b005b34801561092c57600080fd5b5061094760048036038101906109429190614381565b61261c565b005b6002600381111561095d5761095c614474565b5b601060159054906101000a900460ff16600381111561097f5761097e614474565b5b1480156109995750601060149054906101000a900460ff16155b6109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf906147e2565b60405180910390fd5b600d54816109e4611159565b6109ee9190614802565b1115610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a26906148a4565b60405180910390fd5b600f5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a7d9190614802565b1115610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab590614910565b60405180910390fd5b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff161415610b87573481600c54610b419190614930565b1115610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b79906149d6565b60405180910390fd5b610c3c565b60007f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc290508073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600c5486610bd89190614930565b6040518463ffffffff1660e01b8152600401610bf6939291906149f6565b6020604051808303816000875af1158015610c15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c399190614a42565b50505b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c879190614802565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610cd43382612714565b600d54610cdf611159565b1415610d11576003601060156101000a81548160ff02191690836003811115610d0b57610d0a614474565b5b02179055505b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ddf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e4757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e575750610e5682612732565b5b9050919050565b606060018054610e6d90614a9e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9990614a9e565b8015610ee65780601f10610ebb57610100808354040283529160200191610ee6565b820191906000526020600020905b815481529060010190602001808311610ec957829003601f168201915b5050505050905090565b6000610efb8261279c565b610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f31906149d6565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f808261176e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890614b1c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166110106127a9565b73ffffffffffffffffffffffffffffffffffffffff16148061103f575061103e816110396127a9565b612588565b5b61107e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611075906149d6565b60405180910390fd5b6110898383836127b1565b505050565b6110966127a9565b73ffffffffffffffffffffffffffffffffffffffff166110b4611c85565b73ffffffffffffffffffffffffffffffffffffffff161461110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190614b88565b60405180910390fd5b600b60009054906101000a900460ff161561112457600080fd5b80600a908051906020019061113a929190613d65565b506001600b60006101000a81548160ff02191690831515021790555050565b60008054905090565b61116d838383612863565b505050565b600061117d836118e3565b82106111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b590614bf4565b60405180910390fd5b60006111c8611159565b905060008060005b8381101561132e576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146112c257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561131a578684141561130b57819550505050505061136a565b838061131690614c14565b9450505b50808061132690614c14565b9150506111d0565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190614ca9565b60405180910390fd5b92915050565b6113786127a9565b73ffffffffffffffffffffffffffffffffffffffff16611396611c85565b73ffffffffffffffffffffffffffffffffffffffff16146113ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e390614b88565b60405180910390fd5b601060149054906101000a900460ff1615601060146101000a81548160ff021916908315150217905550565b600d5481565b6114266127a9565b73ffffffffffffffffffffffffffffffffffffffff16611444611c85565b73ffffffffffffffffffffffffffffffffffffffff161461149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190614b88565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156114e0573d6000803e3d6000fd5b50565b6114fe8383836040518060200160405280600081525061233e565b505050565b600f5481565b6115116127a9565b73ffffffffffffffffffffffffffffffffffffffff1661152f611c85565b73ffffffffffffffffffffffffffffffffffffffff1614611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c90614b88565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016115db91906140ff565b602060405180830381865afa1580156115f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161c9190614cde565b6040518363ffffffff1660e01b8152600401611639929190614d0b565b6020604051808303816000875af1158015611658573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061167c9190614a42565b5050565b600061168a611159565b82106116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c290614d80565b60405180910390fd5b819050919050565b6116db6127a9565b73ffffffffffffffffffffffffffffffffffffffff166116f9611c85565b73ffffffffffffffffffffffffffffffffffffffff161461174f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174690614b88565b60405180910390fd5b61175881612e1c565b50565b601060149054906101000a900460ff1681565b600061177982612e36565b600001519050919050565b600a805461179190614a9e565b80601f01602080910402602001604051908101604052809291908181526020018280546117bd90614a9e565b801561180a5780601f106117df5761010080835404028352916020019161180a565b820191906000526020600020905b8154815290600101906020018083116117ed57829003601f168201915b505050505081565b600c5481565b600e5481565b60606003805461182d90614a9e565b80601f016020809104026020016040519081016040528092919081815260200182805461185990614a9e565b80156118a65780601f1061187b576101008083540402835291602001916118a6565b820191906000526020600020905b81548152906001019060200180831161188957829003601f168201915b5050505050905090565b600082826040516020016118c5929190614de8565b60405160208183030381529060405280519060200120905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b90614e60565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6119d46127a9565b73ffffffffffffffffffffffffffffffffffffffff166119f2611c85565b73ffffffffffffffffffffffffffffffffffffffff1614611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f90614b88565b60405180910390fd5b611a526000613039565b565b611a5c6127a9565b73ffffffffffffffffffffffffffffffffffffffff16611a7a611c85565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790614b88565b60405180910390fd5b60006003811115611ae457611ae3614474565b5b816003811115611af757611af6614474565b5b1415611b0257600080fd5b80601060156101000a81548160ff02191690836003811115611b2757611b26614474565b5b021790555050565b611b376127a9565b73ffffffffffffffffffffffffffffffffffffffff16611b55611c85565b73ffffffffffffffffffffffffffffffffffffffff1614611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290614b88565b60405180910390fd5b60006003811115611bbf57611bbe614474565b5b601060159054906101000a900460ff166003811115611be157611be0614474565b5b14611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c18906147e2565b60405180910390fd5b600d5481611c2d611159565b611c379190614802565b1115611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f906148a4565b60405180910390fd5b611c823382612714565b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611cbe90614a9e565b80601f0160208091040260200160405190810160405280929190818152602001828054611cea90614a9e565b8015611d375780601f10611d0c57610100808354040283529160200191611d37565b820191906000526020600020905b815481529060010190602001808311611d1a57829003601f168201915b5050505050905090565b601060159054906101000a900460ff1681565b611d5c6127a9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc1906149d6565b60405180910390fd5b8060076000611dd76127a9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e846127a9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ec99190613f8f565b60405180910390a35050565b60016003811115611ee957611ee8614474565b5b601060159054906101000a900460ff166003811115611f0b57611f0a614474565b5b148015611f255750601060149054906101000a900460ff16155b611f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5b906147e2565b60405180910390fd5b600d5481611f70611159565b611f7a9190614802565b1115611fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb2906148a4565b60405180910390fd5b83611fc633306118b0565b14612006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffd90614ecc565b60405180910390fd5b6120548484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506130ff565b612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90614f38565b60405180910390fd5b600f5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120e19190614802565b1115612122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211990614910565b60405180910390fd5b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1614156121eb573481600e546121a59190614930565b11156121e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dd906149d6565b60405180910390fd5b6122a0565b60007f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc290508073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600e548661223c9190614930565b6040518463ffffffff1660e01b815260040161225a939291906149f6565b6020604051808303816000875af1158015612279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229d9190614a42565b50505b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122eb9190614802565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506123383382612714565b50505050565b612349848484612863565b61235584848484613174565b612394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238b90614fa4565b60405180910390fd5b50505050565b60606123a58261279c565b6123e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123db90614fa4565b60405180910390fd5b6000600380546123f390614a9e565b90501161240f576040518060200160405280600081525061243b565b600361241a836132fc565b60405160200161242b929190615094565b6040516020818303038152906040525b9050919050565b60085481565b6124506127a9565b73ffffffffffffffffffffffffffffffffffffffff1661246e611c85565b73ffffffffffffffffffffffffffffffffffffffff16146124c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bb90614b88565b60405180910390fd5b7f000000000000000000000000084b1c3c81545d370f3634392de611caabff814873ffffffffffffffffffffffffffffffffffffffff1663c47f0027826040518263ffffffff1660e01b815260040161251d9190614043565b6020604051808303816000875af115801561253c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061256091906150cd565b5050565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6126246127a9565b73ffffffffffffffffffffffffffffffffffffffff16612642611c85565b73ffffffffffffffffffffffffffffffffffffffff1614612698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268f90614b88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ff9061516c565b60405180910390fd5b61271181613039565b50565b61272e82826040518060200160405280600081525061345d565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061286e82612e36565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166128956127a9565b73ffffffffffffffffffffffffffffffffffffffff1614806128f157506128ba6127a9565b73ffffffffffffffffffffffffffffffffffffffff166128d984610ef0565b73ffffffffffffffffffffffffffffffffffffffff16145b8061290d575061290c82600001516129076127a9565b612588565b5b90508061294f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612946906149d6565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146129c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b890614b1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2890614e60565b60405180910390fd5b612a3e858585600161393c565b612a4e60008484600001516127b1565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612abc91906151a8565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612b6091906151dc565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612c669190614802565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612dac57612cdc8161279c565b15612dab576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e148686866001613942565b505050505050565b8060039080519060200190612e32929190613d65565b5050565b612e3e613deb565b612e478261279c565b612e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7d9061526e565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000648310612eea5760017f000000000000000000000000000000000000000000000000000000000000006484612edd919061528e565b612ee79190614802565b90505b60008390505b818110612ff8576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fe457809350505050613034565b508080612ff0906152c2565b915050612ef0565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302b90614b1c565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061311c8261310e85613948565b61397890919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b60006131958473ffffffffffffffffffffffffffffffffffffffff1661399f565b156132ef578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131be6127a9565b8786866040518563ffffffff1660e01b81526004016131e09493929190615341565b6020604051808303816000875af192505050801561321c57506040513d601f19601f8201168201806040525081019061321991906153a2565b60015b61329f573d806000811461324c576040519150601f19603f3d011682016040523d82523d6000602084013e613251565b606091505b50600081511415613297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328e90614fa4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132f4565b600190505b949350505050565b60606000821415613344576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613458565b600082905060005b6000821461337657808061335f90614c14565b915050600a8261336f9190613eaa565b915061334c565b60008167ffffffffffffffff81111561339257613391614190565b5b6040519080825280601f01601f1916602001820160405280156133c45781602001600182028036833780820191505090505b5090505b60008514613451576001826133dd919061528e565b9150600a856133ec91906153cf565b60306133f89190614802565b60f81b81838151811061340e5761340d615400565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561344a9190613eaa565b94506133c8565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156134d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ca90614e60565b60405180910390fd5b6134dc8161279c565b1561351c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613513906149d6565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000006483111561357f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613576906148a4565b60405180910390fd5b61358c600085838661393c565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161368991906151dc565b6fffffffffffffffffffffffffffffffff1681526020018583602001516136b091906151dc565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561391f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138bf6000888488613174565b6138fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138f590614fa4565b60405180910390fd5b818061390990614c14565b925050808061391790614c14565b91505061384e565b50806000819055506139346000878588613942565b505050505050565b50505050565b50505050565b60008160405160200161395b919061549c565b604051602081830303815290604052805190602001209050919050565b600080600061398785856139b2565b9150915061399481613a35565b819250505092915050565b600080823b905060008111915050919050565b6000806041835114156139f45760008060006020860151925060408601519150606086015160001a90506139e887828585613c0a565b94509450505050613a2e565b604083511415613a25576000806020850151915060408501519050613a1a868383613d17565b935093505050613a2e565b60006002915091505b9250929050565b60006004811115613a4957613a48614474565b5b816004811115613a5c57613a5b614474565b5b1415613a6757613c07565b60016004811115613a7b57613a7a614474565b5b816004811115613a8e57613a8d614474565b5b1415613acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ac69061550e565b60405180910390fd5b60026004811115613ae357613ae2614474565b5b816004811115613af657613af5614474565b5b1415613b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b2e9061557a565b60405180910390fd5b60036004811115613b4b57613b4a614474565b5b816004811115613b5e57613b5d614474565b5b1415613b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b969061560c565b60405180910390fd5b600480811115613bb257613bb1614474565b5b816004811115613bc557613bc4614474565b5b1415613c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bfd9061569e565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613c45576000600391509150613d0e565b601b8560ff1614158015613c5d5750601c8560ff1614155b15613c6f576000600491509150613d0e565b600060018787878760405160008152602001604052604051613c9494939291906156da565b6020604051602081039080840390855afa158015613cb6573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613d0557600060019250925050613d0e565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613d5787828885613c0a565b935093505050935093915050565b828054613d7190614a9e565b90600052602060002090601f016020900481019282613d935760008555613dda565b82601f10613dac57805160ff1916838001178555613dda565b82800160010185558215613dda579182015b82811115613dd9578251825591602001919060010190613dbe565b5b509050613de79190613e25565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613e3e576000816000905550600101613e26565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613eb582613e42565b9150613ec083613e42565b925082613ed057613ecf613e4c565b5b828204905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613f2481613eef565b8114613f2f57600080fd5b50565b600081359050613f4181613f1b565b92915050565b600060208284031215613f5d57613f5c613ee5565b5b6000613f6b84828501613f32565b91505092915050565b60008115159050919050565b613f8981613f74565b82525050565b6000602082019050613fa46000830184613f80565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613fe4578082015181840152602081019050613fc9565b83811115613ff3576000848401525b50505050565b6000601f19601f8301169050919050565b600061401582613faa565b61401f8185613fb5565b935061402f818560208601613fc6565b61403881613ff9565b840191505092915050565b6000602082019050818103600083015261405d818461400a565b905092915050565b61406e81613e42565b811461407957600080fd5b50565b60008135905061408b81614065565b92915050565b6000602082840312156140a7576140a6613ee5565b5b60006140b58482850161407c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006140e9826140be565b9050919050565b6140f9816140de565b82525050565b600060208201905061411460008301846140f0565b92915050565b614123816140de565b811461412e57600080fd5b50565b6000813590506141408161411a565b92915050565b6000806040838503121561415d5761415c613ee5565b5b600061416b85828601614131565b925050602061417c8582860161407c565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6141c882613ff9565b810181811067ffffffffffffffff821117156141e7576141e6614190565b5b80604052505050565b60006141fa613edb565b905061420682826141bf565b919050565b600067ffffffffffffffff82111561422657614225614190565b5b61422f82613ff9565b9050602081019050919050565b82818337600083830152505050565b600061425e6142598461420b565b6141f0565b90508281526020810184848401111561427a5761427961418b565b5b61428584828561423c565b509392505050565b600082601f8301126142a2576142a1614186565b5b81356142b284826020860161424b565b91505092915050565b6000602082840312156142d1576142d0613ee5565b5b600082013567ffffffffffffffff8111156142ef576142ee613eea565b5b6142fb8482850161428d565b91505092915050565b61430d81613e42565b82525050565b60006020820190506143286000830184614304565b92915050565b60008060006060848603121561434757614346613ee5565b5b600061435586828701614131565b935050602061436686828701614131565b92505060406143778682870161407c565b9150509250925092565b60006020828403121561439757614396613ee5565b5b60006143a584828501614131565b91505092915050565b600080604083850312156143c5576143c4613ee5565b5b60006143d385828601614131565b92505060206143e485828601614131565b9150509250929050565b6000819050919050565b614401816143ee565b82525050565b600060208201905061441c60008301846143f8565b92915050565b6004811061442f57600080fd5b50565b60008135905061444181614422565b92915050565b60006020828403121561445d5761445c613ee5565b5b600061446b84828501614432565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600481106144b4576144b3614474565b5b50565b60008190506144c5826144a3565b919050565b60006144d5826144b7565b9050919050565b6144e5816144ca565b82525050565b600060208201905061450060008301846144dc565b92915050565b61450f81613f74565b811461451a57600080fd5b50565b60008135905061452c81614506565b92915050565b6000806040838503121561454957614548613ee5565b5b600061455785828601614131565b92505060206145688582860161451d565b9150509250929050565b61457b816143ee565b811461458657600080fd5b50565b60008135905061459881614572565b92915050565b600080fd5b600080fd5b60008083601f8401126145be576145bd614186565b5b8235905067ffffffffffffffff8111156145db576145da61459e565b5b6020830191508360018202830111156145f7576145f66145a3565b5b9250929050565b6000806000806060858703121561461857614617613ee5565b5b600061462687828801614589565b945050602085013567ffffffffffffffff81111561464757614646613eea565b5b614653878288016145a8565b935093505060406146668782880161407c565b91505092959194509250565b600067ffffffffffffffff82111561468d5761468c614190565b5b61469682613ff9565b9050602081019050919050565b60006146b66146b184614672565b6141f0565b9050828152602081018484840111156146d2576146d161418b565b5b6146dd84828561423c565b509392505050565b600082601f8301126146fa576146f9614186565b5b813561470a8482602086016146a3565b91505092915050565b6000806000806080858703121561472d5761472c613ee5565b5b600061473b87828801614131565b945050602061474c87828801614131565b935050604061475d8782880161407c565b925050606085013567ffffffffffffffff81111561477e5761477d613eea565b5b61478a878288016146e5565b91505092959194509250565b7f7300000000000000000000000000000000000000000000000000000000000000600082015250565b60006147cc600183613fb5565b91506147d782614796565b602082019050919050565b600060208201905081810360008301526147fb816147bf565b9050919050565b600061480d82613e42565b915061481883613e42565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561484d5761484c613e7b565b5b828201905092915050565b7f6d00000000000000000000000000000000000000000000000000000000000000600082015250565b600061488e600183613fb5565b915061489982614858565b602082019050919050565b600060208201905081810360008301526148bd81614881565b9050919050565b7f6c00000000000000000000000000000000000000000000000000000000000000600082015250565b60006148fa600183613fb5565b9150614905826148c4565b602082019050919050565b60006020820190508181036000830152614929816148ed565b9050919050565b600061493b82613e42565b915061494683613e42565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561497f5761497e613e7b565b5b828202905092915050565b7f6100000000000000000000000000000000000000000000000000000000000000600082015250565b60006149c0600183613fb5565b91506149cb8261498a565b602082019050919050565b600060208201905081810360008301526149ef816149b3565b9050919050565b6000606082019050614a0b60008301866140f0565b614a1860208301856140f0565b614a256040830184614304565b949350505050565b600081519050614a3c81614506565b92915050565b600060208284031215614a5857614a57613ee5565b5b6000614a6684828501614a2d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614ab657607f821691505b60208210811415614aca57614ac9614a6f565b5b50919050565b7f6f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614b06600183613fb5565b9150614b1182614ad0565b602082019050919050565b60006020820190508181036000830152614b3581614af9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b72602083613fb5565b9150614b7d82614b3c565b602082019050919050565b60006020820190508181036000830152614ba181614b65565b9050919050565b7f6200000000000000000000000000000000000000000000000000000000000000600082015250565b6000614bde600183613fb5565b9150614be982614ba8565b602082019050919050565b60006020820190508181036000830152614c0d81614bd1565b9050919050565b6000614c1f82613e42565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c5257614c51613e7b565b5b600182019050919050565b7f7500000000000000000000000000000000000000000000000000000000000000600082015250565b6000614c93600183613fb5565b9150614c9e82614c5d565b602082019050919050565b60006020820190508181036000830152614cc281614c86565b9050919050565b600081519050614cd881614065565b92915050565b600060208284031215614cf457614cf3613ee5565b5b6000614d0284828501614cc9565b91505092915050565b6000604082019050614d2060008301856140f0565b614d2d6020830184614304565b9392505050565b7f6700000000000000000000000000000000000000000000000000000000000000600082015250565b6000614d6a600183613fb5565b9150614d7582614d34565b602082019050919050565b60006020820190508181036000830152614d9981614d5d565b9050919050565b60008160601b9050919050565b6000614db882614da0565b9050919050565b6000614dca82614dad565b9050919050565b614de2614ddd826140de565b614dbf565b82525050565b6000614df48285614dd1565b601482019150614e048284614dd1565b6014820191508190509392505050565b7f3000000000000000000000000000000000000000000000000000000000000000600082015250565b6000614e4a600183613fb5565b9150614e5582614e14565b602082019050919050565b60006020820190508181036000830152614e7981614e3d565b9050919050565b7f6900000000000000000000000000000000000000000000000000000000000000600082015250565b6000614eb6600183613fb5565b9150614ec182614e80565b602082019050919050565b60006020820190508181036000830152614ee581614ea9565b9050919050565b7f6600000000000000000000000000000000000000000000000000000000000000600082015250565b6000614f22600183613fb5565b9150614f2d82614eec565b602082019050919050565b60006020820190508181036000830152614f5181614f15565b9050919050565b7f7a00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614f8e600183613fb5565b9150614f9982614f58565b602082019050919050565b60006020820190508181036000830152614fbd81614f81565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614ff181614a9e565b614ffb8186614fc4565b9450600182166000811461501657600181146150275761505a565b60ff1983168652818601935061505a565b61503085614fcf565b60005b8381101561505257815481890152600182019150602081019050615033565b838801955050505b50505092915050565b600061506e82613faa565b6150788185614fc4565b9350615088818560208601613fc6565b80840191505092915050565b60006150a08285614fe4565b91506150ac8284615063565b91508190509392505050565b6000815190506150c781614572565b92915050565b6000602082840312156150e3576150e2613ee5565b5b60006150f1848285016150b8565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615156602683613fb5565b9150615161826150fa565b604082019050919050565b6000602082019050818103600083015261518581615149565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006151b38261518c565b91506151be8361518c565b9250828210156151d1576151d0613e7b565b5b828203905092915050565b60006151e78261518c565b91506151f28361518c565b9250826fffffffffffffffffffffffffffffffff0382111561521757615216613e7b565b5b828201905092915050565b7f7400000000000000000000000000000000000000000000000000000000000000600082015250565b6000615258600183613fb5565b915061526382615222565b602082019050919050565b600060208201905081810360008301526152878161524b565b9050919050565b600061529982613e42565b91506152a483613e42565b9250828210156152b7576152b6613e7b565b5b828203905092915050565b60006152cd82613e42565b915060008214156152e1576152e0613e7b565b5b600182039050919050565b600081519050919050565b600082825260208201905092915050565b6000615313826152ec565b61531d81856152f7565b935061532d818560208601613fc6565b61533681613ff9565b840191505092915050565b600060808201905061535660008301876140f0565b61536360208301866140f0565b6153706040830185614304565b81810360608301526153828184615308565b905095945050505050565b60008151905061539c81613f1b565b92915050565b6000602082840312156153b8576153b7613ee5565b5b60006153c68482850161538d565b91505092915050565b60006153da82613e42565b91506153e583613e42565b9250826153f5576153f4613e4c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000615465601c83614fc4565b91506154708261542f565b601c82019050919050565b6000819050919050565b615496615491826143ee565b61547b565b82525050565b60006154a782615458565b91506154b38284615485565b60208201915081905092915050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006154f8601883613fb5565b9150615503826154c2565b602082019050919050565b60006020820190508181036000830152615527816154eb565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000615564601f83613fb5565b915061556f8261552e565b602082019050919050565b6000602082019050818103600083015261559381615557565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006155f6602283613fb5565b91506156018261559a565b604082019050919050565b60006020820190508181036000830152615625816155e9565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615688602283613fb5565b91506156938261562c565b604082019050919050565b600060208201905081810360008301526156b78161567b565b9050919050565b600060ff82169050919050565b6156d4816156be565b82525050565b60006080820190506156ef60008301876143f8565b6156fc60208301866156cb565b61570960408301856143f8565b61571660608301846143f8565b9594505050505056fea2646970667358221220c3e03016c1829623283250f3e88843b23ae57daa9c40b0e8a6913da53070b44364736f6c634300080a0033

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

00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000038d7ea4c6800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000e9a347e4bfbe5a219f3497b1ca3ac8568a99ed6c000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000000843656e736f72656400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035046500000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Censored
Arg [1] : _symbol (string): PFP
Arg [2] : _maxPossibleSupply (uint256): 115792089237316195423570985008687907853269984665640564039457584007913129639935
Arg [3] : _mintPrice (uint256): 1000000000000000
Arg [4] : _allowListMintPrice (uint256): 0
Arg [5] : _maxAllowedMints (uint256): 100
Arg [6] : _signerAddress (address): 0xe9A347e4bFbe5A219F3497B1CA3Ac8568a99ED6c
Arg [7] : _currency (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [8] : _wrappedNativeCoinAddress (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
Arg [3] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [6] : 000000000000000000000000e9a347e4bfbe5a219f3497b1ca3ac8568a99ed6c
Arg [7] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [8] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [10] : 43656e736f726564000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [12] : 5046500000000000000000000000000000000000000000000000000000000000


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.