ETH Price: $2,521.68 (-0.14%)

Token

Little Andy ()
 

Overview

Max Total Supply

1,047

Holders

160

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xc9ed3286117dda5d35273e65b6c39cd2ddcb3f2f
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:
LittleAndyNFT

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : LittleAndy.sol
pragma solidity ^0.8.0;
/**
* The Little Andy NFT contract was deployed by Ownerfy Inc. of Ownerfy.com
* https://ownerfy.com/littleandy
* Visit Ownerfy.com for exclusive NFT drops or inquiries for your project.
*
* This contract is not a proxy. 
* This contract is not pausable.
* This contract is not lockable.
* This contract cannot be rug pulled.
* The URIs are not changeable after ownership is relinquished. 
* This contract uses IPFS 
* The NFT Owners and only the NFT Owners have complete control over their NFTs 
*/

// SPDX-License-Identifier: UNLICENSED

// From base: 
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";


contract LittleAndyNFT is Context, ERC1155, Ownable {

  using SafeMath for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private _tokenIdTracker;

  uint256 public salePrice = 135 * 10**15;
  uint256 public comicSalePrice = 34 * 10**15;
  uint256 public constant maxAndys = 2222;
  string public constant name = 'Little Andy';

  string public baseTokenURI;
  bool public placeHolder = true;
  bool public saleOn = false;
  bool public comicSaleOn = false;
  bool public listOnly = true;
  uint public totalComics = 0;
  uint256 wlm = 5;
  uint256 sm = 13;
  uint256 wlc = 3333;

  uint256 private _royaltyBps = 500;
  address payable private _royaltyRecipient;

  bytes4 private constant _INTERFACE_ID_ROYALTIES_CREATORCORE = 0xbb3bafd6;
  bytes4 private constant _INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a;
  bytes4 private constant _INTERFACE_ID_ROYALTIES_RARIBLE = 0xb7799584;

  mapping (address => uint8) public totalBought;
  mapping (address => uint8) public totalComicsBought;

  event Mint(address indexed sender, uint256 count, uint256 paid, uint256 price);
  event UpdateRoyalty(address indexed _address, uint256 _bps);

    /**
     * deploys the contract.
     */
    constructor(string memory _uri) payable ERC1155(_uri) {
      _royaltyRecipient = payable(msg.sender);
      baseTokenURI = _uri;
    }

    function _totalSupply() internal view returns (uint) {
        return _tokenIdTracker.current();
    }


    modifier saleIsOpen {
        require(_totalSupply() <= maxAndys, "Sale end");
        require(saleOn, "Sale hasnt started");
        
        _;
    }

    modifier comicSaleIsOpen {
        require(comicSaleOn, "Sale hasnt started");
        
        _;
    }

    function totalSupply() public view returns (uint256) {
        return _totalSupply() + totalComics;
    }

    function totalAndys() public view returns (uint256) {
        return _tokenIdTracker.current();
    }


    function mint(uint8 _count, address _to, uint256 code) public payable saleIsOpen {
        uint256 total = _totalSupply();
        uint256 cost = salePrice.mul(_count);
        require(total + _count <= maxAndys, "Max limit");
        require(msg.value >= cost, "Value below price");
        
        if(listOnly) {

          require(code == wlc, "Sender not on whitelist");
          require(totalBought[_to] + _count < wlm, "MAX WHITELIST AMOUNT PURCHASED");
          
          totalBought[_to] = totalBought[_to] + _count;

          _mintElements(_count, _to);
          Mint(_to, _count, cost, salePrice);

        } else {

          require(totalBought[_to] + _count < sm, "MAX GENERAL SALE AMOUNT PURCHASED");
          totalBought[_to] = totalBought[_to] + _count;
          _mintElements(_count, _to);
          Mint(_to, _count, cost, salePrice);
        }
    }

    function mintComic(uint8 _count, address _to) public payable comicSaleIsOpen {
        uint256 cost = comicSalePrice.mul(_count);
        require(totalComics + _count <= 1111, "Max limit");
        require(msg.value >= cost, "Value below price");
        
        require(totalComicsBought[_to] + _count < sm, "MAX GENERAL SALE AMOUNT PURCHASED");
        totalComicsBought[_to] = totalComicsBought[_to] + _count;
        totalComics = _count + totalComics;

        _mint(_to, 0, _count, '');
        Mint(_to, _count, cost, salePrice);
    }

    function creditCardMint(uint _count, address _to) public onlyOwner {
        uint256 total = _totalSupply();
        uint256 cost = salePrice.mul(_count);
        require(total + _count <= maxAndys, "Max limit");
        Mint(_to, _count, cost, salePrice);
        _mintElements(_count, _to);
    }

    function creditCardComicMint(uint _count, address _to) public onlyOwner {
        uint256 cost = comicSalePrice.mul(_count);
        require(totalComics + _count <= 1111, "Max limit");
        
        totalComics = _count + totalComics;

        _mint(_to, 0, _count, '');
        Mint(_to, _count, cost, salePrice);
    }


    function _mintElements(uint256 _count, address _to) private {
        uint[] memory tokenArr = new uint[](_count);
        uint[] memory tokenQtys = new uint[](_count);

        for (uint256 i = 0; i < _count; i++) {
          _tokenIdTracker.increment();
          tokenArr[i] = _tokenIdTracker.current();
          tokenQtys[i] = 1;
        }

        _mintBatch(_to, tokenArr, tokenQtys, '');
        
    }

    // Set price
    function setPrice(uint256 _price) public onlyOwner{
        salePrice = _price;
    }

    function setComicSalePrice(uint256 _price) public onlyOwner{
        comicSalePrice = _price;
    }

    function setWlc(uint256 _wlc) public onlyOwner{
        wlc = _wlc;
    }

    function setSm(uint256 _sm) public onlyOwner{
        _sm = sm;
    }

    function setWlm(uint256 _wlm) public onlyOwner{
        wlm = _wlm;
    }

    function withdraw() public onlyOwner{
        uint amount = address(this).balance;

        (bool success, ) = owner().call{value: amount}("");
        require(success, "Failed to send Ether");
        
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }


    function setPlaceHolder(bool isOn) public onlyOwner {
        placeHolder = isOn;
    }

    function setSaleOn(bool isOn) public onlyOwner {
        saleOn = isOn;
    }

    function setComicSaleOn(bool isOn) public onlyOwner {
        comicSaleOn = isOn;
    }

    function setListOnly(bool isOn) public onlyOwner {
        listOnly = isOn;
    }


    function uri(uint256 _id) public view virtual override returns (string memory) {
        if(placeHolder) {
          return baseTokenURI;
        } else {
          return string(abi.encodePacked(baseTokenURI, uint2str(_id), ".json"));
        }
    }

    /**
    * @dev Update royalties
    */
    function updateRoyalties(address payable recipient, uint256 bps) external onlyOwner {
        _royaltyRecipient = recipient;
        _royaltyBps = bps;
        emit UpdateRoyalty(recipient, bps);
    }

    /**
      * ROYALTY FUNCTIONS
      */
    function getRoyalties(uint256) external view returns (address payable[] memory recipients, uint256[] memory bps) {
        if (_royaltyRecipient != address(0x0)) {
            recipients = new address payable[](1);
            recipients[0] = _royaltyRecipient;
            bps = new uint256[](1);
            bps[0] = _royaltyBps;
        }
        return (recipients, bps);
    }

    function getFeeRecipients(uint256) external view returns (address payable[] memory recipients) {
        if (_royaltyRecipient != address(0x0)) {
            recipients = new address payable[](1);
            recipients[0] = _royaltyRecipient;
        }
        return recipients;
    }

    function getFeeBps(uint256) external view returns (uint[] memory bps) {
        if (_royaltyRecipient != address(0x0)) {
            bps = new uint256[](1);
            bps[0] = _royaltyBps;
        }
        return bps;
    }

    function royaltyInfo(uint256, uint256 value) external view returns (address, uint256) {
        return (_royaltyRecipient, value*_royaltyBps/10000);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155) returns (bool) {
        return ERC1155.supportsInterface(interfaceId) || interfaceId == _INTERFACE_ID_ROYALTIES_CREATORCORE
               || interfaceId == _INTERFACE_ID_ROYALTIES_EIP2981 || interfaceId == _INTERFACE_ID_ROYALTIES_RARIBLE;
    }

     function uint2str(
      uint256 _i
    )
      internal
      pure
      returns (string memory str)
    {
      if (_i == 0)
      {
        return "0";
      }
      uint256 j = _i;
      uint256 length;
      while (j != 0)
      {
        length++;
        j /= 10;
      }
      bytes memory bstr = new bytes(length);
      uint256 k = length;
      j = _i;
      while (j != 0)
      {
        bstr[--k] = bytes1(uint8(48 + j % 10));
        j /= 10;
      }
      str = string(bstr);
    }

}

