ETH Price: $2,288.25 (+0.50%)
Gas: 1.17 Gwei

Token

ConsensusComics (CC)
 

Overview

Max Total Supply

1,000 CC

Holders

191

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*临沂男同俱乐部负责人.eth
Balance
5 CC
0xd730cc3b53d543248fd3522c27bf3dc48b6b8d87
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:
ConsensusComics

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : ConsensusComics.sol
pragma solidity >=0.7.0 <0.9.0;

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

contract ConsensusComics is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "ipfs://bafybeicz4venmkfg7iudmf2eabvklfpojan6byjtx4djkeeqk3htknnyky/";
  string public uriSuffix = ".json";


  uint256 public maxSupply = 1000;
  uint256 public maxMintAmountPerTx = 5;

  bool public paused = false;


  constructor() ERC721("ConsensusComics", "CC") {
    mint(5);
  }

  //modifier

  modifier compliantMint(uint256 _mintAmount){
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid Mint Amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply reached");
    _;
  }

  function totalSupply() public view returns (uint256){ // YOU HAVE TO CHANGE THIS FROM TOTALY TO TOTAL!!!! ON THE FRONT END TOO!
    return supply.current();
  }

  // public
  function mint(uint256 _mintAmount) public payable compliantMint(_mintAmount){
    require(!paused, "The contract is currently paused");
    
    _mintLoop(msg.sender, _mintAmount);
  }


  function mintForAddress(uint256 _mintAmount, address _receiver) public compliantMint(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }


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

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), uriSuffix))
        : "";
  }

  //only owner


  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

   function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }



  function setPause(bool _state) public onlyOwner {
    paused = _state;
  }

  //minting
 
function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

  function withdraw() public payable onlyOwner {
   
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
   
  }
}