File 2 of 12 : ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] += amount;
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

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

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 accountBalance = _balances[id][account];
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][account] = accountBalance - amount;
        }

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][account] = accountBalance - amount;
            }
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver(to).onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 12 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 12 : Counters.sol
// SPDX-License-Identifier: MIT

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 6 of 12 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 7 of 12 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 8 of 12 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 10 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"count","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"paid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"Mint","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"uint256","name":"_bps","type":"uint256"}],"name":"UpdateRoyalty","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"comicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"comicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"creditCardComicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"creditCardMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"recipients","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getRoyalties","outputs":[{"internalType":"address payable[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"listOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAndys","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_count","type":"uint8"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"code","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_count","type":"uint8"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintComic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeHolder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isOn","type":"bool"}],"name":"setComicSaleOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setComicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isOn","type":"bool"}],"name":"setListOnly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isOn","type":"bool"}],"name":"setPlaceHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isOn","type":"bool"}],"name":"setSaleOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sm","type":"uint256"}],"name":"setSm","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlc","type":"uint256"}],"name":"setWlc","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlm","type":"uint256"}],"name":"setWlm","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":"totalAndys","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalBought","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalComics","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalComicsBought","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"updateRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526701df9dc8e4ad80006005556678cad1e25d00006006556001600860006101000a81548160ff0219169083151502179055506000600860016101000a81548160ff0219169083151502179055506000600860026101000a81548160ff0219169083151502179055506001600860036101000a81548160ff02191690831515021790555060006009556005600a55600d600b55610d05600c556101f4600d5560405162006488380380620064888339818101604052810190620000c7919062000367565b80620000d9816200015b60201b60201c565b50620000fa620000ee6200017760201b60201c565b6200017f60201b60201c565b33600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600790805190602001906200015392919062000245565b5050620004dd565b80600290805190602001906200017392919062000245565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002539062000449565b90600052602060002090601f016020900481019282620002775760008555620002c3565b82601f106200029257805160ff1916838001178555620002c3565b82800160010185558215620002c3579182015b82811115620002c2578251825591602001919060010190620002a5565b5b509050620002d29190620002d6565b5090565b5b80821115620002f1576000816000905550600101620002d7565b5090565b60006200030c6200030684620003e0565b620003ac565b9050828152602081018484840111156200032557600080fd5b6200033284828562000413565b509392505050565b600082601f8301126200034c57600080fd5b81516200035e848260208601620002f5565b91505092915050565b6000602082840312156200037a57600080fd5b600082015167ffffffffffffffff8111156200039557600080fd5b620003a3848285016200033a565b91505092915050565b6000604051905081810181811067ffffffffffffffff82111715620003d657620003d5620004ae565b5b8060405250919050565b600067ffffffffffffffff821115620003fe57620003fd620004ae565b5b601f19601f8301169050602081019050919050565b60005b838110156200043357808201518184015260208101905062000416565b8381111562000443576000848401525b50505050565b600060028204905060018216806200046257607f821691505b602082108114156200047957620004786200047f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b615f9b80620004ed6000396000f3fe6080604052600436106102715760003560e01c80636c2f5acd1161014f578063b9c4d9fb116100c1578063eb7c17531161007a578063eb7c17531461097a578063eebab8ef146109a3578063f242432a146109bf578063f2fde38b146109e8578063f51f96dd14610a11578063fa7be07e14610a3c57610271565b8063b9c4d9fb14610841578063bb3bafd61461087e578063d547cfb7146108bc578063da995286146108e7578063e72d594214610912578063e985e9c51461093d57610271565b80638da5cb5b116101135780638da5cb5b146107435780638e89457a1461076e57806391b7f5ed14610799578063a22cb465146107c2578063a3f56079146107eb578063b3a58ca31461081657610271565b80636c2f5acd14610693578063715018a6146106bc57806376bbedc5146106d3578063773ef1cf146106fc5780637ae2f3af1461072757610271565b80631e960d20116101e857806343d0f9e0116101ac57806343d0f9e0146105735780634663b1b21461059c5780634e1273f4146105d957806355f804b314610616578063582b98201461063f5780636aff2d771461066a57610271565b80631e960d20146104a15780632a53a7f0146104ca5780632a55205a146104f55780632eb2c2d6146105335780633ccfd60b1461055c57610271565b80630ebd4c7f1161023a5780630ebd4c7f1461038157806312e24629146103be57806318160ddd146103e7578063186230a9146104125780631871aaeb1461043b5780631e311a931461046457610271565b8062fdd58e1461027657806301ffc9a7146102b357806306fdde03146102f0578063081af6161461031b5780630e89341c14610344575b600080fd5b34801561028257600080fd5b5061029d60048036038101906102989190614683565b610a65565b6040516102aa91906157eb565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190614754565b610b2e565b6040516102e7919061550e565b60405180910390f35b3480156102fc57600080fd5b50610305610c2d565b6040516103129190615529565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190614810565b610c66565b005b34801561035057600080fd5b5061036b600480360381019061036691906147e7565b610dbb565b6040516103789190615529565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a391906147e7565b610e97565b6040516103b591906154b5565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e091906147e7565b610fb0565b005b3480156103f357600080fd5b506103fc611036565b60405161040991906157eb565b60405180910390f35b34801561041e57600080fd5b50610439600480360381019061043491906147e7565b611052565b005b34801561044757600080fd5b50610462600480360381019061045d919061472b565b6110d6565b005b34801561047057600080fd5b5061048b60048036038101906104869190614458565b61116f565b6040516104989190615866565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c3919061472b565b61118f565b005b3480156104d657600080fd5b506104df611228565b6040516104ec919061550e565b60405180910390f35b34801561050157600080fd5b5061051c6004803603810190610517919061484c565b61123b565b60405161052a929190615433565b60405180910390f35b34801561053f57600080fd5b5061055a600480360381019061055591906144f9565b611287565b005b34801561056857600080fd5b50610571611328565b005b34801561057f57600080fd5b5061059a6004803603810190610595919061472b565b611460565b005b3480156105a857600080fd5b506105c360048036038101906105be9190614458565b6114f9565b6040516105d09190615866565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb91906146bf565b611519565b60405161060d91906154b5565b60405180910390f35b34801561062257600080fd5b5061063d600480360381019061063891906147a6565b6116ca565b005b34801561064b57600080fd5b50610654611760565b60405161066191906157eb565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190614810565b611766565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190614481565b6118d6565b005b3480156106c857600080fd5b506106d16119ec565b005b3480156106df57600080fd5b506106fa60048036038101906106f5919061472b565b611a74565b005b34801561070857600080fd5b50610711611b0d565b60405161071e919061550e565b60405180910390f35b610741600480360381019061073c9190614888565b611b20565b005b34801561074f57600080fd5b50610758611dff565b6040516107659190615356565b60405180910390f35b34801561077a57600080fd5b50610783611e29565b604051610790919061550e565b60405180910390f35b3480156107a557600080fd5b506107c060048036038101906107bb91906147e7565b611e3c565b005b3480156107ce57600080fd5b506107e960048036038101906107e49190614647565b611ec2565b005b3480156107f757600080fd5b50610800612043565b60405161080d919061550e565b60405180910390f35b34801561082257600080fd5b5061082b612056565b60405161083891906157eb565b60405180910390f35b34801561084d57600080fd5b50610868600480360381019061086391906147e7565b612067565b604051610875919061545c565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a091906147e7565b6121ce565b6040516108b392919061547e565b60405180910390f35b3480156108c857600080fd5b506108d16123f1565b6040516108de9190615529565b60405180910390f35b3480156108f357600080fd5b506108fc61247f565b60405161090991906157eb565b60405180910390f35b34801561091e57600080fd5b50610927612485565b60405161093491906157eb565b60405180910390f35b34801561094957600080fd5b50610964600480360381019061095f91906144bd565b61248b565b604051610971919061550e565b60405180910390f35b34801561098657600080fd5b506109a1600480360381019061099c91906147e7565b61251f565b005b6109bd60048036038101906109b891906148c4565b6125a5565b005b3480156109cb57600080fd5b506109e660048036038101906109e191906145b8565b612ac0565b005b3480156109f457600080fd5b50610a0f6004803603810190610a0a9190614458565b612b61565b005b348015610a1d57600080fd5b50610a26612c59565b604051610a3391906157eb565b60405180910390f35b348015610a4857600080fd5b50610a636004803603810190610a5e91906147e7565b612c5f565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acd9061558b565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610b3982612ce5565b80610b88575063bb3bafd660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bd75750632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c26575063b779958460e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6040518060400160405280600b81526020017f4c6974746c6520416e647900000000000000000000000000000000000000000081525081565b610c6e612dc7565b73ffffffffffffffffffffffffffffffffffffffff16610c8c611dff565b73ffffffffffffffffffffffffffffffffffffffff1614610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd9906156eb565b60405180910390fd5b6000610cec612dcf565b90506000610d0584600554612de090919063ffffffff16565b90506108ae8483610d169190615a76565b1115610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e9061560b565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff167fb4c03061fb5b7fed76389d5af8f2e0ddb09f8c70d1333abbb62582835e10accb8583600554604051610da39392919061582f565b60405180910390a2610db58484612df6565b50505050565b6060600860009054906101000a900460ff1615610e645760078054610ddf90615c9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0b90615c9f565b8015610e585780601f10610e2d57610100808354040283529160200191610e58565b820191906000526020600020905b815481529060010190602001808311610e3b57829003601f168201915b50505050509050610e92565b6007610e6f83612fbc565b604051602001610e80929190615312565b60405160208183030381529060405290505b919050565b6060600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fab57600167ffffffffffffffff811115610f30577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610f5e5781602001602082028036833780820191505090505b509050600d5481600081518110610f9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b919050565b610fb8612dc7565b73ffffffffffffffffffffffffffffffffffffffff16610fd6611dff565b73ffffffffffffffffffffffffffffffffffffffff161461102c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611023906156eb565b60405180910390fd5b8060068190555050565b6000600954611043612dcf565b61104d9190615a76565b905090565b61105a612dc7565b73ffffffffffffffffffffffffffffffffffffffff16611078611dff565b73ffffffffffffffffffffffffffffffffffffffff16146110ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c5906156eb565b60405180910390fd5b600b54905050565b6110de612dc7565b73ffffffffffffffffffffffffffffffffffffffff166110fc611dff565b73ffffffffffffffffffffffffffffffffffffffff1614611152576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611149906156eb565b60405180910390fd5b80600860036101000a81548160ff02191690831515021790555050565b60106020528060005260406000206000915054906101000a900460ff1681565b611197612dc7565b73ffffffffffffffffffffffffffffffffffffffff166111b5611dff565b73ffffffffffffffffffffffffffffffffffffffff161461120b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611202906156eb565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b600860039054906101000a900460ff1681565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600d54856112729190615b34565b61127c9190615b03565b915091509250929050565b61128f612dc7565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806112d557506112d4856112cf612dc7565b61248b565b5b611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b9061566b565b60405180910390fd5b611321858585858561316f565b5050505050565b611330612dc7565b73ffffffffffffffffffffffffffffffffffffffff1661134e611dff565b73ffffffffffffffffffffffffffffffffffffffff16146113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b906156eb565b60405180910390fd5b600047905060006113b3611dff565b73ffffffffffffffffffffffffffffffffffffffff16826040516113d690615341565b60006040518083038185875af1925050503d8060008114611413576040519150601f19603f3d011682016040523d82523d6000602084013e611418565b606091505b505090508061145c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611453906155eb565b60405180910390fd5b5050565b611468612dc7565b73ffffffffffffffffffffffffffffffffffffffff16611486611dff565b73ffffffffffffffffffffffffffffffffffffffff16146114dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d3906156eb565b60405180910390fd5b80600860026101000a81548160ff02191690831515021790555050565b600f6020528060005260406000206000915054906101000a900460ff1681565b6060815183511461155f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115569061576b565b60405180910390fd5b6000835167ffffffffffffffff8111156115a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156115d05781602001602082028036833780820191505090505b50905060005b84518110156116bf5761166985828151811061161b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015185838151811061165c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610a65565b8282815181106116a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050806116b890615cd1565b90506115d6565b508091505092915050565b6116d2612dc7565b73ffffffffffffffffffffffffffffffffffffffff166116f0611dff565b73ffffffffffffffffffffffffffffffffffffffff1614611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d906156eb565b60405180910390fd5b806007908051906020019061175c929190614126565b5050565b6108ae81565b61176e612dc7565b73ffffffffffffffffffffffffffffffffffffffff1661178c611dff565b73ffffffffffffffffffffffffffffffffffffffff16146117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d9906156eb565b60405180910390fd5b60006117f983600654612de090919063ffffffff16565b90506104578360095461180c9190615a76565b111561184d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118449061560b565b60405180910390fd5b6009548361185b9190615a76565b60098190555061187d82600085604051806020016040528060008152506134cf565b8173ffffffffffffffffffffffffffffffffffffffff167fb4c03061fb5b7fed76389d5af8f2e0ddb09f8c70d1333abbb62582835e10accb84836005546040516118c99392919061582f565b60405180910390a2505050565b6118de612dc7565b73ffffffffffffffffffffffffffffffffffffffff166118fc611dff565b73ffffffffffffffffffffffffffffffffffffffff1614611952576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611949906156eb565b60405180910390fd5b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d819055508173ffffffffffffffffffffffffffffffffffffffff167fa0a3764a6a020070a984037ddad31af783c92eae7581e99c957792d105717dd4826040516119e091906157eb565b60405180910390a25050565b6119f4612dc7565b73ffffffffffffffffffffffffffffffffffffffff16611a12611dff565b73ffffffffffffffffffffffffffffffffffffffff1614611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f906156eb565b60405180910390fd5b611a726000613665565b565b611a7c612dc7565b73ffffffffffffffffffffffffffffffffffffffff16611a9a611dff565b73ffffffffffffffffffffffffffffffffffffffff1614611af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae7906156eb565b60405180910390fd5b80600860016101000a81548160ff02191690831515021790555050565b600860019054906101000a900460ff1681565b600860029054906101000a900460ff16611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b669061562b565b60405180910390fd5b6000611b898360ff16600654612de090919063ffffffff16565b90506104578360ff16600954611b9f9190615a76565b1115611be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd79061560b565b60405180910390fd5b80341015611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a9061572b565b60405180910390fd5b600b5483601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c7e9190615acc565b60ff1610611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb89061570b565b60405180910390fd5b82601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611d199190615acc565b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506009548360ff16611d819190615a76565b600981905550611da68260008560ff16604051806020016040528060008152506134cf565b8173ffffffffffffffffffffffffffffffffffffffff167fb4c03061fb5b7fed76389d5af8f2e0ddb09f8c70d1333abbb62582835e10accb8483600554604051611df293929190615881565b60405180910390a2505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900460ff1681565b611e44612dc7565b73ffffffffffffffffffffffffffffffffffffffff16611e62611dff565b73ffffffffffffffffffffffffffffffffffffffff1614611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf906156eb565b60405180910390fd5b8060058190555050565b8173ffffffffffffffffffffffffffffffffffffffff16611ee1612dc7565b73ffffffffffffffffffffffffffffffffffffffff161415611f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2f9061574b565b60405180910390fd5b8060016000611f45612dc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ff2612dc7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612037919061550e565b60405180910390a35050565b600860029054906101000a900460ff1681565b6000612062600461372b565b905090565b6060600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121c957600167ffffffffffffffff811115612100577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561212e5781602001602082028036833780820191505090505b509050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160008151811061218e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b919050565b606080600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123ec57600167ffffffffffffffff811115612268577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156122965781602001602082028036833780820191505090505b509150600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826000815181106122f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600167ffffffffffffffff811115612371577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561239f5781602001602082028036833780820191505090505b509050600d54816000815181106123df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b915091565b600780546123fe90615c9f565b80601f016020809104026020016040519081016040528092919081815260200182805461242a90615c9f565b80156124775780601f1061244c57610100808354040283529160200191612477565b820191906000526020600020905b81548152906001019060200180831161245a57829003601f168201915b505050505081565b60065481565b60095481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612527612dc7565b73ffffffffffffffffffffffffffffffffffffffff16612545611dff565b73ffffffffffffffffffffffffffffffffffffffff161461259b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612592906156eb565b60405180910390fd5b80600c8190555050565b6108ae6125b0612dcf565b11156125f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e8906156ab565b60405180910390fd5b600860019054906101000a900460ff16612640576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126379061562b565b60405180910390fd5b600061264a612dcf565b905060006126668560ff16600554612de090919063ffffffff16565b90506108ae8560ff168361267a9190615a76565b11156126bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b29061560b565b60405180910390fd5b803410156126fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f59061572b565b60405180910390fd5b600860039054906101000a900460ff161561290a57600c548314612757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274e9061578b565b60405180910390fd5b600a5485600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166127b29190615acc565b60ff16106127f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ec9061568b565b60405180910390fd5b84600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661284d9190615acc565b600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506128b18560ff1685612df6565b8373ffffffffffffffffffffffffffffffffffffffff167fb4c03061fb5b7fed76389d5af8f2e0ddb09f8c70d1333abbb62582835e10accb86836005546040516128fd93929190615881565b60405180910390a2612ab9565b600b5485600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129659190615acc565b60ff16106129a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299f9061570b565b60405180910390fd5b84600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612a009190615acc565b600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550612a648560ff1685612df6565b8373ffffffffffffffffffffffffffffffffffffffff167fb4c03061fb5b7fed76389d5af8f2e0ddb09f8c70d1333abbb62582835e10accb8683600554604051612ab093929190615881565b60405180910390a25b5050505050565b612ac8612dc7565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480612b0e5750612b0d85612b08612dc7565b61248b565b5b612b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b44906155cb565b60405180910390fd5b612b5a8585858585613739565b5050505050565b612b69612dc7565b73ffffffffffffffffffffffffffffffffffffffff16612b87611dff565b73ffffffffffffffffffffffffffffffffffffffff1614612bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd4906156eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c44906155ab565b60405180910390fd5b612c5681613665565b50565b60055481565b612c67612dc7565b73ffffffffffffffffffffffffffffffffffffffff16612c85611dff565b73ffffffffffffffffffffffffffffffffffffffff1614612cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd2906156eb565b60405180910390fd5b80600a8190555050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612db057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612dc05750612dbf826139bb565b5b9050919050565b600033905090565b6000612ddb600461372b565b905090565b60008183612dee9190615b34565b905092915050565b60008267ffffffffffffffff811115612e38577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612e665781602001602082028036833780820191505090505b50905060008367ffffffffffffffff811115612eab577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612ed95781602001602082028036833780820191505090505b50905060005b84811015612f9a57612ef16004613a25565b612efb600461372b565b838281518110612f34577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250506001828281518110612f7b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080612f9290615cd1565b915050612edf565b50612fb683838360405180602001604052806000815250613a3b565b50505050565b60606000821415613004576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061316a565b600082905060005b6000821461303657808061301f90615cd1565b915050600a8261302f9190615b03565b915061300c565b60008167ffffffffffffffff811115613078577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130aa5781602001600182028036833780820191505090505b50905060008290508593505b6000841461316257600a846130cb9190615d1a565b60306130d79190615a76565b60f81b82826130e590615c75565b9250828151811061311f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8461315b9190615b03565b93506130b6565b819450505050505b919050565b81518351146131b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131aa906157ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321a9061564b565b60405180910390fd5b600061322d612dc7565b905061323d818787878787613ca5565b60005b845181101561343a576000858281518110613284577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008583815181106132c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561336a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613361906156cb565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461341f9190615a76565b925050819055505050508061343390615cd1565b9050613240565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516134b19291906154d7565b60405180910390a46134c7818787878787613cad565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561353f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613536906157cb565b60405180910390fd5b6000613549612dc7565b905061356a8160008761355b88613e7d565b61356488613e7d565b87613ca5565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135c99190615a76565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051613647929190615806565b60405180910390a461365e81600087878787613f43565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156137a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137a09061564b565b60405180910390fd5b60006137b3612dc7565b90506137d38187876137c488613e7d565b6137cd88613e7d565b87613ca5565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561386a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613861906156cb565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461391f9190615a76565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161399c929190615806565b60405180910390a46139b2828888888888613f43565b50505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aa2906157cb565b60405180910390fd5b8151835114613aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ae6906157ab565b60405180910390fd5b6000613af9612dc7565b9050613b0a81600087878787613ca5565b60005b8451811015613c0f57838181518110613b4f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600080878481518110613b93577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613bf59190615a76565b925050819055508080613c0790615cd1565b915050613b0d565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051613c879291906154d7565b60405180910390a4613c9e81600087878787613cad565b5050505050565b505050505050565b613ccc8473ffffffffffffffffffffffffffffffffffffffff16614113565b15613e75578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401613d12959493929190615371565b602060405180830381600087803b158015613d2c57600080fd5b505af1925050508015613d5d57506040513d601f19601f82011682018060405250810190613d5a919061477d565b60015b613dec57613d69615e25565b80613d745750613db1565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613da89190615529565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613de39061554b565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e6a9061556b565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115613ec2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015613ef05781602001602082028036833780820191505090505b5090508281600081518110613f2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b613f628473ffffffffffffffffffffffffffffffffffffffff16614113565b1561410b578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401613fa89594939291906153d9565b602060405180830381600087803b158015613fc257600080fd5b505af1925050508015613ff357506040513d601f19601f82011682018060405250810190613ff0919061477d565b60015b61408257613fff615e25565b8061400a5750614047565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161403e9190615529565b60405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016140799061554b565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614614109576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016141009061556b565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b82805461413290615c9f565b90600052602060002090601f016020900481019282614154576000855561419b565b82601f1061416d57805160ff191683800117855561419b565b8280016001018555821561419b579182015b8281111561419a57825182559160200191906001019061417f565b5b5090506141a891906141ac565b5090565b5b808211156141c55760008160009055506001016141ad565b5090565b60006141dc6141d7846158e9565b6158b8565b905080838252602082019050828560208602820111156141fb57600080fd5b60005b8581101561422b5781614211888261431d565b8452602084019350602083019250506001810190506141fe565b5050509392505050565b600061424861424384615915565b6158b8565b9050808382526020820190508285602086028201111561426757600080fd5b60005b85811015614297578161427d888261442e565b84526020840193506020830192505060018101905061426a565b5050509392505050565b60006142b46142af84615941565b6158b8565b9050828152602081018484840111156142cc57600080fd5b6142d7848285615c33565b509392505050565b60006142f26142ed84615971565b6158b8565b90508281526020810184848401111561430a57600080fd5b614315848285615c33565b509392505050565b60008135905061432c81615edb565b92915050565b60008135905061434181615ef2565b92915050565b600082601f83011261435857600080fd5b81356143688482602086016141c9565b91505092915050565b600082601f83011261438257600080fd5b8135614392848260208601614235565b91505092915050565b6000813590506143aa81615f09565b92915050565b6000813590506143bf81615f20565b92915050565b6000815190506143d481615f20565b92915050565b600082601f8301126143eb57600080fd5b81356143fb8482602086016142a1565b91505092915050565b600082601f83011261441557600080fd5b81356144258482602086016142df565b91505092915050565b60008135905061443d81615f37565b92915050565b60008135905061445281615f4e565b92915050565b60006020828403121561446a57600080fd5b60006144788482850161431d565b91505092915050565b6000806040838503121561449457600080fd5b60006144a285828601614332565b92505060206144b38582860161442e565b9150509250929050565b600080604083850312156144d057600080fd5b60006144de8582860161431d565b92505060206144ef8582860161431d565b9150509250929050565b600080600080600060a0868803121561451157600080fd5b600061451f8882890161431d565b95505060206145308882890161431d565b945050604086013567ffffffffffffffff81111561454d57600080fd5b61455988828901614371565b935050606086013567ffffffffffffffff81111561457657600080fd5b61458288828901614371565b925050608086013567ffffffffffffffff81111561459f57600080fd5b6145ab888289016143da565b9150509295509295909350565b600080600080600060a086880312156145d057600080fd5b60006145de8882890161431d565b95505060206145ef8882890161431d565b94505060406146008882890161442e565b93505060606146118882890161442e565b925050608086013567ffffffffffffffff81111561462e57600080fd5b61463a888289016143da565b9150509295509295909350565b6000806040838503121561465a57600080fd5b60006146688582860161431d565b92505060206146798582860161439b565b9150509250929050565b6000806040838503121561469657600080fd5b60006146a48582860161431d565b92505060206146b58582860161442e565b9150509250929050565b600080604083850312156146d257600080fd5b600083013567ffffffffffffffff8111156146ec57600080fd5b6146f885828601614347565b925050602083013567ffffffffffffffff81111561471557600080fd5b61472185828601614371565b9150509250929050565b60006020828403121561473d57600080fd5b600061474b8482850161439b565b91505092915050565b60006020828403121561476657600080fd5b6000614774848285016143b0565b91505092915050565b60006020828403121561478f57600080fd5b600061479d848285016143c5565b91505092915050565b6000602082840312156147b857600080fd5b600082013567ffffffffffffffff8111156147d257600080fd5b6147de84828501614404565b91505092915050565b6000602082840312156147f957600080fd5b60006148078482850161442e565b91505092915050565b6000806040838503121561482357600080fd5b60006148318582860161442e565b92505060206148428582860161431d565b9150509250929050565b6000806040838503121561485f57600080fd5b600061486d8582860161442e565b925050602061487e8582860161442e565b9150509250929050565b6000806040838503121561489b57600080fd5b60006148a985828601614443565b92505060206148ba8582860161431d565b9150509250929050565b6000806000606084860312156148d957600080fd5b60006148e786828701614443565b93505060206148f88682870161431d565b92505060406149098682870161442e565b9150509250925092565b600061491f8383614943565b60208301905092915050565b600061493783836152d6565b60208301905092915050565b61494c81615ba0565b82525050565b61495b81615b8e565b82525050565b600061496c826159d6565b6149768185615a1c565b9350614981836159a1565b8060005b838110156149b25781516149998882614913565b97506149a483615a02565b925050600181019050614985565b5085935050505092915050565b60006149ca826159e1565b6149d48185615a2d565b93506149df836159b1565b8060005b83811015614a105781516149f7888261492b565b9750614a0283615a0f565b9250506001810190506149e3565b5085935050505092915050565b614a2681615bb2565b82525050565b6000614a37826159ec565b614a418185615a3e565b9350614a51818560208601615c42565b614a5a81615e07565b840191505092915050565b6000614a70826159f7565b614a7a8185615a5a565b9350614a8a818560208601615c42565b614a9381615e07565b840191505092915050565b6000614aa9826159f7565b614ab38185615a6b565b9350614ac3818560208601615c42565b80840191505092915050565b60008154614adc81615c9f565b614ae68186615a6b565b94506001821660008114614b015760018114614b1257614b45565b60ff19831686528186019350614b45565b614b1b856159c1565b60005b83811015614b3d57815481890152600182019150602081019050614b1e565b838801955050505b50505092915050565b6000614b5b603483615a5a565b91507f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008301527f526563656976657220696d706c656d656e7465720000000000000000000000006020830152604082019050919050565b6000614bc1602883615a5a565b91507f455243313135353a204552433131353552656365697665722072656a6563746560008301527f6420746f6b656e730000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c27602b83615a5a565b91507f455243313135353a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000614c8d602683615a5a565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614cf3602983615a5a565b91507f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008301527f20617070726f76656400000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d59601483615a5a565b91507f4661696c656420746f2073656e642045746865720000000000000000000000006000830152602082019050919050565b6000614d99600983615a5a565b91507f4d6178206c696d697400000000000000000000000000000000000000000000006000830152602082019050919050565b6000614dd9601283615a5a565b91507f53616c65206861736e74207374617274656400000000000000000000000000006000830152602082019050919050565b6000614e19602583615a5a565b91507f455243313135353a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e7f603283615a5a565b91507f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000614ee5601e83615a5a565b91507f4d41582057484954454c49535420414d4f554e542050555243484153454400006000830152602082019050919050565b6000614f25600883615a5a565b91507f53616c6520656e640000000000000000000000000000000000000000000000006000830152602082019050919050565b6000614f65602a83615a5a565b91507f455243313135353a20696e73756666696369656e742062616c616e636520666f60008301527f72207472616e73666572000000000000000000000000000000000000000000006020830152604082019050919050565b6000614fcb600583615a6b565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b600061500b602083615a5a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061504b602183615a5a565b91507f4d41582047454e4552414c2053414c4520414d4f554e5420505552434841534560008301527f44000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006150b1601183615a5a565b91507f56616c75652062656c6f772070726963650000000000000000000000000000006000830152602082019050919050565b60006150f1600083615a4f565b9150600082019050919050565b600061510b602983615a5a565b91507f455243313135353a2073657474696e6720617070726f76616c2073746174757360008301527f20666f722073656c6600000000000000000000000000000000000000000000006020830152604082019050919050565b6000615171602983615a5a565b91507f455243313135353a206163636f756e747320616e6420696473206c656e67746860008301527f206d69736d6174636800000000000000000000000000000000000000000000006020830152604082019050919050565b60006151d7601783615a5a565b91507f53656e646572206e6f74206f6e2077686974656c6973740000000000000000006000830152602082019050919050565b6000615217602883615a5a565b91507f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008301527f6d69736d617463680000000000000000000000000000000000000000000000006020830152604082019050919050565b600061527d602183615a5a565b91507f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6152df81615c0a565b82525050565b6152ee81615c0a565b82525050565b6152fd81615c21565b82525050565b61530c81615c14565b82525050565b600061531e8285614acf565b915061532a8284614a9e565b915061533582614fbe565b91508190509392505050565b600061534c826150e4565b9150819050919050565b600060208201905061536b6000830184614952565b92915050565b600060a0820190506153866000830188614952565b6153936020830187614952565b81810360408301526153a581866149bf565b905081810360608301526153b981856149bf565b905081810360808301526153cd8184614a2c565b90509695505050505050565b600060a0820190506153ee6000830188614952565b6153fb6020830187614952565b61540860408301866152e5565b61541560608301856152e5565b81810360808301526154278184614a2c565b90509695505050505050565b60006040820190506154486000830185614952565b61545560208301846152e5565b9392505050565b600060208201905081810360008301526154768184614961565b905092915050565b600060408201905081810360008301526154988185614961565b905081810360208301526154ac81846149bf565b90509392505050565b600060208201905081810360008301526154cf81846149bf565b905092915050565b600060408201905081810360008301526154f181856149bf565b9050818103602083015261550581846149bf565b90509392505050565b60006020820190506155236000830184614a1d565b92915050565b600060208201905081810360008301526155438184614a65565b905092915050565b6000602082019050818103600083015261556481614b4e565b9050919050565b6000602082019050818103600083015261558481614bb4565b9050919050565b600060208201905081810360008301526155a481614c1a565b9050919050565b600060208201905081810360008301526155c481614c80565b9050919050565b600060208201905081810360008301526155e481614ce6565b9050919050565b6000602082019050818103600083015261560481614d4c565b9050919050565b6000602082019050818103600083015261562481614d8c565b9050919050565b6000602082019050818103600083015261564481614dcc565b9050919050565b6000602082019050818103600083015261566481614e0c565b9050919050565b6000602082019050818103600083015261568481614e72565b9050919050565b600060208201905081810360008301526156a481614ed8565b9050919050565b600060208201905081810360008301526156c481614f18565b9050919050565b600060208201905081810360008301526156e481614f58565b9050919050565b6000602082019050818103600083015261570481614ffe565b9050919050565b600060208201905081810360008301526157248161503e565b9050919050565b60006020820190508181036000830152615744816150a4565b9050919050565b60006020820190508181036000830152615764816150fe565b9050919050565b6000602082019050818103600083015261578481615164565b9050919050565b600060208201905081810360008301526157a4816151ca565b9050919050565b600060208201905081810360008301526157c48161520a565b9050919050565b600060208201905081810360008301526157e481615270565b9050919050565b600060208201905061580060008301846152e5565b92915050565b600060408201905061581b60008301856152e5565b61582860208301846152e5565b9392505050565b600060608201905061584460008301866152e5565b61585160208301856152e5565b61585e60408301846152e5565b949350505050565b600060208201905061587b6000830184615303565b92915050565b600060608201905061589660008301866152f4565b6158a360208301856152e5565b6158b060408301846152e5565b949350505050565b6000604051905081810181811067ffffffffffffffff821117156158df576158de615dd8565b5b8060405250919050565b600067ffffffffffffffff82111561590457615903615dd8565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156159305761592f615dd8565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561595c5761595b615dd8565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561598c5761598b615dd8565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615a8182615c0a565b9150615a8c83615c0a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615ac157615ac0615d4b565b5b828201905092915050565b6000615ad782615c14565b9150615ae283615c14565b92508260ff03821115615af857615af7615d4b565b5b828201905092915050565b6000615b0e82615c0a565b9150615b1983615c0a565b925082615b2957615b28615d7a565b5b828204905092915050565b6000615b3f82615c0a565b9150615b4a83615c0a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615b8357615b82615d4b565b5b828202905092915050565b6000615b9982615bea565b9050919050565b6000615bab82615bea565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000615c2c82615c14565b9050919050565b82818337600083830152505050565b60005b83811015615c60578082015181840152602081019050615c45565b83811115615c6f576000848401525b50505050565b6000615c8082615c0a565b91506000821415615c9457615c93615d4b565b5b600182039050919050565b60006002820490506001821680615cb757607f821691505b60208210811415615ccb57615cca615da9565b5b50919050565b6000615cdc82615c0a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615d0f57615d0e615d4b565b5b600182019050919050565b6000615d2582615c0a565b9150615d3083615c0a565b925082615d4057615d3f615d7a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b600060443d1015615e3557615ed8565b60046000803e615e46600051615e18565b6308c379a08114615e575750615ed8565b60405160043d036004823e80513d602482011167ffffffffffffffff82111715615e8357505050615ed8565b808201805167ffffffffffffffff811115615ea2575050505050615ed8565b8060208301013d8501811115615ebd57505050505050615ed8565b615ec682615e07565b60208401016040528296505050505050505b90565b615ee481615b8e565b8114615eef57600080fd5b50565b615efb81615ba0565b8114615f0657600080fd5b50565b615f1281615bb2565b8114615f1d57600080fd5b50565b615f2981615bbe565b8114615f3457600080fd5b50565b615f4081615c0a565b8114615f4b57600080fd5b50565b615f5781615c14565b8114615f6257600080fd5b5056fea26469706673582212202ecca493e3db445e23c1549df64d92321588a555d991657aeb0338031fdc498664736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d53704c514a3677337842326f7774777754477075713868456965667a364a6172533132387a4b4a35367756472f302e6a736f6e000000000000000000