File 2 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 3 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 6 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 7 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 8 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 9 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260405180608001604052806043815260200162004574604391396008908051906020019062000035929190620008f3565b506040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506009908051906020019062000083929190620008f3565b506103e8600a556005600b556000600c60006101000a81548160ff021916908315150217905550348015620000b757600080fd5b506040518060400160405280600f81526020017f436f6e73656e737573436f6d69637300000000000000000000000000000000008152506040518060400160405280600281526020017f434300000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200013c929190620008f3565b50806001908051906020019062000155929190620008f3565b505050620001786200016c6200019060201b60201c565b6200019860201b60201c565b6200018a60056200025e60201b60201c565b62000fb1565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600081118015620002725750600b548111155b620002b4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ab9062000bf3565b60405180910390fd5b600a5481620002cf60076200038860201b620012981760201c565b620002db919062000c86565b11156200031f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003169062000c37565b60405180910390fd5b600c60009054906101000a900460ff161562000372576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003699062000b8d565b60405180910390fd5b6200038433836200039660201b60201c565b5050565b600081600001549050919050565b60005b81811015620003f757620003b96007620003fc60201b620012a61760201c565b620003e183620003d560076200038860201b620012981760201c565b6200041260201b60201c565b8080620003ee9062000db9565b91505062000399565b505050565b6001816000016000828254019250508190555050565b620004348282604051806020016040528060008152506200043860201b60201c565b5050565b6200044a8383620004a660201b60201c565b6200045f6000848484620006a060201b60201c565b620004a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004989062000baf565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000519576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005109062000c15565b60405180910390fd5b6200052a816200085a60201b60201c565b156200056d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005649062000bd1565b60405180910390fd5b6200058160008383620008c660201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005d3919062000c86565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200069c60008383620008cb60201b60201c565b5050565b6000620006ce8473ffffffffffffffffffffffffffffffffffffffff16620008d060201b620012bc1760201c565b156200084d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007006200019060201b60201c565b8786866040518563ffffffff1660e01b815260040162000724949392919062000b39565b602060405180830381600087803b1580156200073f57600080fd5b505af19250505080156200077357506040513d601f19601f82011682018060405250810190620007709190620009ba565b60015b620007fc573d8060008114620007a6576040519150601f19603f3d011682016040523d82523d6000602084013e620007ab565b606091505b50600081511415620007f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007eb9062000baf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000852565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054620009019062000d83565b90600052602060002090601f01602090048101928262000925576000855562000971565b82601f106200094057805160ff191683800117855562000971565b8280016001018555821562000971579182015b828111156200097057825182559160200191906001019062000953565b5b50905062000980919062000984565b5090565b5b808211156200099f57600081600090555060010162000985565b5090565b600081519050620009b48162000f97565b92915050565b600060208284031215620009d357620009d262000e65565b5b6000620009e384828501620009a3565b91505092915050565b620009f78162000ce3565b82525050565b600062000a0a8262000c59565b62000a16818562000c64565b935062000a2881856020860162000d4d565b62000a338162000e6a565b840191505092915050565b600062000a4d60208362000c75565b915062000a5a8262000e7b565b602082019050919050565b600062000a7460328362000c75565b915062000a818262000ea4565b604082019050919050565b600062000a9b601c8362000c75565b915062000aa88262000ef3565b602082019050919050565b600062000ac260148362000c75565b915062000acf8262000f1c565b602082019050919050565b600062000ae960208362000c75565b915062000af68262000f45565b602082019050919050565b600062000b1060128362000c75565b915062000b1d8262000f6e565b602082019050919050565b62000b338162000d43565b82525050565b600060808201905062000b506000830187620009ec565b62000b5f6020830186620009ec565b62000b6e604083018562000b28565b818103606083015262000b828184620009fd565b905095945050505050565b6000602082019050818103600083015262000ba88162000a3e565b9050919050565b6000602082019050818103600083015262000bca8162000a65565b9050919050565b6000602082019050818103600083015262000bec8162000a8c565b9050919050565b6000602082019050818103600083015262000c0e8162000ab3565b9050919050565b6000602082019050818103600083015262000c308162000ada565b9050919050565b6000602082019050818103600083015262000c528162000b01565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000c938262000d43565b915062000ca08362000d43565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000cd85762000cd762000e07565b5b828201905092915050565b600062000cf08262000d23565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000d6d57808201518184015260208101905062000d50565b8381111562000d7d576000848401525b50505050565b6000600282049050600182168062000d9c57607f821691505b6020821081141562000db35762000db262000e36565b5b50919050565b600062000dc68262000d43565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000dfc5762000dfb62000e07565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f54686520636f6e74726163742069732063757272656e746c7920706175736564600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964204d696e7420416d6f756e7421000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b62000fa28162000cf7565b811462000fae57600080fd5b50565b6135b38062000fc16000396000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063b071401b11610095578063d5abeb0111610064578063d5abeb01146105fe578063e985e9c514610629578063efbd73f414610666578063f2fde38b1461068f576101c2565b8063b071401b14610546578063b88d4fde1461056f578063bedb86fb14610598578063c87b56dd146105c1576101c2565b806394354fd0116100d157806394354fd0146104ab57806395d89b41146104d6578063a0712d6814610501578063a22cb4651461051d576101c2565b8063715018a6146104405780637ec4a659146104575780638da5cb5b14610480576101c2565b80633ccfd60b116101645780635c975abb1161013e5780635c975abb1461037057806362b99ad41461039b5780636352211e146103c657806370a0823114610403576101c2565b80633ccfd60b1461031257806342842e0e1461031c5780635503a0e814610345576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806316ba10e01461029557806318160ddd146102be57806323b872dd146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906124cd565b6106b8565b6040516101fb9190612a4f565b60405180910390f35b34801561021057600080fd5b5061021961079a565b6040516102269190612a6a565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612570565b61082c565b60405161026391906129e8565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612460565b610872565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190612527565b61098a565b005b3480156102ca57600080fd5b506102d36109ac565b6040516102e09190612cac565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b919061234a565b6109bd565b005b61031a610a1d565b005b34801561032857600080fd5b50610343600480360381019061033e919061234a565b610aa5565b005b34801561035157600080fd5b5061035a610ac5565b6040516103679190612a6a565b60405180910390f35b34801561037c57600080fd5b50610385610b53565b6040516103929190612a4f565b60405180910390f35b3480156103a757600080fd5b506103b0610b66565b6040516103bd9190612a6a565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e89190612570565b610bf4565b6040516103fa91906129e8565b60405180910390f35b34801561040f57600080fd5b5061042a600480360381019061042591906122dd565b610ca6565b6040516104379190612cac565b60405180910390f35b34801561044c57600080fd5b50610455610d5e565b005b34801561046357600080fd5b5061047e60048036038101906104799190612527565b610d72565b005b34801561048c57600080fd5b50610495610d94565b6040516104a291906129e8565b60405180910390f35b3480156104b757600080fd5b506104c0610dbe565b6040516104cd9190612cac565b60405180910390f35b3480156104e257600080fd5b506104eb610dc4565b6040516104f89190612a6a565b60405180910390f35b61051b60048036038101906105169190612570565b610e56565b005b34801561052957600080fd5b50610544600480360381019061053f9190612420565b610f5f565b005b34801561055257600080fd5b5061056d60048036038101906105689190612570565b610f75565b005b34801561057b57600080fd5b506105966004803603810190610591919061239d565b610f87565b005b3480156105a457600080fd5b506105bf60048036038101906105ba91906124a0565b610fe9565b005b3480156105cd57600080fd5b506105e860048036038101906105e39190612570565b61100e565b6040516105f59190612a6a565b60405180910390f35b34801561060a57600080fd5b506106136110b8565b6040516106209190612cac565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b919061230a565b6110be565b60405161065d9190612a4f565b60405180910390f35b34801561067257600080fd5b5061068d6004803603810190610688919061259d565b611152565b005b34801561069b57600080fd5b506106b660048036038101906106b191906122dd565b611214565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107935750610792826112df565b5b9050919050565b6060600080546107a990612f22565b80601f01602080910402602001604051908101604052809291908181526020018280546107d590612f22565b80156108225780601f106107f757610100808354040283529160200191610822565b820191906000526020600020905b81548152906001019060200180831161080557829003601f168201915b5050505050905090565b600061083782611349565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087d82610bf4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e590612c4c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661090d611394565b73ffffffffffffffffffffffffffffffffffffffff16148061093c575061093b81610936611394565b6110be565b5b61097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097290612bac565b60405180910390fd5b610985838361139c565b505050565b610992611455565b80600990805190602001906109a89291906120f1565b5050565b60006109b86007611298565b905090565b6109ce6109c8611394565b826114d3565b610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0490612c8c565b60405180910390fd5b610a18838383611568565b505050565b610a25611455565b6000610a2f610d94565b73ffffffffffffffffffffffffffffffffffffffff1647604051610a52906129d3565b60006040518083038185875af1925050503d8060008114610a8f576040519150601f19603f3d011682016040523d82523d6000602084013e610a94565b606091505b5050905080610aa257600080fd5b50565b610ac083838360405180602001604052806000815250610f87565b505050565b60098054610ad290612f22565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe90612f22565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b505050505081565b600c60009054906101000a900460ff1681565b60088054610b7390612f22565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9f90612f22565b8015610bec5780601f10610bc157610100808354040283529160200191610bec565b820191906000526020600020905b815481529060010190602001808311610bcf57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9490612c2c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90612b8c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d66611455565b610d7060006117cf565b565b610d7a611455565b8060089080519060200190610d909291906120f1565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b606060018054610dd390612f22565b80601f0160208091040260200160405190810160405280929190818152602001828054610dff90612f22565b8015610e4c5780601f10610e2157610100808354040283529160200191610e4c565b820191906000526020600020905b815481529060010190602001808311610e2f57829003601f168201915b5050505050905090565b80600081118015610e695750600b548111155b610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f90612b6c565b60405180910390fd5b600a5481610eb66007611298565b610ec09190612db1565b1115610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef890612c6c565b60405180910390fd5b600c60009054906101000a900460ff1615610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4890612a8c565b60405180910390fd5b610f5b3383611895565b5050565b610f71610f6a611394565b83836118d5565b5050565b610f7d611455565b80600b8190555050565b610f98610f92611394565b836114d3565b610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90612c8c565b60405180910390fd5b610fe384848484611a42565b50505050565b610ff1611455565b80600c60006101000a81548160ff02191690831515021790555050565b606061101982611a9e565b611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90612c0c565b60405180910390fd5b6000611062611b0a565b9050600081511161108257604051806020016040528060008152506110b0565b8061108c84611b9c565b60096040516020016110a0939291906129a2565b6040516020818303038152906040525b915050919050565b600a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156111655750600b548111155b6111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b90612b6c565b60405180910390fd5b600a54816111b26007611298565b6111bc9190612db1565b11156111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490612c6c565b60405180910390fd5b611205611455565b61120f8284611895565b505050565b61121c611455565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390612acc565b60405180910390fd5b611295816117cf565b50565b600081600001549050919050565b6001816000016000828254019250508190555050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61135281611a9e565b611391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138890612c2c565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661140f83610bf4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61145d611394565b73ffffffffffffffffffffffffffffffffffffffff1661147b610d94565b73ffffffffffffffffffffffffffffffffffffffff16146114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890612bec565b60405180910390fd5b565b6000806114df83610bf4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611521575061152081856110be565b5b8061155f57508373ffffffffffffffffffffffffffffffffffffffff166115478461082c565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661158882610bf4565b73ffffffffffffffffffffffffffffffffffffffff16146115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d590612aec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561164e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164590612b2c565b60405180910390fd5b611659838383611cfd565b61166460008261139c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116b49190612e38565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461170b9190612db1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117ca838383611d02565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156118d0576118aa60076112a6565b6118bd836118b86007611298565b611d07565b80806118c890612f85565b915050611898565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b90612b4c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a359190612a4f565b60405180910390a3505050565b611a4d848484611568565b611a5984848484611d25565b611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f90612aac565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060088054611b1990612f22565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4590612f22565b8015611b925780601f10611b6757610100808354040283529160200191611b92565b820191906000526020600020905b815481529060010190602001808311611b7557829003601f168201915b5050505050905090565b60606000821415611be4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611cf8565b600082905060005b60008214611c16578080611bff90612f85565b915050600a82611c0f9190612e07565b9150611bec565b60008167ffffffffffffffff811115611c3257611c316130bb565b5b6040519080825280601f01601f191660200182016040528015611c645781602001600182028036833780820191505090505b5090505b60008514611cf157600182611c7d9190612e38565b9150600a85611c8c9190612fce565b6030611c989190612db1565b60f81b818381518110611cae57611cad61308c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cea9190612e07565b9450611c68565b8093505050505b919050565b505050565b505050565b611d21828260405180602001604052806000815250611ebc565b5050565b6000611d468473ffffffffffffffffffffffffffffffffffffffff166112bc565b15611eaf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d6f611394565b8786866040518563ffffffff1660e01b8152600401611d919493929190612a03565b602060405180830381600087803b158015611dab57600080fd5b505af1925050508015611ddc57506040513d601f19601f82011682018060405250810190611dd991906124fa565b60015b611e5f573d8060008114611e0c576040519150601f19603f3d011682016040523d82523d6000602084013e611e11565b606091505b50600081511415611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90612aac565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611eb4565b600190505b949350505050565b611ec68383611f17565b611ed36000848484611d25565b611f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0990612aac565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7e90612bcc565b60405180910390fd5b611f9081611a9e565b15611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc790612b0c565b60405180910390fd5b611fdc60008383611cfd565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461202c9190612db1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ed60008383611d02565b5050565b8280546120fd90612f22565b90600052602060002090601f01602090048101928261211f5760008555612166565b82601f1061213857805160ff1916838001178555612166565b82800160010185558215612166579182015b8281111561216557825182559160200191906001019061214a565b5b5090506121739190612177565b5090565b5b80821115612190576000816000905550600101612178565b5090565b60006121a76121a284612cec565b612cc7565b9050828152602081018484840111156121c3576121c26130ef565b5b6121ce848285612ee0565b509392505050565b60006121e96121e484612d1d565b612cc7565b905082815260208101848484011115612205576122046130ef565b5b612210848285612ee0565b509392505050565b60008135905061222781613521565b92915050565b60008135905061223c81613538565b92915050565b6000813590506122518161354f565b92915050565b6000815190506122668161354f565b92915050565b600082601f830112612281576122806130ea565b5b8135612291848260208601612194565b91505092915050565b600082601f8301126122af576122ae6130ea565b5b81356122bf8482602086016121d6565b91505092915050565b6000813590506122d781613566565b92915050565b6000602082840312156122f3576122f26130f9565b5b600061230184828501612218565b91505092915050565b60008060408385031215612321576123206130f9565b5b600061232f85828601612218565b925050602061234085828601612218565b9150509250929050565b600080600060608486031215612363576123626130f9565b5b600061237186828701612218565b935050602061238286828701612218565b9250506040612393868287016122c8565b9150509250925092565b600080600080608085870312156123b7576123b66130f9565b5b60006123c587828801612218565b94505060206123d687828801612218565b93505060406123e7878288016122c8565b925050606085013567ffffffffffffffff811115612408576124076130f4565b5b6124148782880161226c565b91505092959194509250565b60008060408385031215612437576124366130f9565b5b600061244585828601612218565b92505060206124568582860161222d565b9150509250929050565b60008060408385031215612477576124766130f9565b5b600061248585828601612218565b9250506020612496858286016122c8565b9150509250929050565b6000602082840312156124b6576124b56130f9565b5b60006124c48482850161222d565b91505092915050565b6000602082840312156124e3576124e26130f9565b5b60006124f184828501612242565b91505092915050565b6000602082840312156125105761250f6130f9565b5b600061251e84828501612257565b91505092915050565b60006020828403121561253d5761253c6130f9565b5b600082013567ffffffffffffffff81111561255b5761255a6130f4565b5b6125678482850161229a565b91505092915050565b600060208284031215612586576125856130f9565b5b6000612594848285016122c8565b91505092915050565b600080604083850312156125b4576125b36130f9565b5b60006125c2858286016122c8565b92505060206125d385828601612218565b9150509250929050565b6125e681612e6c565b82525050565b6125f581612e7e565b82525050565b600061260682612d63565b6126108185612d79565b9350612620818560208601612eef565b612629816130fe565b840191505092915050565b600061263f82612d6e565b6126498185612d95565b9350612659818560208601612eef565b612662816130fe565b840191505092915050565b600061267882612d6e565b6126828185612da6565b9350612692818560208601612eef565b80840191505092915050565b600081546126ab81612f22565b6126b58186612da6565b945060018216600081146126d057600181146126e157612714565b60ff19831686528186019350612714565b6126ea85612d4e565b60005b8381101561270c578154818901526001820191506020810190506126ed565b838801955050505b50505092915050565b600061272a602083612d95565b91506127358261310f565b602082019050919050565b600061274d603283612d95565b915061275882613138565b604082019050919050565b6000612770602683612d95565b915061277b82613187565b604082019050919050565b6000612793602583612d95565b915061279e826131d6565b604082019050919050565b60006127b6601c83612d95565b91506127c182613225565b602082019050919050565b60006127d9602483612d95565b91506127e48261324e565b604082019050919050565b60006127fc601983612d95565b91506128078261329d565b602082019050919050565b600061281f601483612d95565b915061282a826132c6565b602082019050919050565b6000612842602983612d95565b915061284d826132ef565b604082019050919050565b6000612865603e83612d95565b91506128708261333e565b604082019050919050565b6000612888602083612d95565b91506128938261338d565b602082019050919050565b60006128ab602083612d95565b91506128b6826133b6565b602082019050919050565b60006128ce602f83612d95565b91506128d9826133df565b604082019050919050565b60006128f1601883612d95565b91506128fc8261342e565b602082019050919050565b6000612914602183612d95565b915061291f82613457565b604082019050919050565b6000612937600083612d8a565b9150612942826134a6565b600082019050919050565b600061295a601283612d95565b9150612965826134a9565b602082019050919050565b600061297d602e83612d95565b9150612988826134d2565b604082019050919050565b61299c81612ed6565b82525050565b60006129ae828661266d565b91506129ba828561266d565b91506129c6828461269e565b9150819050949350505050565b60006129de8261292a565b9150819050919050565b60006020820190506129fd60008301846125dd565b92915050565b6000608082019050612a1860008301876125dd565b612a2560208301866125dd565b612a326040830185612993565b8181036060830152612a4481846125fb565b905095945050505050565b6000602082019050612a6460008301846125ec565b92915050565b60006020820190508181036000830152612a848184612634565b905092915050565b60006020820190508181036000830152612aa58161271d565b9050919050565b60006020820190508181036000830152612ac581612740565b9050919050565b60006020820190508181036000830152612ae581612763565b9050919050565b60006020820190508181036000830152612b0581612786565b9050919050565b60006020820190508181036000830152612b25816127a9565b9050919050565b60006020820190508181036000830152612b45816127cc565b9050919050565b60006020820190508181036000830152612b65816127ef565b9050919050565b60006020820190508181036000830152612b8581612812565b9050919050565b60006020820190508181036000830152612ba581612835565b9050919050565b60006020820190508181036000830152612bc581612858565b9050919050565b60006020820190508181036000830152612be58161287b565b9050919050565b60006020820190508181036000830152612c058161289e565b9050919050565b60006020820190508181036000830152612c25816128c1565b9050919050565b60006020820190508181036000830152612c45816128e4565b9050919050565b60006020820190508181036000830152612c6581612907565b9050919050565b60006020820190508181036000830152612c858161294d565b9050919050565b60006020820190508181036000830152612ca581612970565b9050919050565b6000602082019050612cc16000830184612993565b92915050565b6000612cd1612ce2565b9050612cdd8282612f54565b919050565b6000604051905090565b600067ffffffffffffffff821115612d0757612d066130bb565b5b612d10826130fe565b9050602081019050919050565b600067ffffffffffffffff821115612d3857612d376130bb565b5b612d41826130fe565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612dbc82612ed6565b9150612dc783612ed6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612dfc57612dfb612fff565b5b828201905092915050565b6000612e1282612ed6565b9150612e1d83612ed6565b925082612e2d57612e2c61302e565b5b828204905092915050565b6000612e4382612ed6565b9150612e4e83612ed6565b925082821015612e6157612e60612fff565b5b828203905092915050565b6000612e7782612eb6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f0d578082015181840152602081019050612ef2565b83811115612f1c576000848401525b50505050565b60006002820490506001821680612f3a57607f821691505b60208210811415612f4e57612f4d61305d565b5b50919050565b612f5d826130fe565b810181811067ffffffffffffffff82111715612f7c57612f7b6130bb565b5b80604052505050565b6000612f9082612ed6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fc357612fc2612fff565b5b600182019050919050565b6000612fd982612ed6565b9150612fe483612ed6565b925082612ff457612ff361302e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f54686520636f6e74726163742069732063757272656e746c7920706175736564600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e76616c6964204d696e7420416d6f756e7421000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61352a81612e6c565b811461353557600080fd5b50565b61354181612e7e565b811461354c57600080fd5b50565b61355881612e8a565b811461356357600080fd5b50565b61356f81612ed6565b811461357a57600080fd5b5056fea26469706673582212205a55908eaa1855f0e623ecf61e528a5221922e23ab5ff2e1d3ade2d1285f112a64736f6c63430008070033697066733a2f2f62616679626569637a3476656e6d6b6667376975646d6632656162766b6c66706f6a616e3662796a747834646a6b6565716b3368746b6e6e796b792f

Deployed Bytecode

0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063b071401b11610095578063d5abeb0111610064578063d5abeb01146105fe578063e985e9c514610629578063efbd73f414610666578063f2fde38b1461068f576101c2565b8063b071401b14610546578063b88d4fde1461056f578063bedb86fb14610598578063c87b56dd146105c1576101c2565b806394354fd0116100d157806394354fd0146104ab57806395d89b41146104d6578063a0712d6814610501578063a22cb4651461051d576101c2565b8063715018a6146104405780637ec4a659146104575780638da5cb5b14610480576101c2565b80633ccfd60b116101645780635c975abb1161013e5780635c975abb1461037057806362b99ad41461039b5780636352211e146103c657806370a0823114610403576101c2565b80633ccfd60b1461031257806342842e0e1461031c5780635503a0e814610345576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806316ba10e01461029557806318160ddd146102be57806323b872dd146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906124cd565b6106b8565b6040516101fb9190612a4f565b60405180910390f35b34801561021057600080fd5b5061021961079a565b6040516102269190612a6a565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612570565b61082c565b60405161026391906129e8565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612460565b610872565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190612527565b61098a565b005b3480156102ca57600080fd5b506102d36109ac565b6040516102e09190612cac565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b919061234a565b6109bd565b005b61031a610a1d565b005b34801561032857600080fd5b50610343600480360381019061033e919061234a565b610aa5565b005b34801561035157600080fd5b5061035a610ac5565b6040516103679190612a6a565b60405180910390f35b34801561037c57600080fd5b50610385610b53565b6040516103929190612a4f565b60405180910390f35b3480156103a757600080fd5b506103b0610b66565b6040516103bd9190612a6a565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e89190612570565b610bf4565b6040516103fa91906129e8565b60405180910390f35b34801561040f57600080fd5b5061042a600480360381019061042591906122dd565b610ca6565b6040516104379190612cac565b60405180910390f35b34801561044c57600080fd5b50610455610d5e565b005b34801561046357600080fd5b5061047e60048036038101906104799190612527565b610d72565b005b34801561048c57600080fd5b50610495610d94565b6040516104a291906129e8565b60405180910390f35b3480156104b757600080fd5b506104c0610dbe565b6040516104cd9190612cac565b60405180910390f35b3480156104e257600080fd5b506104eb610dc4565b6040516104f89190612a6a565b60405180910390f35b61051b60048036038101906105169190612570565b610e56565b005b34801561052957600080fd5b50610544600480360381019061053f9190612420565b610f5f565b005b34801561055257600080fd5b5061056d60048036038101906105689190612570565b610f75565b005b34801561057b57600080fd5b506105966004803603810190610591919061239d565b610f87565b005b3480156105a457600080fd5b506105bf60048036038101906105ba91906124a0565b610fe9565b005b3480156105cd57600080fd5b506105e860048036038101906105e39190612570565b61100e565b6040516105f59190612a6a565b60405180910390f35b34801561060a57600080fd5b506106136110b8565b6040516106209190612cac565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b919061230a565b6110be565b60405161065d9190612a4f565b60405180910390f35b34801561067257600080fd5b5061068d6004803603810190610688919061259d565b611152565b005b34801561069b57600080fd5b506106b660048036038101906106b191906122dd565b611214565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107935750610792826112df565b5b9050919050565b6060600080546107a990612f22565b80601f01602080910402602001604051908101604052809291908181526020018280546107d590612f22565b80156108225780601f106107f757610100808354040283529160200191610822565b820191906000526020600020905b81548152906001019060200180831161080557829003601f168201915b5050505050905090565b600061083782611349565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087d82610bf4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e590612c4c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661090d611394565b73ffffffffffffffffffffffffffffffffffffffff16148061093c575061093b81610936611394565b6110be565b5b61097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097290612bac565b60405180910390fd5b610985838361139c565b505050565b610992611455565b80600990805190602001906109a89291906120f1565b5050565b60006109b86007611298565b905090565b6109ce6109c8611394565b826114d3565b610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0490612c8c565b60405180910390fd5b610a18838383611568565b505050565b610a25611455565b6000610a2f610d94565b73ffffffffffffffffffffffffffffffffffffffff1647604051610a52906129d3565b60006040518083038185875af1925050503d8060008114610a8f576040519150601f19603f3d011682016040523d82523d6000602084013e610a94565b606091505b5050905080610aa257600080fd5b50565b610ac083838360405180602001604052806000815250610f87565b505050565b60098054610ad290612f22565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe90612f22565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b505050505081565b600c60009054906101000a900460ff1681565b60088054610b7390612f22565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9f90612f22565b8015610bec5780601f10610bc157610100808354040283529160200191610bec565b820191906000526020600020905b815481529060010190602001808311610bcf57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9490612c2c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90612b8c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d66611455565b610d7060006117cf565b565b610d7a611455565b8060089080519060200190610d909291906120f1565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b606060018054610dd390612f22565b80601f0160208091040260200160405190810160405280929190818152602001828054610dff90612f22565b8015610e4c5780601f10610e2157610100808354040283529160200191610e4c565b820191906000526020600020905b815481529060010190602001808311610e2f57829003601f168201915b5050505050905090565b80600081118015610e695750600b548111155b610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f90612b6c565b60405180910390fd5b600a5481610eb66007611298565b610ec09190612db1565b1115610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef890612c6c565b60405180910390fd5b600c60009054906101000a900460ff1615610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4890612a8c565b60405180910390fd5b610f5b3383611895565b5050565b610f71610f6a611394565b83836118d5565b5050565b610f7d611455565b80600b8190555050565b610f98610f92611394565b836114d3565b610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90612c8c565b60405180910390fd5b610fe384848484611a42565b50505050565b610ff1611455565b80600c60006101000a81548160ff02191690831515021790555050565b606061101982611a9e565b611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90612c0c565b60405180910390fd5b6000611062611b0a565b9050600081511161108257604051806020016040528060008152506110b0565b8061108c84611b9c565b60096040516020016110a0939291906129a2565b6040516020818303038152906040525b915050919050565b600a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156111655750600b548111155b6111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b90612b6c565b60405180910390fd5b600a54816111b26007611298565b6111bc9190612db1565b11156111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490612c6c565b60405180910390fd5b611205611455565b61120f8284611895565b505050565b61121c611455565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390612acc565b60405180910390fd5b611295816117cf565b50565b600081600001549050919050565b6001816000016000828254019250508190555050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61135281611a9e565b611391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138890612c2c565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661140f83610bf4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61145d611394565b73ffffffffffffffffffffffffffffffffffffffff1661147b610d94565b73ffffffffffffffffffffffffffffffffffffffff16146114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890612bec565b60405180910390fd5b565b6000806114df83610bf4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611521575061152081856110be565b5b8061155f57508373ffffffffffffffffffffffffffffffffffffffff166115478461082c565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661158882610bf4565b73ffffffffffffffffffffffffffffffffffffffff16146115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d590612aec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561164e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164590612b2c565b60405180910390fd5b611659838383611cfd565b61166460008261139c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116b49190612e38565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461170b9190612db1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117ca838383611d02565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156118d0576118aa60076112a6565b6118bd836118b86007611298565b611d07565b80806118c890612f85565b915050611898565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b90612b4c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a359190612a4f565b60405180910390a3505050565b611a4d848484611568565b611a5984848484611d25565b611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f90612aac565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060088054611b1990612f22565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4590612f22565b8015611b925780601f10611b6757610100808354040283529160200191611b92565b820191906000526020600020905b815481529060010190602001808311611b7557829003601f168201915b5050505050905090565b60606000821415611be4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611cf8565b600082905060005b60008214611c16578080611bff90612f85565b915050600a82611c0f9190612e07565b9150611bec565b60008167ffffffffffffffff811115611c3257611c316130bb565b5b6040519080825280601f01601f191660200182016040528015611c645781602001600182028036833780820191505090505b5090505b60008514611cf157600182611c7d9190612e38565b9150600a85611c8c9190612fce565b6030611c989190612db1565b60f81b818381518110611cae57611cad61308c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cea9190612e07565b9450611c68565b8093505050505b919050565b505050565b505050565b611d21828260405180602001604052806000815250611ebc565b5050565b6000611d468473ffffffffffffffffffffffffffffffffffffffff166112bc565b15611eaf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d6f611394565b8786866040518563ffffffff1660e01b8152600401611d919493929190612a03565b602060405180830381600087803b158015611dab57600080fd5b505af1925050508015611ddc57506040513d601f19601f82011682018060405250810190611dd991906124fa565b60015b611e5f573d8060008114611e0c576040519150601f19603f3d011682016040523d82523d6000602084013e611e11565b606091505b50600081511415611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90612aac565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611eb4565b600190505b949350505050565b611ec68383611f17565b611ed36000848484611d25565b611f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0990612aac565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7e90612bcc565b60405180910390fd5b611f9081611a9e565b15611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc790612b0c565b60405180910390fd5b611fdc60008383611cfd565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461202c9190612db1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ed60008383611d02565b5050565b8280546120fd90612f22565b90600052602060002090601f01602090048101928261211f5760008555612166565b82601f1061213857805160ff1916838001178555612166565b82800160010185558215612166579182015b8281111561216557825182559160200191906001019061214a565b5b5090506121739190612177565b5090565b5b80821115612190576000816000905550600101612178565b5090565b60006121a76121a284612cec565b612cc7565b9050828152602081018484840111156121c3576121c26130ef565b5b6121ce848285612ee0565b509392505050565b60006121e96121e484612d1d565b612cc7565b905082815260208101848484011115612205576122046130ef565b5b612210848285612ee0565b509392505050565b60008135905061222781613521565b92915050565b60008135905061223c81613538565b92915050565b6000813590506122518161354f565b92915050565b6000815190506122668161354f565b92915050565b600082601f830112612281576122806130ea565b5b8135612291848260208601612194565b91505092915050565b600082601f8301126122af576122ae6130ea565b5b81356122bf8482602086016121d6565b91505092915050565b6000813590506122d781613566565b92915050565b6000602082840312156122f3576122f26130f9565b5b600061230184828501612218565b91505092915050565b60008060408385031215612321576123206130f9565b5b600061232f85828601612218565b925050602061234085828601612218565b9150509250929050565b600080600060608486031215612363576123626130f9565b5b600061237186828701612218565b935050602061238286828701612218565b9250506040612393868287016122c8565b9150509250925092565b600080600080608085870312156123b7576123b66130f9565b5b60006123c587828801612218565b94505060206123d687828801612218565b93505060406123e7878288016122c8565b925050606085013567ffffffffffffffff811115612408576124076130f4565b5b6124148782880161226c565b91505092959194509250565b60008060408385031215612437576124366130f9565b5b600061244585828601612218565b92505060206124568582860161222d565b9150509250929050565b60008060408385031215612477576124766130f9565b5b600061248585828601612218565b9250506020612496858286016122c8565b9150509250929050565b6000602082840312156124b6576124b56130f9565b5b60006124c48482850161222d565b91505092915050565b6000602082840312156124e3576124e26130f9565b5b60006124f184828501612242565b91505092915050565b6000602082840312156125105761250f6130f9565b5b600061251e84828501612257565b91505092915050565b60006020828403121561253d5761253c6130f9565b5b600082013567ffffffffffffffff81111561255b5761255a6130f4565b5b6125678482850161229a565b91505092915050565b600060208284031215612586576125856130f9565b5b6000612594848285016122c8565b91505092915050565b600080604083850312156125b4576125b36130f9565b5b60006125c2858286016122c8565b92505060206125d385828601612218565b9150509250929050565b6125e681612e6c565b82525050565b6125f581612e7e565b82525050565b600061260682612d63565b6126108185612d79565b9350612620818560208601612eef565b612629816130fe565b840191505092915050565b600061263f82612d6e565b6126498185612d95565b9350612659818560208601612eef565b612662816130fe565b840191505092915050565b600061267882612d6e565b6126828185612da6565b9350612692818560208601612eef565b80840191505092915050565b600081546126ab81612f22565b6126b58186612da6565b945060018216600081146126d057600181146126e157612714565b60ff19831686528186019350612714565b6126ea85612d4e565b60005b8381101561270c578154818901526001820191506020810190506126ed565b838801955050505b50505092915050565b600061272a602083612d95565b91506127358261310f565b602082019050919050565b600061274d603283612d95565b915061275882613138565b604082019050919050565b6000612770602683612d95565b915061277b82613187565b604082019050919050565b6000612793602583612d95565b915061279e826131d6565b604082019050919050565b60006127b6601c83612d95565b91506127c182613225565b602082019050919050565b60006127d9602483612d95565b91506127e48261324e565b604082019050919050565b60006127fc601983612d95565b91506128078261329d565b602082019050919050565b600061281f601483612d95565b915061282a826132c6565b602082019050919050565b6000612842602983612d95565b915061284d826132ef565b604082019050919050565b6000612865603e83612d95565b91506128708261333e565b604082019050919050565b6000612888602083612d95565b91506128938261338d565b602082019050919050565b60006128ab602083612d95565b91506128b6826133b6565b602082019050919050565b60006128ce602f83612d95565b91506128d9826133df565b604082019050919050565b60006128f1601883612d95565b91506128fc8261342e565b602082019050919050565b6000612914602183612d95565b915061291f82613457565b604082019050919050565b6000612937600083612d8a565b9150612942826134a6565b600082019050919050565b600061295a601283612d95565b9150612965826134a9565b602082019050919050565b600061297d602e83612d95565b9150612988826134d2565b604082019050919050565b61299c81612ed6565b82525050565b60006129ae828661266d565b91506129ba828561266d565b91506129c6828461269e565b9150819050949350505050565b60006129de8261292a565b9150819050919050565b60006020820190506129fd60008301846125dd565b92915050565b6000608082019050612a1860008301876125dd565b612a2560208301866125dd565b612a326040830185612993565b8181036060830152612a4481846125fb565b905095945050505050565b6000602082019050612a6460008301846125ec565b92915050565b60006020820190508181036000830152612a848184612634565b905092915050565b60006020820190508181036000830152612aa58161271d565b9050919050565b60006020820190508181036000830152612ac581612740565b9050919050565b60006020820190508181036000830152612ae581612763565b9050919050565b60006020820190508181036000830152612b0581612786565b9050919050565b60006020820190508181036000830152612b25816127a9565b9050919050565b60006020820190508181036000830152612b45816127cc565b9050919050565b60006020820190508181036000830152612b65816127ef565b9050919050565b60006020820190508181036000830152612b8581612812565b9050919050565b60006020820190508181036000830152612ba581612835565b9050919050565b60006020820190508181036000830152612bc581612858565b9050919050565b60006020820190508181036000830152612be58161287b565b9050919050565b60006020820190508181036000830152612c058161289e565b9050919050565b60006020820190508181036000830152612c25816128c1565b9050919050565b60006020820190508181036000830152612c45816128e4565b9050919050565b60006020820190508181036000830152612c6581612907565b9050919050565b60006020820190508181036000830152612c858161294d565b9050919050565b60006020820190508181036000830152612ca581612970565b9050919050565b6000602082019050612cc16000830184612993565b92915050565b6000612cd1612ce2565b9050612cdd8282612f54565b919050565b6000604051905090565b600067ffffffffffffffff821115612d0757612d066130bb565b5b612d10826130fe565b9050602081019050919050565b600067ffffffffffffffff821115612d3857612d376130bb565b5b612d41826130fe565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612dbc82612ed6565b9150612dc783612ed6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612dfc57612dfb612fff565b5b828201905092915050565b6000612e1282612ed6565b9150612e1d83612ed6565b925082612e2d57612e2c61302e565b5b828204905092915050565b6000612e4382612ed6565b9150612e4e83612ed6565b925082821015612e6157612e60612fff565b5b828203905092915050565b6000612e7782612eb6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f0d578082015181840152602081019050612ef2565b83811115612f1c576000848401525b50505050565b60006002820490506001821680612f3a57607f821691505b60208210811415612f4e57612f4d61305d565b5b50919050565b612f5d826130fe565b810181811067ffffffffffffffff82111715612f7c57612f7b6130bb565b5b80604052505050565b6000612f9082612ed6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fc357612fc2612fff565b5b600182019050919050565b6000612fd982612ed6565b9150612fe483612ed6565b925082612ff457612ff361302e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f54686520636f6e74726163742069732063757272656e746c7920706175736564600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e76616c6964204d696e7420416d6f756e7421000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61352a81612e6c565b811461353557600080fd5b50565b61354181612e7e565b811461354c57600080fd5b50565b61355881612e8a565b811461356357600080fd5b50565b61356f81612ed6565b811461357a57600080fd5b5056fea26469706673582212205a55908eaa1855f0e623ecf61e528a5221922e23ab5ff2e1d3ade2d1285f112a64736f6c63430008070033

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.