Deployed Bytecode

0x6080604052600436106102715760003560e01c80636c2f5acd1161014f578063b9c4d9fb116100c1578063eb7c17531161007a578063eb7c17531461097a578063eebab8ef146109a3578063f242432a146109bf578063f2fde38b146109e8578063f51f96dd14610a11578063fa7be07e14610a3c57610271565b8063b9c4d9fb14610841578063bb3bafd61461087e578063d547cfb7146108bc578063da995286146108e7578063e72d594214610912578063e985e9c51461093d57610271565b80638da5cb5b116101135780638da5cb5b146107435780638e89457a1461076e57806391b7f5ed14610799578063a22cb465146107c2578063a3f56079146107eb578063b3a58ca31461081657610271565b80636c2f5acd14610693578063715018a6146106bc57806376bbedc5146106d3578063773ef1cf146106fc5780637ae2f3af1461072757610271565b80631e960d20116101e857806343d0f9e0116101ac57806343d0f9e0146105735780634663b1b21461059c5780634e1273f4146105d957806355f804b314610616578063582b98201461063f5780636aff2d771461066a57610271565b80631e960d20146104a15780632a53a7f0146104ca5780632a55205a146104f55780632eb2c2d6146105335780633ccfd60b1461055c57610271565b80630ebd4c7f1161023a5780630ebd4c7f1461038157806312e24629146103be57806318160ddd146103e7578063186230a9146104125780631871aaeb1461043b5780631e311a931461046457610271565b8062fdd58e1461027657806301ffc9a7146102b357806306fdde03146102f0578063081af6161461031b5780630e89341c14610344575b600080fd5b34801561028257600080fd5b5061029d60048036038101906102989190614683565b610a65565b6040516102aa91906157eb565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190614754565b610b2e565b6040516102e7919061550e565b60405180910390f35b3480156102fc57600080fd5b50610305610c2d565b6040516103129190615529565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190614810565b610c66565b005b34801561035057600080fd5b5061036b600480360381019061036691906147e7565b610dbb565b6040516103789190615529565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a391906147e7565b610e97565b6040516103b591906154b5565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e091906147e7565b610fb0565b005b3480156103f357600080fd5b506103fc611036565b60405161040991906157eb565b60405180910390f35b34801561041e57600080fd5b50610439600480360381019061043491906147e7565b611052565b005b34801561044757600080fd5b50610462600480360381019061045d919061472b565b6110d6565b005b34801561047057600080fd5b5061048b60048036038101906104869190614458565b61116f565b6040516104989190615866565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c3919061472b565b61118f565b005b3480156104d657600080fd5b506104df611228565b6040516104ec919061550e565b60405180910390f35b34801561050157600080fd5b5061051c6004803603810190610517919061484c565b61123b565b60405161052a929190615433565b60405180910390f35b34801561053f57600080fd5b5061055a600480360381019061055591906144f9565b611287565b005b34801561056857600080fd5b50610571611328565b005b34801561057f57600080fd5b5061059a6004803603810190610595919061472b565b611460565b005b3480156105a857600080fd5b506105c360048036038101906105be9190614458565b6114f9565b6040516105d09190615866565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb91906146bf565b611519565b60405161060d91906154b5565b60405180910390f35b34801561062257600080fd5b5061063d600480360381019061063891906147a6565b6116ca565b005b34801561064b57600080fd5b50610654611760565b60405161066191906157eb565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190614810565b611766565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190614481565b6118d6565b005b3480156106c857600080fd5b506106d16119ec565b005b3480156106df57600080fd5b506106fa60048036038101906106f5919061472b565b611a74565b005b34801561070857600080fd5b50610711611b0d565b60405161071e919061550e565b60405180910390f35b610741600480360381019061073c9190614888565b611b20565b005b34801561074f57600080fd5b50610758611dff565b6040516107659190615356565b60405180910390f35b34801561077a57600080fd5b50610783611e29565b604051610790919061550e565b60405180910390f35b3480156107a557600080fd5b506107c060048036038101906107bb91906147e7565b611e3c565b005b3480156107ce57600080fd5b506107e960048036038101906107e49190614647565b611ec2565b005b3480156107f757600080fd5b50610800612043565b60405161080d919061550e565b60405180910390f35b34801561082257600080fd5b5061082b612056565b60405161083891906157eb565b60405180910390f35b34801561084d57600080fd5b50610868600480360381019061086391906147e7565b612067565b604051610875919061545c565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a091906147e7565b6121ce565b6040516108b392919061547e565b60405180910390f35b3480156108c857600080fd5b506108d16123f1565b6040516108de9190615529565b60405180910390f35b3480156108f357600080fd5b506108fc61247f565b60405161090991906157eb565b60405180910390f35b34801561091e57600080fd5b50610927612485565b60405161093491906157eb565b60405180910390f35b34801561094957600080fd5b50610964600480360381019061095f91906144bd565b61248b565b604051610971919061550e565b60405180910390f35b34801561098657600080fd5b506109a1600480360381019061099c91906147e7565b61251f565b005b6109bd60048036038101906109b891906148c4565b6125a5565b005b3480156109cb57600080fd5b506109e660048036038101906109e191906145b8565b612ac0565b005b3480156109f457600080fd5b50610a0f6004803603810190610a0a9190614458565b612b61565b005b348015610a1d57600080fd5b50610a26612c59565b604051610a3391906157eb565b60405180910390f35b348015610a4857600080fd5b50610a636004803603810190610a5e91906147e7565b612c5f565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acd9061558b565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610b3982612ce5565b80610b88575063bb3bafd660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bd75750632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c26575063b779958460e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6040518060400160405280600b81526020017f4c6974746c6520416e647900000000000000000000000000000000000000000081525081565b610c6e612dc7565b73ffffffffffffffffffffffffffffffffffffffff16610c8c611dff565b73ffffffffffffffffffffffffffffffffffffffff1614610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd9906156eb565b60405180910390fd5b6000610cec612dcf565b90506000610d0584600554612de090919063ffffffff16565b90506108ae8483610d169190615a76565b1115610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e9061560b565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff167fb4c03061fb5b7fed76389d5af8f2e0ddb09f8c70d1333abbb62582835e10accb8583600554604051610da39392919061582f565b60405180910390a2610db58484612df6565b50505050565b6060600860009054906101000a900460ff1615610e645760078054610ddf90615c9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0b90615c9f565b8015610e585780601f10610e2d57610100808354040283529160200191610e58565b820191906000526020600020905b815481529060010190602001808311610e3b57829003601f168201915b50505050509050610e92565b6007610e6f83612fbc565b604051602001610e80929190615312565b60405160208183030381529060405290505b919050565b6060600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fab57600167ffffffffffffffff811115610f30577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610f5e5781602001602082028036833780820191505090505b509050600d5481600081518110610f9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b919050565b610fb8612dc7565b73ffffffffffffffffffffffffffffffffffffffff16610fd6611dff565b73ffffffffffffffffffffffffffffffffffffffff161461102c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611023906156eb565b60405180910390fd5b8060068190555050565b6000600954611043612dcf565b61104d9190615a76565b905090565b61105a612dc7565b73ffffffffffffffffffffffffffffffffffffffff16611078611dff565b73ffffffffffffffffffffffffffffffffffffffff16146110ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c5906156eb565b60405180910390fd5b600b54905050565b6110de612dc7565b73ffffffffffffffffffffffffffffffffffffffff166110fc611dff565b73ffffffffffffffffffffffffffffffffffffffff1614611152576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611149906156eb565b60405180910390fd5b80600860036101000a81548160ff02191690831515021790555050565b60106020528060005260406000206000915054906101000a900460ff1681565b611197612dc7565b73ffffffffffffffffffffffffffffffffffffffff166111b5611dff565b73ffffffffffffffffffffffffffffffffffffffff161461120b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611202906156eb565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b600860039054906101000a900460ff1681565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600d54856112729190615b34565b61127c9190615b03565b915091509250929050565b61128f612dc7565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806112d557506112d4856112cf612dc7565b61248b565b5b611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b9061566b565b60405180910390fd5b611321858585858561316f565b5050505050565b611330612dc7565b73ffffffffffffffffffffffffffffffffffffffff1661134e611dff565b73ffffffffffffffffffffffffffffffffffffffff16146113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b906156eb565b60405180910390fd5b600047905060006113b3611dff565b73ffffffffffffffffffffffffffffffffffffffff16826040516113d690615341565b60006040518083038185875af1925050503d8060008114611413576040519150601f19603f3d011682016040523d82523d6000602084013e611418565b606091505b505090508061145c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611453906155eb565b60405180910390fd5b5050565b611468612dc7565b73ffffffffffffffffffffffffffffffffffffffff16611486611dff565b73ffffffffffffffffffffffffffffffffffffffff16146114dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d3906156eb565b60405180910390fd5b80600860026101000a81548160ff02191690831515021790555050565b600f6020528060005260406000206000915054906101000a900460ff1681565b6060815183511461155f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115569061576b565b60405180910390fd5b6000835167ffffffffffffffff8111156115a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156115d05781602001602082028036833780820191505090505b50905060005b84518110156116bf5761166985828151811061161b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015185838151811061165c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610a65565b8282815181106116a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050806116b890615cd1565b90506115d6565b508091505092915050565b6116d2612dc7565b73ffffffffffffffffffffffffffffffffffffffff166116f0611dff565b73ffffffffffffffffffffffffffffffffffffffff1614611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d906156eb565b60405180910390fd5b806007908051906020019061175c929190614126565b5050565b6108ae81565b61176e612dc7565b73ffffffffffffffffffffffffffffffffffffffff1661178c611dff565b73ffffffffffffffffffffffffffffffffffffffff16146117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d9906156eb565b60405180910390fd5b60006117f983600654612de090919063ffffffff16565b90506104578360095461180c9190615a76565b111561184d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118449061560b565b60405180910390fd5b6009548361185b9190615a76565b60098190555061187d82600085604051806020016040528060008152506134cf565b8173ffffffffffffffffffffffffffffffffffffffff167fb4c03061fb5b7fed76389d5af8f2e0ddb09f8c70d1333abbb62582835e10accb84836005546040516118c99392919061582f565b60405180910390a2505050565b6118de612dc7565b73ffffffffffffffffffffffffffffffffffffffff166118fc611dff565b73ffffffffffffffffffffffffffffffffffffffff1614611952576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611949906156eb565b60405180910390fd5b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d819055508173ffffffffffffffffffffffffffffffffffffffff167fa0a3764a6a020070a984037ddad31af783c92eae7581e99c957792d105717dd4826040516119e091906157eb565b60405180910390a25050565b6119f4612dc7565b73ffffffffffffffffffffffffffffffffffffffff16611a12611dff565b73ffffffffffffffffffffffffffffffffffffffff1614611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f906156eb565b60405180910390fd5b611a726000613665565b565b611a7c612dc7565b73ffffffffffffffffffffffffffffffffffffffff16611a9a611dff565b73ffffffffffffffffffffffffffffffffffffffff1614611af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae7906156eb565b60405180910390fd5b80600860016101000a81548160ff02191690831515021790555050565b600860019054906101000a900460ff1681565b600860029054906101000a900460ff16611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b669061562b565b60405180910390fd5b6000611b898360ff16600654612de090919063ffffffff16565b90506104578360ff16600954611b9f9190615a76565b1115611be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd79061560b565b60405180910390fd5b80341015611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a9061572b565b60405180910390fd5b600b5483601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c7e9190615acc565b60ff1610611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb89061570b565b60405180910390fd5b82601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611d199190615acc565b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506009548360ff16611d819190615a76565b600981905550611da68260008560ff16604051806020016040528060008152506134cf565b8173ffffffffffffffffffffffffffffffffffffffff167fb4c03061fb5b7fed76389d5af8f2e0ddb09f8c70d1333abbb62582835e10accb8483600554604051611df293929190615881565b60405180910390a2505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900460ff1681565b611e44612dc7565b73ffffffffffffffffffffffffffffffffffffffff16611e62611dff565b73ffffffffffffffffffffffffffffffffffffffff1614611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf906156eb565b60405180910390fd5b8060058190555050565b8173ffffffffffffffffffffffffffffffffffffffff16611ee1612dc7565b73ffffffffffffffffffffffffffffffffffffffff161415611f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2f9061574b565b60405180910390fd5b8060016000611f45612dc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ff2612dc7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612037919061550e565b60405180910390a35050565b600860029054906101000a900460ff1681565b6000612062600461372b565b905090565b6060600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121c957600167ffffffffffffffff811115612100577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561212e5781602001602082028036833780820191505090505b509050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160008151811061218e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b919050565b606080600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123ec57600167ffffffffffffffff811115612268577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156122965781602001602082028036833780820191505090505b509150600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826000815181106122f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600167ffffffffffffffff811115612371577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561239f5781602001602082028036833780820191505090505b509050600d54816000815181106123df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b915091565b600780546123fe90615c9f565b80601f016020809104026020016040519081016040528092919081815260200182805461242a90615c9f565b80156124775780601f1061244c57610100808354040283529160200191612477565b820191906000526020600020905b81548152906001019060200180831161245a57829003601f168201915b505050505081565b60065481565b60095481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612527612dc7565b73ffffffffffffffffffffffffffffffffffffffff16612545611dff565b73ffffffffffffffffffffffffffffffffffffffff161461259b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612592906156eb565b60405180910390fd5b80600c8190555050565b6108ae6125b0612dcf565b11156125f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e8906156ab565b60405180910390fd5b600860019054906101000a900460ff16612640576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126379061562b565b60405180910390fd5b600061264a612dcf565b905060006126668560ff16600554612de090919063ffffffff16565b90506108ae8560ff168361267a9190615a76565b11156126bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b29061560b565b60405180910390fd5b803410156126fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f59061572b565b60405180910390fd5b600860039054906101000a900460ff161561290a57600c548314612757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274e9061578b565b60405180910390fd5b600a5485600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166127b29190615acc565b60ff16106127f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ec9061568b565b60405180910390fd5b84600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661284d9190615acc565b600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506128b18560ff1685612df6565b8373ffffffffffffffffffffffffffffffffffffffff167fb4c03061fb5b7fed76389d5af8f2e0ddb09f8c70d1333abbb62582835e10accb86836005546040516128fd93929190615881565b60405180910390a2612ab9565b600b5485600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129659190615acc565b60ff16106129a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299f9061570b565b60405180910390fd5b84600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612a009190615acc565b600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550612a648560ff1685612df6565b8373ffffffffffffffffffffffffffffffffffffffff167fb4c03061fb5b7fed76389d5af8f2e0ddb09f8c70d1333abbb62582835e10accb8683600554604051612ab093929190615881565b60405180910390a25b5050505050565b612ac8612dc7565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480612b0e5750612b0d85612b08612dc7565b61248b565b5b612b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b44906155cb565b60405180910390fd5b612b5a8585858585613739565b5050505050565b612b69612dc7565b73ffffffffffffffffffffffffffffffffffffffff16612b87611dff565b73ffffffffffffffffffffffffffffffffffffffff1614612bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd4906156eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c44906155ab565b60405180910390fd5b612c5681613665565b50565b60055481565b612c67612dc7565b73ffffffffffffffffffffffffffffffffffffffff16612c85611dff565b73ffffffffffffffffffffffffffffffffffffffff1614612cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd2906156eb565b60405180910390fd5b80600a8190555050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612db057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612dc05750612dbf826139bb565b5b9050919050565b600033905090565b6000612ddb600461372b565b905090565b60008183612dee9190615b34565b905092915050565b60008267ffffffffffffffff811115612e38577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612e665781602001602082028036833780820191505090505b50905060008367ffffffffffffffff811115612eab577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612ed95781602001602082028036833780820191505090505b50905060005b84811015612f9a57612ef16004613a25565b612efb600461372b565b838281518110612f34577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250506001828281518110612f7b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080612f9290615cd1565b915050612edf565b50612fb683838360405180602001604052806000815250613a3b565b50505050565b60606000821415613004576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061316a565b600082905060005b6000821461303657808061301f90615cd1565b915050600a8261302f9190615b03565b915061300c565b60008167ffffffffffffffff811115613078577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130aa5781602001600182028036833780820191505090505b50905060008290508593505b6000841461316257600a846130cb9190615d1a565b60306130d79190615a76565b60f81b82826130e590615c75565b9250828151811061311f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8461315b9190615b03565b93506130b6565b819450505050505b919050565b81518351146131b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131aa906157ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321a9061564b565b60405180910390fd5b600061322d612dc7565b905061323d818787878787613ca5565b60005b845181101561343a576000858281518110613284577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008583815181106132c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561336a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613361906156cb565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461341f9190615a76565b925050819055505050508061343390615cd1565b9050613240565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516134b19291906154d7565b60405180910390a46134c7818787878787613cad565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561353f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613536906157cb565b60405180910390fd5b6000613549612dc7565b905061356a8160008761355b88613e7d565b61356488613e7d565b87613ca5565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135c99190615a76565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051613647929190615806565b60405180910390a461365e81600087878787613f43565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156137a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137a09061564b565b60405180910390fd5b60006137b3612dc7565b90506137d38187876137c488613e7d565b6137cd88613e7d565b87613ca5565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561386a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613861906156cb565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461391f9190615a76565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161399c929190615806565b60405180910390a46139b2828888888888613f43565b50505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aa2906157cb565b60405180910390fd5b8151835114613aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ae6906157ab565b60405180910390fd5b6000613af9612dc7565b9050613b0a81600087878787613ca5565b60005b8451811015613c0f57838181518110613b4f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600080878481518110613b93577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613bf59190615a76565b925050819055508080613c0790615cd1565b915050613b0d565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051613c879291906154d7565b60405180910390a4613c9e81600087878787613cad565b5050505050565b505050505050565b613ccc8473ffffffffffffffffffffffffffffffffffffffff16614113565b15613e75578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401613d12959493929190615371565b602060405180830381600087803b158015613d2c57600080fd5b505af1925050508015613d5d57506040513d601f19601f82011682018060405250810190613d5a919061477d565b60015b613dec57613d69615e25565b80613d745750613db1565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613da89190615529565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613de39061554b565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e6a9061556b565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115613ec2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015613ef05781602001602082028036833780820191505090505b5090508281600081518110613f2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b613f628473ffffffffffffffffffffffffffffffffffffffff16614113565b1561410b578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401613fa89594939291906153d9565b602060405180830381600087803b158015613fc257600080fd5b505af1925050508015613ff357506040513d601f19601f82011682018060405250810190613ff0919061477d565b60015b61408257613fff615e25565b8061400a5750614047565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161403e9190615529565b60405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016140799061554b565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614614109576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016141009061556b565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b82805461413290615c9f565b90600052602060002090601f016020900481019282614154576000855561419b565b82601f1061416d57805160ff191683800117855561419b565b8280016001018555821561419b579182015b8281111561419a57825182559160200191906001019061417f565b5b5090506141a891906141ac565b5090565b5b808211156141c55760008160009055506001016141ad565b5090565b60006141dc6141d7846158e9565b6158b8565b905080838252602082019050828560208602820111156141fb57600080fd5b60005b8581101561422b5781614211888261431d565b8452602084019350602083019250506001810190506141fe565b5050509392505050565b600061424861424384615915565b6158b8565b9050808382526020820190508285602086028201111561426757600080fd5b60005b85811015614297578161427d888261442e565b84526020840193506020830192505060018101905061426a565b5050509392505050565b60006142b46142af84615941565b6158b8565b9050828152602081018484840111156142cc57600080fd5b6142d7848285615c33565b509392505050565b60006142f26142ed84615971565b6158b8565b90508281526020810184848401111561430a57600080fd5b614315848285615c33565b509392505050565b60008135905061432c81615edb565b92915050565b60008135905061434181615ef2565b92915050565b600082601f83011261435857600080fd5b81356143688482602086016141c9565b91505092915050565b600082601f83011261438257600080fd5b8135614392848260208601614235565b91505092915050565b6000813590506143aa81615f09565b92915050565b6000813590506143bf81615f20565b92915050565b6000815190506143d481615f20565b92915050565b600082601f8301126143eb57600080fd5b81356143fb8482602086016142a1565b91505092915050565b600082601f83011261441557600080fd5b81356144258482602086016142df565b91505092915050565b60008135905061443d81615f37565b92915050565b60008135905061445281615f4e565b92915050565b60006020828403121561446a57600080fd5b60006144788482850161431d565b91505092915050565b6000806040838503121561449457600080fd5b60006144a285828601614332565b92505060206144b38582860161442e565b9150509250929050565b600080604083850312156144d057600080fd5b60006144de8582860161431d565b92505060206144ef8582860161431d565b9150509250929050565b600080600080600060a0868803121561451157600080fd5b600061451f8882890161431d565b95505060206145308882890161431d565b945050604086013567ffffffffffffffff81111561454d57600080fd5b61455988828901614371565b935050606086013567ffffffffffffffff81111561457657600080fd5b61458288828901614371565b925050608086013567ffffffffffffffff81111561459f57600080fd5b6145ab888289016143da565b9150509295509295909350565b600080600080600060a086880312156145d057600080fd5b60006145de8882890161431d565b95505060206145ef8882890161431d565b94505060406146008882890161442e565b93505060606146118882890161442e565b925050608086013567ffffffffffffffff81111561462e57600080fd5b61463a888289016143da565b9150509295509295909350565b6000806040838503121561465a57600080fd5b60006146688582860161431d565b92505060206146798582860161439b565b9150509250929050565b6000806040838503121561469657600080fd5b60006146a48582860161431d565b92505060206146b58582860161442e565b9150509250929050565b600080604083850312156146d257600080fd5b600083013567ffffffffffffffff8111156146ec57600080fd5b6146f885828601614347565b925050602083013567ffffffffffffffff81111561471557600080fd5b61472185828601614371565b9150509250929050565b60006020828403121561473d57600080fd5b600061474b8482850161439b565b91505092915050565b60006020828403121561476657600080fd5b6000614774848285016143b0565b91505092915050565b60006020828403121561478f57600080fd5b600061479d848285016143c5565b91505092915050565b6000602082840312156147b857600080fd5b600082013567ffffffffffffffff8111156147d257600080fd5b6147de84828501614404565b91505092915050565b6000602082840312156147f957600080fd5b60006148078482850161442e565b91505092915050565b6000806040838503121561482357600080fd5b60006148318582860161442e565b92505060206148428582860161431d565b9150509250929050565b6000806040838503121561485f57600080fd5b600061486d8582860161442e565b925050602061487e8582860161442e565b9150509250929050565b6000806040838503121561489b57600080fd5b60006148a985828601614443565b92505060206148ba8582860161431d565b9150509250929050565b6000806000606084860312156148d957600080fd5b60006148e786828701614443565b93505060206148f88682870161431d565b92505060406149098682870161442e565b9150509250925092565b600061491f8383614943565b60208301905092915050565b600061493783836152d6565b60208301905092915050565b61494c81615ba0565b82525050565b61495b81615b8e565b82525050565b600061496c826159d6565b6149768185615a1c565b9350614981836159a1565b8060005b838110156149b25781516149998882614913565b97506149a483615a02565b925050600181019050614985565b5085935050505092915050565b60006149ca826159e1565b6149d48185615a2d565b93506149df836159b1565b8060005b83811015614a105781516149f7888261492b565b9750614a0283615a0f565b9250506001810190506149e3565b5085935050505092915050565b614a2681615bb2565b82525050565b6000614a37826159ec565b614a418185615a3e565b9350614a51818560208601615c42565b614a5a81615e07565b840191505092915050565b6000614a70826159f7565b614a7a8185615a5a565b9350614a8a818560208601615c42565b614a9381615e07565b840191505092915050565b6000614aa9826159f7565b614ab38185615a6b565b9350614ac3818560208601615c42565b80840191505092915050565b60008154614adc81615c9f565b614ae68186615a6b565b94506001821660008114614b015760018114614b1257614b45565b60ff19831686528186019350614b45565b614b1b856159c1565b60005b83811015614b3d57815481890152600182019150602081019050614b1e565b838801955050505b50505092915050565b6000614b5b603483615a5a565b91507f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008301527f526563656976657220696d706c656d656e7465720000000000000000000000006020830152604082019050919050565b6000614bc1602883615a5a565b91507f455243313135353a204552433131353552656365697665722072656a6563746560008301527f6420746f6b656e730000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c27602b83615a5a565b91507f455243313135353a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000614c8d602683615a5a565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614cf3602983615a5a565b91507f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008301527f20617070726f76656400000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d59601483615a5a565b91507f4661696c656420746f2073656e642045746865720000000000000000000000006000830152602082019050919050565b6000614d99600983615a5a565b91507f4d6178206c696d697400000000000000000000000000000000000000000000006000830152602082019050919050565b6000614dd9601283615a5a565b91507f53616c65206861736e74207374617274656400000000000000000000000000006000830152602082019050919050565b6000614e19602583615a5a565b91507f455243313135353a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e7f603283615a5a565b91507f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000614ee5601e83615a5a565b91507f4d41582057484954454c49535420414d4f554e542050555243484153454400006000830152602082019050919050565b6000614f25600883615a5a565b91507f53616c6520656e640000000000000000000000000000000000000000000000006000830152602082019050919050565b6000614f65602a83615a5a565b91507f455243313135353a20696e73756666696369656e742062616c616e636520666f60008301527f72207472616e73666572000000000000000000000000000000000000000000006020830152604082019050919050565b6000614fcb600583615a6b565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b600061500b602083615a5a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061504b602183615a5a565b91507f4d41582047454e4552414c2053414c4520414d4f554e5420505552434841534560008301527f44000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006150b1601183615a5a565b91507f56616c75652062656c6f772070726963650000000000000000000000000000006000830152602082019050919050565b60006150f1600083615a4f565b9150600082019050919050565b600061510b602983615a5a565b91507f455243313135353a2073657474696e6720617070726f76616c2073746174757360008301527f20666f722073656c6600000000000000000000000000000000000000000000006020830152604082019050919050565b6000615171602983615a5a565b91507f455243313135353a206163636f756e747320616e6420696473206c656e67746860008301527f206d69736d6174636800000000000000000000000000000000000000000000006020830152604082019050919050565b60006151d7601783615a5a565b91507f53656e646572206e6f74206f6e2077686974656c6973740000000000000000006000830152602082019050919050565b6000615217602883615a5a565b91507f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008301527f6d69736d617463680000000000000000000000000000000000000000000000006020830152604082019050919050565b600061527d602183615a5a565b91507f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6152df81615c0a565b82525050565b6152ee81615c0a565b82525050565b6152fd81615c21565b82525050565b61530c81615c14565b82525050565b600061531e8285614acf565b915061532a8284614a9e565b915061533582614fbe565b91508190509392505050565b600061534c826150e4565b9150819050919050565b600060208201905061536b6000830184614952565b92915050565b600060a0820190506153866000830188614952565b6153936020830187614952565b81810360408301526153a581866149bf565b905081810360608301526153b981856149bf565b905081810360808301526153cd8184614a2c565b90509695505050505050565b600060a0820190506153ee6000830188614952565b6153fb6020830187614952565b61540860408301866152e5565b61541560608301856152e5565b81810360808301526154278184614a2c565b90509695505050505050565b60006040820190506154486000830185614952565b61545560208301846152e5565b9392505050565b600060208201905081810360008301526154768184614961565b905092915050565b600060408201905081810360008301526154988185614961565b905081810360208301526154ac81846149bf565b90509392505050565b600060208201905081810360008301526154cf81846149bf565b905092915050565b600060408201905081810360008301526154f181856149bf565b9050818103602083015261550581846149bf565b90509392505050565b60006020820190506155236000830184614a1d565b92915050565b600060208201905081810360008301526155438184614a65565b905092915050565b6000602082019050818103600083015261556481614b4e565b9050919050565b6000602082019050818103600083015261558481614bb4565b9050919050565b600060208201905081810360008301526155a481614c1a565b9050919050565b600060208201905081810360008301526155c481614c80565b9050919050565b600060208201905081810360008301526155e481614ce6565b9050919050565b6000602082019050818103600083015261560481614d4c565b9050919050565b6000602082019050818103600083015261562481614d8c565b9050919050565b6000602082019050818103600083015261564481614dcc565b9050919050565b6000602082019050818103600083015261566481614e0c565b9050919050565b6000602082019050818103600083015261568481614e72565b9050919050565b600060208201905081810360008301526156a481614ed8565b9050919050565b600060208201905081810360008301526156c481614f18565b9050919050565b600060208201905081810360008301526156e481614f58565b9050919050565b6000602082019050818103600083015261570481614ffe565b9050919050565b600060208201905081810360008301526157248161503e565b9050919050565b60006020820190508181036000830152615744816150a4565b9050919050565b60006020820190508181036000830152615764816150fe565b9050919050565b6000602082019050818103600083015261578481615164565b9050919050565b600060208201905081810360008301526157a4816151ca565b9050919050565b600060208201905081810360008301526157c48161520a565b9050919050565b600060208201905081810360008301526157e481615270565b9050919050565b600060208201905061580060008301846152e5565b92915050565b600060408201905061581b60008301856152e5565b61582860208301846152e5565b9392505050565b600060608201905061584460008301866152e5565b61585160208301856152e5565b61585e60408301846152e5565b949350505050565b600060208201905061587b6000830184615303565b92915050565b600060608201905061589660008301866152f4565b6158a360208301856152e5565b6158b060408301846152e5565b949350505050565b6000604051905081810181811067ffffffffffffffff821117156158df576158de615dd8565b5b8060405250919050565b600067ffffffffffffffff82111561590457615903615dd8565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156159305761592f615dd8565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561595c5761595b615dd8565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561598c5761598b615dd8565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615a8182615c0a565b9150615a8c83615c0a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615ac157615ac0615d4b565b5b828201905092915050565b6000615ad782615c14565b9150615ae283615c14565b92508260ff03821115615af857615af7615d4b565b5b828201905092915050565b6000615b0e82615c0a565b9150615b1983615c0a565b925082615b2957615b28615d7a565b5b828204905092915050565b6000615b3f82615c0a565b9150615b4a83615c0a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615b8357615b82615d4b565b5b828202905092915050565b6000615b9982615bea565b9050919050565b6000615bab82615bea565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000615c2c82615c14565b9050919050565b82818337600083830152505050565b60005b83811015615c60578082015181840152602081019050615c45565b83811115615c6f576000848401525b50505050565b6000615c8082615c0a565b91506000821415615c9457615c93615d4b565b5b600182039050919050565b60006002820490506001821680615cb757607f821691505b60208210811415615ccb57615cca615da9565b5b50919050565b6000615cdc82615c0a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615d0f57615d0e615d4b565b5b600182019050919050565b6000615d2582615c0a565b9150615d3083615c0a565b925082615d4057615d3f615d7a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b600060443d1015615e3557615ed8565b60046000803e615e46600051615e18565b6308c379a08114615e575750615ed8565b60405160043d036004823e80513d602482011167ffffffffffffffff82111715615e8357505050615ed8565b808201805167ffffffffffffffff811115615ea2575050505050615ed8565b8060208301013d8501811115615ebd57505050505050615ed8565b615ec682615e07565b60208401016040528296505050505050505b90565b615ee481615b8e565b8114615eef57600080fd5b50565b615efb81615ba0565b8114615f0657600080fd5b50565b615f1281615bb2565b8114615f1d57600080fd5b50565b615f2981615bbe565b8114615f3457600080fd5b50565b615f4081615c0a565b8114615f4b57600080fd5b50565b615f5781615c14565b8114615f6257600080fd5b5056fea26469706673582212202ecca493e3db445e23c1549df64d92321588a555d991657aeb0338031fdc498664736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d53704c514a3677337842326f7774777754477075713868456965667a364a6172533132387a4b4a35367756472f302e6a736f6e000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): https://gateway.pinata.cloud/ipfs/QmSpLQJ6w3xB2owtwwTGpuq8hEiefz6JarS128zKJ56wVG/0.json

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000057
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d53704c514a3677337842326f7774777754477075713868456965667a
Arg [4] : 364a6172533132387a4b4a35367756472f302e6a736f6e000000000000000000


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.