ETH Price: $2,501.28 (+3.50%)

Token

On-Chain Splatter (SPLATTER)
 

Overview

Max Total Supply

250 SPLATTER

Holders

158

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 SPLATTER
0xfe81eea972b83a31520e43b524f40aad3e650126
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:
SplatterToken

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : SplatterToken.sol
// SPDX-License-Identifier: MIT

/*
 * Created by Satoshi Nakajima (@snakajima)
 */

pragma solidity ^0.8.6;

import "@openzeppelin/contracts/utils/Strings.sol";
import './libs/ProviderToken.sol';
import "./interfaces/ITokenGate.sol";

contract SplatterToken is ProviderToken {
  using Strings for uint256;
  ITokenGate immutable tokenGate;

  constructor(
    ITokenGate _tokenGate,
    IAssetProvider _assetProvider,
    IProxyRegistry _proxyRegistry
  ) ProviderToken(_assetProvider, _proxyRegistry, "On-Chain Splatter", "SPLATTER") {
    tokenGate = _tokenGate;
    description = "This is a part of Fully On-chain Generative Art project (https://fullyonchain.xyz/). All images are dymically generated on the blockchain.";
    mintPrice = 1e16; //0.01 ether, updatable
    mintLimit = 250; // initial limit, updatable with a hard limit of 1,000
  }

  function tokenName(uint256 _tokenId) internal pure override returns(string memory) {
    return string(abi.encodePacked('Splatter ', _tokenId.toString()));
  }

  function mint() public override virtual payable returns(uint256 tokenId) {
    require(nextTokenId < 1000, "Sold out"); // hard limit, regardless of updatable "mintLimit"
    require(msg.value >= mintPriceFor(msg.sender), 'Must send the mint price');
    tokenId = super.mint();
    assetProvider.processPayout{value:msg.value}(tokenId); // 100% distribution to the asset provider
  }

  function mintPriceFor(address _wallet) public override view virtual returns(uint256) {
    if (tokenGate.balanceOf(_wallet) > 0) {
      return mintPrice / 2; // 50% off
    }
    return mintPrice;
  }
}

File 2 of 16 : ITokenGate.sol
// SPDX-License-Identifier: MIT

/*
 * Created by Satoshi Nakajima (@snakajima)
 */

pragma solidity ^0.8.6;

interface ITokenGate {
  // Intentially same as ERC721's balanceOf
  function balanceOf(address _wallet) external view returns (uint256 balance);
}

File 3 of 16 : ProviderToken.sol
// SPDX-License-Identifier: MIT

/**
 * This is a part of an effort to create a decentralized autonomous marketplace for digital assets,
 * which allows artists and developers to sell their arts and generative arts.
 *
 * Please see "https://fullyonchain.xyz/" for details. 
 *
 * Created by Satoshi Nakajima (@snakajima)
 */

pragma solidity ^0.8.6;

import { Ownable } from '@openzeppelin/contracts/access/Ownable.sol';
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import { Base64 } from 'base64-sol/base64.sol';
import "@openzeppelin/contracts/utils/Strings.sol";
import { IProxyRegistry } from '../external/opensea/IProxyRegistry.sol';
import { IAssetProvider } from '../interfaces/IAssetProvider.sol';

/**
 * ProviderToken is an abstract implentation of ERC721, which is built on top of an asset provider.
 * The specified asset provider is responsible in providing images for NFTs in SVG format,
 * which turns them into fully on-chain NFTs.
 *
 * When implementing the mint method, and it should call processPayout method of the asset provider like this:
 *
 *   provider.processPayout{value:msg.value}(assetId)
 *
 */
abstract contract ProviderToken is Ownable, ERC721 {
  using Strings for uint256;
  using Strings for uint16;

  uint public nextTokenId;

  // To be specified by the concrete contract
  string public description; 
  uint public mintPrice; 
  uint public mintLimit; 

  // OpenSea's Proxy Registry
  IProxyRegistry public immutable proxyRegistry;

  IAssetProvider public immutable assetProvider;

  constructor(
    IAssetProvider _assetProvider,
    IProxyRegistry _proxyRegistry,
    string memory _title,
    string memory _shortTitle
  ) ERC721(_title, _shortTitle)  {
    assetProvider = _assetProvider;
    proxyRegistry = _proxyRegistry;
  }

  function setDescription(string memory _description) external onlyOwner {
      description = _description;
  }

  function setMintPrice(uint256 _price) external onlyOwner {
    mintPrice = _price;
  }

  function setMintLimit(uint256 _limit) external onlyOwner {
    mintLimit = _limit;
  }

  /**
    * @notice Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
    */
  function isApprovedForAll(address owner, address operator) public view override returns (bool) {
      // Whitelist OpenSea proxy contract for easy trading.
      if (proxyRegistry.proxies(owner) == operator) {
          return true;
      }
      return super.isApprovedForAll(owner, operator);
  }

  string constant SVGHeader = '<svg viewBox="0 0 1024 1024'
      '"  xmlns="http://www.w3.org/2000/svg">\n'
      '<defs>\n';

  /*
   * A function of IAssetStoreToken interface.
   * It generates SVG with the specified style, using the given "SVG Part".
   */
  function generateSVG(uint256 _assetId) internal view returns (string memory) {
    // Constants of non-value type not yet implemented by Solidity
    (string memory svgPart, string memory tag) = assetProvider.generateSVGPart(_assetId);
    return string(abi.encodePacked(
      SVGHeader, 
      svgPart,
      '</defs>\n'
      '<use href="#', tag, '" />\n'
      '</svg>\n'));
  }

  /**
    * @notice A distinct Uniform Resource Identifier (URI) for a given asset.
    * @dev See {IERC721Metadata-tokenURI}.
    */
  function tokenURI(uint256 _tokenId) public view override returns (string memory) {
    require(_exists(_tokenId), 'ProviderToken.tokenURI: nonexistent token');
    bytes memory image = bytes(generateSVG(_tokenId));

    return string(
      abi.encodePacked(
        'data:application/json;base64,',
        Base64.encode(
          bytes(
            abi.encodePacked(
              '{"name":"', tokenName(_tokenId), 
                '","description":"', description, 
                '","attributes":[', generateTraits(_tokenId), 
                '],"image":"data:image/svg+xml;base64,', 
                Base64.encode(image), 
              '"}')
          )
        )
      )
    );
  }

  function tokenName(uint256 _tokenId) internal view virtual returns(string memory) {
    return _tokenId.toString();
  }

  /**
   * For non-free minting,
   * 1. Override this method
   * 2. Check for the required payment, by calling mintPriceFor()
   * 3. Call the processPayout method of the asset provider with appropriate value
   */
  function mint() public virtual payable returns(uint256 tokenId) {
    require(nextTokenId < mintLimit, "Sold out");
    tokenId = nextTokenId++; 
    _safeMint(msg.sender, tokenId);
  }

  /**
   * The concreate contract may override to offer custom pricing,
   * such as token-gated discount. 
   */
  function mintPriceFor(address) public virtual view returns(uint256) {
    return mintPrice;
  }

  function totalSupply() public view returns (uint256) {
    return nextTokenId;
  }

  function generateTraits(uint256 _tokenId) internal view returns (bytes memory traits) {
    traits = bytes(assetProvider.generateTraits(_tokenId));
  }

  function debugTokenURI(uint256 _tokenId) public view returns (string memory uri, uint256 gas) {
    gas = gasleft();
    uri = tokenURI(_tokenId);
    gas -= gasleft();
  }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 5 of 16 : IAssetProvider.sol
// SPDX-License-Identifier: MIT

/**
 * This is a part of an effort to create a decentralized autonomous marketplace for digital assets,
 * which allows artists and developers to sell their arts and generative arts.
 *
 * Please see "https://fullyonchain.xyz/" for details. 
 *
 * Created by Satoshi Nakajima (@snakajima)
 */
pragma solidity ^0.8.6;

/**
 * IAssetProvider is the interface each asset provider implements.
 * We assume there are three types of asset providers.
 * 1. Static asset provider, which has a collection of assets (either in the storage or the code) and returns them.
 * 2. Generative provider, which dynamically (but deterministically from the seed) generates assets.
 * 3. Data visualizer, which generates assets based on various data on the blockchain.
 *
 * Note: Asset providers MUST implements IERC165 (supportsInterface method) as well. 
 */
interface IAssetProvider {
  struct ProviderInfo {
    string key;  // short and unique identifier of this provider (e.g., "asset")
    string name; // human readable display name (e.g., "Asset Store")
    IAssetProvider provider;
  }
  function getProviderInfo() external view returns(ProviderInfo memory);

  /**
   * This function returns SVGPart and the tag. The SVGPart consists of one or more SVG elements.
   * The tag specifies the identifier of the SVG element to be displayed (using <use> tag).
   * The tag is the combination of the provider key and assetId (e.e., "asset123")
   */
  function generateSVGPart(uint256 _assetId) external view returns(string memory svgPart, string memory tag);

  /**
   * This is an optional function, which returns various traits of the image for ERC721 token.
   * Format: {"trait_type":"TRAIL_TYPE","value":"VALUE"},{...}
   */
  function generateTraits(uint256 _assetId) external pure returns (string memory);
  
  /**
   * This function returns the number of assets available from this provider. 
   * If the total supply is 100, assetIds of available assets are 0,1,...99.
   * The generative providers may returns 0, which indicates the provider dynamically but
   * deterministically generates assets using the given assetId as the random seed.
   */
  function totalSupply() external view returns(uint256);

  /**
   * Returns the onwer. The registration update is possible only if both contracts have the same owner. 
   */
  function getOwner() external view returns (address);

  /**
   * This function processes the royalty payment from the decentralized autonomous marketplace. 
   */
  function processPayout(uint256 _assetId) external payable;

  event Payout(string providerKey, uint256 assetId, address payable to, uint256 amount);
}

File 6 of 16 : IProxyRegistry.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.6;

interface IProxyRegistry {
    function proxies(address) external view returns (address);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

File 9 of 16 : base64.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0;

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides functions for encoding/decoding base64
library Base64 {
    string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
    bytes  internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000"
                                            hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000"
                                            hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000"
                                            hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000";

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE_ENCODE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
                // read 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // write 4 characters
                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(        input,  0x3F))))
                resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }

        return result;
    }

    function decode(string memory _data) internal pure returns (bytes memory) {
        bytes memory data = bytes(_data);

        if (data.length == 0) return new bytes(0);
        require(data.length % 4 == 0, "invalid base64 decoder input");

        // load the table into memory
        bytes memory table = TABLE_DECODE;

        // every 4 characters represent 3 bytes
        uint256 decodedLen = (data.length / 4) * 3;

        // add some extra buffer at the end required for the writing
        bytes memory result = new bytes(decodedLen + 32);

        assembly {
            // padding with '='
            let lastBytes := mload(add(data, mload(data)))
            if eq(and(lastBytes, 0xFF), 0x3d) {
                decodedLen := sub(decodedLen, 1)
                if eq(and(lastBytes, 0xFFFF), 0x3d3d) {
                    decodedLen := sub(decodedLen, 1)
                }
            }

            // set the actual output length
            mstore(result, decodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 4 characters at a time
            for {} lt(dataPtr, endPtr) {}
            {
               // read 4 characters
               dataPtr := add(dataPtr, 4)
               let input := mload(dataPtr)

               // write 3 bytes
               let output := add(
                   add(
                       shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)),
                       shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))),
                   add(
                       shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)),
                               and(mload(add(tablePtr, and(        input , 0xFF))), 0xFF)
                    )
                )
                mstore(resultPtr, shl(232, output))
                resultPtr := add(resultPtr, 3)
            }
        }

        return result;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract ITokenGate","name":"_tokenGate","type":"address"},{"internalType":"contract IAssetProvider","name":"_assetProvider","type":"address"},{"internalType":"contract IProxyRegistry","name":"_proxyRegistry","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"assetProvider","outputs":[{"internalType":"contract IAssetProvider","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"debugTokenURI","outputs":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"gas","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"description","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"mintPriceFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistry","outputs":[{"internalType":"contract IProxyRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_description","type":"string"}],"name":"setDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040523480156200001157600080fd5b50604051620048c0380380620048c08339818101604052810190620000379190620003ab565b81816040518060400160405280601181526020017f4f6e2d436861696e2053706c61747465720000000000000000000000000000008152506040518060400160405280600881526020017f53504c41545445520000000000000000000000000000000000000000000000008152508181620000c7620000bb620001d760201b60201c565b620001df60201b60201c565b8160019081620000d8919062000681565b508060029081620000ea919062000681565b5050508373ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050505050508273ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250506040518060c00160405280608a815260200162004836608a913960089081620001b7919062000681565b50662386f26fc1000060098190555060fa600a8190555050505062000768565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620002d582620002a8565b9050919050565b6000620002e982620002c8565b9050919050565b620002fb81620002dc565b81146200030757600080fd5b50565b6000815190506200031b81620002f0565b92915050565b60006200032e82620002c8565b9050919050565b620003408162000321565b81146200034c57600080fd5b50565b600081519050620003608162000335565b92915050565b60006200037382620002c8565b9050919050565b620003858162000366565b81146200039157600080fd5b50565b600081519050620003a5816200037a565b92915050565b600080600060608486031215620003c757620003c6620002a3565b5b6000620003d7868287016200030a565b9350506020620003ea868287016200034f565b9250506040620003fd8682870162000394565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200048957607f821691505b6020821081036200049f576200049e62000441565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005097fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004ca565b620005158683620004ca565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005626200055c62000556846200052d565b62000537565b6200052d565b9050919050565b6000819050919050565b6200057e8362000541565b620005966200058d8262000569565b848454620004d7565b825550505050565b600090565b620005ad6200059e565b620005ba81848462000573565b505050565b5b81811015620005e257620005d6600082620005a3565b600181019050620005c0565b5050565b601f8211156200063157620005fb81620004a5565b6200060684620004ba565b8101602085101562000616578190505b6200062e6200062585620004ba565b830182620005bf565b50505b505050565b600082821c905092915050565b6000620006566000198460080262000636565b1980831691505092915050565b600062000671838362000643565b9150826002028217905092915050565b6200068c8262000407565b67ffffffffffffffff811115620006a857620006a762000412565b5b620006b4825462000470565b620006c1828285620005e6565b600060209050601f831160018114620006f95760008415620006e4578287015190505b620006f0858262000663565b86555062000760565b601f1984166200070986620004a5565b60005b8281101562000733578489015182556001820191506020850194506020810190506200070c565b868310156200075357848901516200074f601f89168262000643565b8355505b6001600288020188555050505b505050505050565b60805160a05160c051614082620007b46000396000610b06015260008181610a7401528181610f6b01528181611ad80152611bf3015260008181610f8f015261111801526140826000f3fe6080604052600436106101c25760003560e01c806375794a3c116100f7578063a370f7d711610095578063cc44ab4111610064578063cc44ab4114610637578063e985e9c514610675578063f2fde38b146106b2578063f4a0a528146106db576101c2565b8063a370f7d71461057b578063b50cbd9f146105a6578063b88d4fde146105d1578063c87b56dd146105fa576101c2565b806395d89b41116100d157806395d89b41146104d3578063996517cf146104fe5780639e6a1d7d14610529578063a22cb46514610552576101c2565b806375794a3c146104545780638da5cb5b1461047f57806390c3f38f146104aa576101c2565b806323b872dd116101645780636817c76c1161013e5780636817c76c146103aa57806370a08231146103d5578063715018a6146104125780637284e41614610429576101c2565b806323b872dd1461031b57806342842e0e146103445780636352211e1461036d576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780631249c58b146102955780631346d8ea146102b357806318160ddd146102f0576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612475565b610704565b6040516101fb91906124bd565b60405180910390f35b34801561021057600080fd5b506102196107e6565b6040516102269190612568565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906125c0565b610878565b604051610263919061262e565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612675565b6108be565b005b61029d6109d5565b6040516102aa91906126c4565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906126df565b610b01565b6040516102e791906126c4565b60405180910390f35b3480156102fc57600080fd5b50610305610bc5565b60405161031291906126c4565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d919061270c565b610bcf565b005b34801561035057600080fd5b5061036b6004803603810190610366919061270c565b610c2f565b005b34801561037957600080fd5b50610394600480360381019061038f91906125c0565b610c4f565b6040516103a1919061262e565b60405180910390f35b3480156103b657600080fd5b506103bf610d00565b6040516103cc91906126c4565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f791906126df565b610d06565b60405161040991906126c4565b60405180910390f35b34801561041e57600080fd5b50610427610dbd565b005b34801561043557600080fd5b5061043e610dd1565b60405161044b9190612568565b60405180910390f35b34801561046057600080fd5b50610469610e5f565b60405161047691906126c4565b60405180910390f35b34801561048b57600080fd5b50610494610e65565b6040516104a1919061262e565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190612894565b610e8e565b005b3480156104df57600080fd5b506104e8610ea9565b6040516104f59190612568565b60405180910390f35b34801561050a57600080fd5b50610513610f3b565b60405161052091906126c4565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b91906125c0565b610f41565b005b34801561055e57600080fd5b5061057960048036038101906105749190612909565b610f53565b005b34801561058757600080fd5b50610590610f69565b60405161059d91906129a8565b60405180910390f35b3480156105b257600080fd5b506105bb610f8d565b6040516105c891906129e4565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190612aa0565b610fb1565b005b34801561060657600080fd5b50610621600480360381019061061c91906125c0565b611013565b60405161062e9190612568565b60405180910390f35b34801561064357600080fd5b5061065e600480360381019061065991906125c0565b6110d8565b60405161066c929190612b23565b60405180910390f35b34801561068157600080fd5b5061069c60048036038101906106979190612b53565b6110fd565b6040516106a991906124bd565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d491906126df565b6111e7565b005b3480156106e757600080fd5b5061070260048036038101906106fd91906125c0565b61126a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107cf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107df57506107de8261127c565b5b9050919050565b6060600180546107f590612bc2565b80601f016020809104026020016040519081016040528092919081815260200182805461082190612bc2565b801561086e5780601f106108435761010080835404028352916020019161086e565b820191906000526020600020905b81548152906001019060200180831161085157829003601f168201915b5050505050905090565b6000610883826112e6565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c982610c4f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093090612c65565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610958611331565b73ffffffffffffffffffffffffffffffffffffffff161480610987575061098681610981611331565b6110fd565b5b6109c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bd90612cf7565b60405180910390fd5b6109d08383611339565b505050565b60006103e860075410610a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1490612d63565b60405180910390fd5b610a2633610b01565b341015610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f90612dcf565b60405180910390fd5b610a706113f2565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166389ee68bf34836040518363ffffffff1660e01b8152600401610acc91906126c4565b6000604051808303818588803b158015610ae557600080fd5b505af1158015610af9573d6000803e3d6000fd5b505050505090565b6000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401610b5d919061262e565b602060405180830381865afa158015610b7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9e9190612e04565b1115610bba576002600954610bb39190612e8f565b9050610bc0565b60095490505b919050565b6000600754905090565b610be0610bda611331565b82611460565b610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1690612f32565b60405180910390fd5b610c2a8383836114f5565b505050565b610c4a83838360405180602001604052806000815250610fb1565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cee90612f9e565b60405180910390fd5b80915050919050565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90613030565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dc561175b565b610dcf60006117d9565b565b60088054610dde90612bc2565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0a90612bc2565b8015610e575780601f10610e2c57610100808354040283529160200191610e57565b820191906000526020600020905b815481529060010190602001808311610e3a57829003601f168201915b505050505081565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e9661175b565b8060089081610ea591906131f2565b5050565b606060028054610eb890612bc2565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee490612bc2565b8015610f315780601f10610f0657610100808354040283529160200191610f31565b820191906000526020600020905b815481529060010190602001808311610f1457829003601f168201915b5050505050905090565b600a5481565b610f4961175b565b80600a8190555050565b610f65610f5e611331565b838361189d565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b610fc2610fbc611331565b83611460565b611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890612f32565b60405180910390fd5b61100d84848484611a09565b50505050565b606061101e82611a65565b61105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490613336565b60405180910390fd5b600061106883611ad1565b90506110b161107684611bbe565b600861108186611bef565b61108a85611c97565b60405160200161109d94939291906135fe565b604051602081830303815290604052611c97565b6040516020016110c191906136bf565b604051602081830303815290604052915050919050565b606060005a90506110e883611013565b91505a816110f691906136e1565b9050915091565b60008173ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c4552791856040518263ffffffff1660e01b815260040161116f919061262e565b602060405180830381865afa15801561118c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b0919061372a565b73ffffffffffffffffffffffffffffffffffffffff16036111d457600190506111e1565b6111de8383611e0f565b90505b92915050565b6111ef61175b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361125e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611255906137c9565b60405180910390fd5b611267816117d9565b50565b61127261175b565b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6112ef81611a65565b61132e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132590612f9e565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113ac83610c4f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600a546007541061143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143190612d63565b60405180910390fd5b6007600081548092919061144d906137e9565b91905055905061145d3382611ea3565b90565b60008061146c83610c4f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114ae57506114ad81856110fd565b5b806114ec57508373ffffffffffffffffffffffffffffffffffffffff166114d484610878565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661151582610c4f565b73ffffffffffffffffffffffffffffffffffffffff161461156b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611562906138a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d190613935565b60405180910390fd5b6115e5838383611ec1565b6115f0600082611339565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461164091906136e1565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116979190613955565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611756838383611ec6565b505050565b611763611331565b73ffffffffffffffffffffffffffffffffffffffff16611781610e65565b73ffffffffffffffffffffffffffffffffffffffff16146117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce906139d5565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361190b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190290613a41565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119fc91906124bd565b60405180910390a3505050565b611a148484846114f5565b611a2084848484611ecb565b611a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5690613ad3565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e3f24f02856040518263ffffffff1660e01b8152600401611b2f91906126c4565b600060405180830381865afa158015611b4c573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611b759190613b63565b91509150604051806080016040528060498152602001614004604991398282604051602001611ba693929190613c73565b60405160208183030381529060405292505050919050565b6060611bc982612052565b604051602001611bd99190613d06565b6040516020818303038152906040529050919050565b60607f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166379b92f27836040518263ffffffff1660e01b8152600401611c4a91906126c4565b600060405180830381865afa158015611c67573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611c909190613d28565b9050919050565b60606000825103611cb957604051806020016040528060008152509050611e0a565b6000604051806060016040528060408152602001613fc46040913990506000600360028551611ce89190613955565b611cf29190612e8f565b6004611cfe9190613d71565b90506000602082611d0f9190613955565b67ffffffffffffffff811115611d2857611d27612769565b5b6040519080825280601f01601f191660200182016040528015611d5a5781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015611dc9576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825360018201915050611d6e565b600389510660018114611de35760028114611df357611dfe565b613d3d60f01b6002830352611dfe565b603d60f81b60018303525b50505050508093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ebd8282604051806020016040528060008152506121b2565b5050565b505050565b505050565b6000611eec8473ffffffffffffffffffffffffffffffffffffffff1661220d565b15612045578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f15611331565b8786866040518563ffffffff1660e01b8152600401611f379493929190613dfd565b6020604051808303816000875af1925050508015611f7357506040513d601f19601f82011682018060405250810190611f709190613e5e565b60015b611ff5573d8060008114611fa3576040519150601f19603f3d011682016040523d82523d6000602084013e611fa8565b606091505b506000815103611fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe490613ad3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061204a565b600190505b949350505050565b606060008203612099576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121ad565b600082905060005b600082146120cb5780806120b4906137e9565b915050600a826120c49190612e8f565b91506120a1565b60008167ffffffffffffffff8111156120e7576120e6612769565b5b6040519080825280601f01601f1916602001820160405280156121195781602001600182028036833780820191505090505b5090505b600085146121a65760018261213291906136e1565b9150600a856121419190613e8b565b603061214d9190613955565b60f81b81838151811061216357612162613ebc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561219f9190612e8f565b945061211d565b8093505050505b919050565b6121bc8383612230565b6121c96000848484611ecb565b612208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ff90613ad3565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361229f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229690613f37565b60405180910390fd5b6122a881611a65565b156122e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122df90613fa3565b60405180910390fd5b6122f460008383611ec1565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123449190613955565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461240560008383611ec6565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124528161241d565b811461245d57600080fd5b50565b60008135905061246f81612449565b92915050565b60006020828403121561248b5761248a612413565b5b600061249984828501612460565b91505092915050565b60008115159050919050565b6124b7816124a2565b82525050565b60006020820190506124d260008301846124ae565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125125780820151818401526020810190506124f7565b60008484015250505050565b6000601f19601f8301169050919050565b600061253a826124d8565b61254481856124e3565b93506125548185602086016124f4565b61255d8161251e565b840191505092915050565b60006020820190508181036000830152612582818461252f565b905092915050565b6000819050919050565b61259d8161258a565b81146125a857600080fd5b50565b6000813590506125ba81612594565b92915050565b6000602082840312156125d6576125d5612413565b5b60006125e4848285016125ab565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612618826125ed565b9050919050565b6126288161260d565b82525050565b6000602082019050612643600083018461261f565b92915050565b6126528161260d565b811461265d57600080fd5b50565b60008135905061266f81612649565b92915050565b6000806040838503121561268c5761268b612413565b5b600061269a85828601612660565b92505060206126ab858286016125ab565b9150509250929050565b6126be8161258a565b82525050565b60006020820190506126d960008301846126b5565b92915050565b6000602082840312156126f5576126f4612413565b5b600061270384828501612660565b91505092915050565b60008060006060848603121561272557612724612413565b5b600061273386828701612660565b935050602061274486828701612660565b9250506040612755868287016125ab565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127a18261251e565b810181811067ffffffffffffffff821117156127c0576127bf612769565b5b80604052505050565b60006127d3612409565b90506127df8282612798565b919050565b600067ffffffffffffffff8211156127ff576127fe612769565b5b6128088261251e565b9050602081019050919050565b82818337600083830152505050565b6000612837612832846127e4565b6127c9565b90508281526020810184848401111561285357612852612764565b5b61285e848285612815565b509392505050565b600082601f83011261287b5761287a61275f565b5b813561288b848260208601612824565b91505092915050565b6000602082840312156128aa576128a9612413565b5b600082013567ffffffffffffffff8111156128c8576128c7612418565b5b6128d484828501612866565b91505092915050565b6128e6816124a2565b81146128f157600080fd5b50565b600081359050612903816128dd565b92915050565b600080604083850312156129205761291f612413565b5b600061292e85828601612660565b925050602061293f858286016128f4565b9150509250929050565b6000819050919050565b600061296e612969612964846125ed565b612949565b6125ed565b9050919050565b600061298082612953565b9050919050565b600061299282612975565b9050919050565b6129a281612987565b82525050565b60006020820190506129bd6000830184612999565b92915050565b60006129ce82612975565b9050919050565b6129de816129c3565b82525050565b60006020820190506129f960008301846129d5565b92915050565b600067ffffffffffffffff821115612a1a57612a19612769565b5b612a238261251e565b9050602081019050919050565b6000612a43612a3e846129ff565b6127c9565b905082815260208101848484011115612a5f57612a5e612764565b5b612a6a848285612815565b509392505050565b600082601f830112612a8757612a8661275f565b5b8135612a97848260208601612a30565b91505092915050565b60008060008060808587031215612aba57612ab9612413565b5b6000612ac887828801612660565b9450506020612ad987828801612660565b9350506040612aea878288016125ab565b925050606085013567ffffffffffffffff811115612b0b57612b0a612418565b5b612b1787828801612a72565b91505092959194509250565b60006040820190508181036000830152612b3d818561252f565b9050612b4c60208301846126b5565b9392505050565b60008060408385031215612b6a57612b69612413565b5b6000612b7885828601612660565b9250506020612b8985828601612660565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bda57607f821691505b602082108103612bed57612bec612b93565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c4f6021836124e3565b9150612c5a82612bf3565b604082019050919050565b60006020820190508181036000830152612c7e81612c42565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612ce1603e836124e3565b9150612cec82612c85565b604082019050919050565b60006020820190508181036000830152612d1081612cd4565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000612d4d6008836124e3565b9150612d5882612d17565b602082019050919050565b60006020820190508181036000830152612d7c81612d40565b9050919050565b7f4d7573742073656e6420746865206d696e742070726963650000000000000000600082015250565b6000612db96018836124e3565b9150612dc482612d83565b602082019050919050565b60006020820190508181036000830152612de881612dac565b9050919050565b600081519050612dfe81612594565b92915050565b600060208284031215612e1a57612e19612413565b5b6000612e2884828501612def565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e9a8261258a565b9150612ea58361258a565b925082612eb557612eb4612e31565b5b828204905092915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612f1c602e836124e3565b9150612f2782612ec0565b604082019050919050565b60006020820190508181036000830152612f4b81612f0f565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612f886018836124e3565b9150612f9382612f52565b602082019050919050565b60006020820190508181036000830152612fb781612f7b565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061301a6029836124e3565b915061302582612fbe565b604082019050919050565b600060208201905081810360008301526130498161300d565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130b27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613075565b6130bc8683613075565b95508019841693508086168417925050509392505050565b60006130ef6130ea6130e58461258a565b612949565b61258a565b9050919050565b6000819050919050565b613109836130d4565b61311d613115826130f6565b848454613082565b825550505050565b600090565b613132613125565b61313d818484613100565b505050565b5b818110156131615761315660008261312a565b600181019050613143565b5050565b601f8211156131a65761317781613050565b61318084613065565b8101602085101561318f578190505b6131a361319b85613065565b830182613142565b50505b505050565b600082821c905092915050565b60006131c9600019846008026131ab565b1980831691505092915050565b60006131e283836131b8565b9150826002028217905092915050565b6131fb826124d8565b67ffffffffffffffff81111561321457613213612769565b5b61321e8254612bc2565b613229828285613165565b600060209050601f83116001811461325c576000841561324a578287015190505b61325485826131d6565b8655506132bc565b601f19841661326a86613050565b60005b828110156132925784890151825560018201915060208501945060208101905061326d565b868310156132af57848901516132ab601f8916826131b8565b8355505b6001600288020188555050505b505050505050565b7f50726f7669646572546f6b656e2e746f6b656e5552493a206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006133206029836124e3565b915061332b826132c4565b604082019050919050565b6000602082019050818103600083015261334f81613313565b9050919050565b600081905092915050565b7f7b226e616d65223a220000000000000000000000000000000000000000000000600082015250565b6000613397600983613356565b91506133a282613361565b600982019050919050565b60006133b8826124d8565b6133c28185613356565b93506133d28185602086016124f4565b80840191505092915050565b7f222c226465736372697074696f6e223a22000000000000000000000000000000600082015250565b6000613414601183613356565b915061341f826133de565b601182019050919050565b6000815461343781612bc2565b6134418186613356565b9450600182166000811461345c5760018114613471576134a4565b60ff19831686528115158202860193506134a4565b61347a85613050565b60005b8381101561349c5781548189015260018201915060208101905061347d565b838801955050505b50505092915050565b7f222c2261747472696275746573223a5b00000000000000000000000000000000600082015250565b60006134e3601083613356565b91506134ee826134ad565b601082019050919050565b600081519050919050565b600081905092915050565b600061351a826134f9565b6135248185613504565b93506135348185602086016124f4565b80840191505092915050565b7f5d2c22696d616765223a22646174613a696d6167652f7376672b786d6c3b626160008201527f736536342c000000000000000000000000000000000000000000000000000000602082015250565b600061359c602583613356565b91506135a782613540565b602582019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b60006135e8600283613356565b91506135f3826135b2565b600282019050919050565b60006136098261338a565b915061361582876133ad565b915061362082613407565b915061362c828661342a565b9150613637826134d6565b9150613643828561350f565b915061364e8261358f565b915061365a82846133ad565b9150613665826135db565b915081905095945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b60006136a9601d83613356565b91506136b482613673565b601d82019050919050565b60006136ca8261369c565b91506136d682846133ad565b915081905092915050565b60006136ec8261258a565b91506136f78361258a565b925082820390508181111561370f5761370e612e60565b5b92915050565b60008151905061372481612649565b92915050565b6000602082840312156137405761373f612413565b5b600061374e84828501613715565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137b36026836124e3565b91506137be82613757565b604082019050919050565b600060208201905081810360008301526137e2816137a6565b9050919050565b60006137f48261258a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361382657613825612e60565b5b600182019050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061388d6025836124e3565b915061389882613831565b604082019050919050565b600060208201905081810360008301526138bc81613880565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061391f6024836124e3565b915061392a826138c3565b604082019050919050565b6000602082019050818103600083015261394e81613912565b9050919050565b60006139608261258a565b915061396b8361258a565b925082820190508082111561398357613982612e60565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139bf6020836124e3565b91506139ca82613989565b602082019050919050565b600060208201905081810360008301526139ee816139b2565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613a2b6019836124e3565b9150613a36826139f5565b602082019050919050565b60006020820190508181036000830152613a5a81613a1e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613abd6032836124e3565b9150613ac882613a61565b604082019050919050565b60006020820190508181036000830152613aec81613ab0565b9050919050565b6000613b06613b01846127e4565b6127c9565b905082815260208101848484011115613b2257613b21612764565b5b613b2d8482856124f4565b509392505050565b600082601f830112613b4a57613b4961275f565b5b8151613b5a848260208601613af3565b91505092915050565b60008060408385031215613b7a57613b79612413565b5b600083015167ffffffffffffffff811115613b9857613b97612418565b5b613ba485828601613b35565b925050602083015167ffffffffffffffff811115613bc557613bc4612418565b5b613bd185828601613b35565b9150509250929050565b7f3c2f646566733e0a3c75736520687265663d2223000000000000000000000000600082015250565b6000613c11601483613356565b9150613c1c82613bdb565b601482019050919050565b7f22202f3e0a3c2f7376673e0a0000000000000000000000000000000000000000600082015250565b6000613c5d600c83613356565b9150613c6882613c27565b600c82019050919050565b6000613c7f82866133ad565b9150613c8b82856133ad565b9150613c9682613c04565b9150613ca282846133ad565b9150613cad82613c50565b9150819050949350505050565b7f53706c6174746572200000000000000000000000000000000000000000000000600082015250565b6000613cf0600983613356565b9150613cfb82613cba565b600982019050919050565b6000613d1182613ce3565b9150613d1d82846133ad565b915081905092915050565b600060208284031215613d3e57613d3d612413565b5b600082015167ffffffffffffffff811115613d5c57613d5b612418565b5b613d6884828501613b35565b91505092915050565b6000613d7c8261258a565b9150613d878361258a565b9250828202613d958161258a565b91508282048414831517613dac57613dab612e60565b5b5092915050565b600082825260208201905092915050565b6000613dcf826134f9565b613dd98185613db3565b9350613de98185602086016124f4565b613df28161251e565b840191505092915050565b6000608082019050613e12600083018761261f565b613e1f602083018661261f565b613e2c60408301856126b5565b8181036060830152613e3e8184613dc4565b905095945050505050565b600081519050613e5881612449565b92915050565b600060208284031215613e7457613e73612413565b5b6000613e8284828501613e49565b91505092915050565b6000613e968261258a565b9150613ea18361258a565b925082613eb157613eb0612e31565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613f216020836124e3565b9150613f2c82613eeb565b602082019050919050565b60006020820190508181036000830152613f5081613f14565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613f8d601c836124e3565b9150613f9882613f57565b602082019050919050565b60006020820190508181036000830152613fbc81613f80565b905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c7376672076696577426f783d2230203020313032342031303234222020786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e0a3c646566733e0aa2646970667358221220304b81acf976f3d6a562d482288e1804c94bf338ba97b4154101fe86e161b56764736f6c634300081100335468697320697320612070617274206f662046756c6c79204f6e2d636861696e2047656e65726174697665204172742070726f6a656374202868747470733a2f2f66756c6c796f6e636861696e2e78797a2f292e20416c6c20696d61676573206172652064796d6963616c6c792067656e657261746564206f6e2074686520626c6f636b636861696e2e000000000000000000000000ede1a69db77c4cba8d15f9170568959a56ce9c05000000000000000000000000b6260e3b97668dca728d50f4f25c9f824d7bf406000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806375794a3c116100f7578063a370f7d711610095578063cc44ab4111610064578063cc44ab4114610637578063e985e9c514610675578063f2fde38b146106b2578063f4a0a528146106db576101c2565b8063a370f7d71461057b578063b50cbd9f146105a6578063b88d4fde146105d1578063c87b56dd146105fa576101c2565b806395d89b41116100d157806395d89b41146104d3578063996517cf146104fe5780639e6a1d7d14610529578063a22cb46514610552576101c2565b806375794a3c146104545780638da5cb5b1461047f57806390c3f38f146104aa576101c2565b806323b872dd116101645780636817c76c1161013e5780636817c76c146103aa57806370a08231146103d5578063715018a6146104125780637284e41614610429576101c2565b806323b872dd1461031b57806342842e0e146103445780636352211e1461036d576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780631249c58b146102955780631346d8ea146102b357806318160ddd146102f0576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612475565b610704565b6040516101fb91906124bd565b60405180910390f35b34801561021057600080fd5b506102196107e6565b6040516102269190612568565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906125c0565b610878565b604051610263919061262e565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612675565b6108be565b005b61029d6109d5565b6040516102aa91906126c4565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906126df565b610b01565b6040516102e791906126c4565b60405180910390f35b3480156102fc57600080fd5b50610305610bc5565b60405161031291906126c4565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d919061270c565b610bcf565b005b34801561035057600080fd5b5061036b6004803603810190610366919061270c565b610c2f565b005b34801561037957600080fd5b50610394600480360381019061038f91906125c0565b610c4f565b6040516103a1919061262e565b60405180910390f35b3480156103b657600080fd5b506103bf610d00565b6040516103cc91906126c4565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f791906126df565b610d06565b60405161040991906126c4565b60405180910390f35b34801561041e57600080fd5b50610427610dbd565b005b34801561043557600080fd5b5061043e610dd1565b60405161044b9190612568565b60405180910390f35b34801561046057600080fd5b50610469610e5f565b60405161047691906126c4565b60405180910390f35b34801561048b57600080fd5b50610494610e65565b6040516104a1919061262e565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190612894565b610e8e565b005b3480156104df57600080fd5b506104e8610ea9565b6040516104f59190612568565b60405180910390f35b34801561050a57600080fd5b50610513610f3b565b60405161052091906126c4565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b91906125c0565b610f41565b005b34801561055e57600080fd5b5061057960048036038101906105749190612909565b610f53565b005b34801561058757600080fd5b50610590610f69565b60405161059d91906129a8565b60405180910390f35b3480156105b257600080fd5b506105bb610f8d565b6040516105c891906129e4565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190612aa0565b610fb1565b005b34801561060657600080fd5b50610621600480360381019061061c91906125c0565b611013565b60405161062e9190612568565b60405180910390f35b34801561064357600080fd5b5061065e600480360381019061065991906125c0565b6110d8565b60405161066c929190612b23565b60405180910390f35b34801561068157600080fd5b5061069c60048036038101906106979190612b53565b6110fd565b6040516106a991906124bd565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d491906126df565b6111e7565b005b3480156106e757600080fd5b5061070260048036038101906106fd91906125c0565b61126a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107cf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107df57506107de8261127c565b5b9050919050565b6060600180546107f590612bc2565b80601f016020809104026020016040519081016040528092919081815260200182805461082190612bc2565b801561086e5780601f106108435761010080835404028352916020019161086e565b820191906000526020600020905b81548152906001019060200180831161085157829003601f168201915b5050505050905090565b6000610883826112e6565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c982610c4f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093090612c65565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610958611331565b73ffffffffffffffffffffffffffffffffffffffff161480610987575061098681610981611331565b6110fd565b5b6109c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bd90612cf7565b60405180910390fd5b6109d08383611339565b505050565b60006103e860075410610a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1490612d63565b60405180910390fd5b610a2633610b01565b341015610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f90612dcf565b60405180910390fd5b610a706113f2565b90507f000000000000000000000000b6260e3b97668dca728d50f4f25c9f824d7bf40673ffffffffffffffffffffffffffffffffffffffff166389ee68bf34836040518363ffffffff1660e01b8152600401610acc91906126c4565b6000604051808303818588803b158015610ae557600080fd5b505af1158015610af9573d6000803e3d6000fd5b505050505090565b6000807f000000000000000000000000ede1a69db77c4cba8d15f9170568959a56ce9c0573ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401610b5d919061262e565b602060405180830381865afa158015610b7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9e9190612e04565b1115610bba576002600954610bb39190612e8f565b9050610bc0565b60095490505b919050565b6000600754905090565b610be0610bda611331565b82611460565b610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1690612f32565b60405180910390fd5b610c2a8383836114f5565b505050565b610c4a83838360405180602001604052806000815250610fb1565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cee90612f9e565b60405180910390fd5b80915050919050565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90613030565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dc561175b565b610dcf60006117d9565b565b60088054610dde90612bc2565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0a90612bc2565b8015610e575780601f10610e2c57610100808354040283529160200191610e57565b820191906000526020600020905b815481529060010190602001808311610e3a57829003601f168201915b505050505081565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e9661175b565b8060089081610ea591906131f2565b5050565b606060028054610eb890612bc2565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee490612bc2565b8015610f315780601f10610f0657610100808354040283529160200191610f31565b820191906000526020600020905b815481529060010190602001808311610f1457829003601f168201915b5050505050905090565b600a5481565b610f4961175b565b80600a8190555050565b610f65610f5e611331565b838361189d565b5050565b7f000000000000000000000000b6260e3b97668dca728d50f4f25c9f824d7bf40681565b7f000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c181565b610fc2610fbc611331565b83611460565b611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890612f32565b60405180910390fd5b61100d84848484611a09565b50505050565b606061101e82611a65565b61105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490613336565b60405180910390fd5b600061106883611ad1565b90506110b161107684611bbe565b600861108186611bef565b61108a85611c97565b60405160200161109d94939291906135fe565b604051602081830303815290604052611c97565b6040516020016110c191906136bf565b604051602081830303815290604052915050919050565b606060005a90506110e883611013565b91505a816110f691906136e1565b9050915091565b60008173ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c173ffffffffffffffffffffffffffffffffffffffff1663c4552791856040518263ffffffff1660e01b815260040161116f919061262e565b602060405180830381865afa15801561118c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b0919061372a565b73ffffffffffffffffffffffffffffffffffffffff16036111d457600190506111e1565b6111de8383611e0f565b90505b92915050565b6111ef61175b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361125e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611255906137c9565b60405180910390fd5b611267816117d9565b50565b61127261175b565b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6112ef81611a65565b61132e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132590612f9e565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113ac83610c4f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600a546007541061143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143190612d63565b60405180910390fd5b6007600081548092919061144d906137e9565b91905055905061145d3382611ea3565b90565b60008061146c83610c4f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114ae57506114ad81856110fd565b5b806114ec57508373ffffffffffffffffffffffffffffffffffffffff166114d484610878565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661151582610c4f565b73ffffffffffffffffffffffffffffffffffffffff161461156b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611562906138a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d190613935565b60405180910390fd5b6115e5838383611ec1565b6115f0600082611339565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461164091906136e1565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116979190613955565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611756838383611ec6565b505050565b611763611331565b73ffffffffffffffffffffffffffffffffffffffff16611781610e65565b73ffffffffffffffffffffffffffffffffffffffff16146117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce906139d5565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361190b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190290613a41565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119fc91906124bd565b60405180910390a3505050565b611a148484846114f5565b611a2084848484611ecb565b611a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5690613ad3565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000807f000000000000000000000000b6260e3b97668dca728d50f4f25c9f824d7bf40673ffffffffffffffffffffffffffffffffffffffff1663e3f24f02856040518263ffffffff1660e01b8152600401611b2f91906126c4565b600060405180830381865afa158015611b4c573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611b759190613b63565b91509150604051806080016040528060498152602001614004604991398282604051602001611ba693929190613c73565b60405160208183030381529060405292505050919050565b6060611bc982612052565b604051602001611bd99190613d06565b6040516020818303038152906040529050919050565b60607f000000000000000000000000b6260e3b97668dca728d50f4f25c9f824d7bf40673ffffffffffffffffffffffffffffffffffffffff166379b92f27836040518263ffffffff1660e01b8152600401611c4a91906126c4565b600060405180830381865afa158015611c67573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611c909190613d28565b9050919050565b60606000825103611cb957604051806020016040528060008152509050611e0a565b6000604051806060016040528060408152602001613fc46040913990506000600360028551611ce89190613955565b611cf29190612e8f565b6004611cfe9190613d71565b90506000602082611d0f9190613955565b67ffffffffffffffff811115611d2857611d27612769565b5b6040519080825280601f01601f191660200182016040528015611d5a5781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015611dc9576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825360018201915050611d6e565b600389510660018114611de35760028114611df357611dfe565b613d3d60f01b6002830352611dfe565b603d60f81b60018303525b50505050508093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ebd8282604051806020016040528060008152506121b2565b5050565b505050565b505050565b6000611eec8473ffffffffffffffffffffffffffffffffffffffff1661220d565b15612045578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f15611331565b8786866040518563ffffffff1660e01b8152600401611f379493929190613dfd565b6020604051808303816000875af1925050508015611f7357506040513d601f19601f82011682018060405250810190611f709190613e5e565b60015b611ff5573d8060008114611fa3576040519150601f19603f3d011682016040523d82523d6000602084013e611fa8565b606091505b506000815103611fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe490613ad3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061204a565b600190505b949350505050565b606060008203612099576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121ad565b600082905060005b600082146120cb5780806120b4906137e9565b915050600a826120c49190612e8f565b91506120a1565b60008167ffffffffffffffff8111156120e7576120e6612769565b5b6040519080825280601f01601f1916602001820160405280156121195781602001600182028036833780820191505090505b5090505b600085146121a65760018261213291906136e1565b9150600a856121419190613e8b565b603061214d9190613955565b60f81b81838151811061216357612162613ebc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561219f9190612e8f565b945061211d565b8093505050505b919050565b6121bc8383612230565b6121c96000848484611ecb565b612208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ff90613ad3565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361229f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229690613f37565b60405180910390fd5b6122a881611a65565b156122e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122df90613fa3565b60405180910390fd5b6122f460008383611ec1565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123449190613955565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461240560008383611ec6565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124528161241d565b811461245d57600080fd5b50565b60008135905061246f81612449565b92915050565b60006020828403121561248b5761248a612413565b5b600061249984828501612460565b91505092915050565b60008115159050919050565b6124b7816124a2565b82525050565b60006020820190506124d260008301846124ae565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125125780820151818401526020810190506124f7565b60008484015250505050565b6000601f19601f8301169050919050565b600061253a826124d8565b61254481856124e3565b93506125548185602086016124f4565b61255d8161251e565b840191505092915050565b60006020820190508181036000830152612582818461252f565b905092915050565b6000819050919050565b61259d8161258a565b81146125a857600080fd5b50565b6000813590506125ba81612594565b92915050565b6000602082840312156125d6576125d5612413565b5b60006125e4848285016125ab565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612618826125ed565b9050919050565b6126288161260d565b82525050565b6000602082019050612643600083018461261f565b92915050565b6126528161260d565b811461265d57600080fd5b50565b60008135905061266f81612649565b92915050565b6000806040838503121561268c5761268b612413565b5b600061269a85828601612660565b92505060206126ab858286016125ab565b9150509250929050565b6126be8161258a565b82525050565b60006020820190506126d960008301846126b5565b92915050565b6000602082840312156126f5576126f4612413565b5b600061270384828501612660565b91505092915050565b60008060006060848603121561272557612724612413565b5b600061273386828701612660565b935050602061274486828701612660565b9250506040612755868287016125ab565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127a18261251e565b810181811067ffffffffffffffff821117156127c0576127bf612769565b5b80604052505050565b60006127d3612409565b90506127df8282612798565b919050565b600067ffffffffffffffff8211156127ff576127fe612769565b5b6128088261251e565b9050602081019050919050565b82818337600083830152505050565b6000612837612832846127e4565b6127c9565b90508281526020810184848401111561285357612852612764565b5b61285e848285612815565b509392505050565b600082601f83011261287b5761287a61275f565b5b813561288b848260208601612824565b91505092915050565b6000602082840312156128aa576128a9612413565b5b600082013567ffffffffffffffff8111156128c8576128c7612418565b5b6128d484828501612866565b91505092915050565b6128e6816124a2565b81146128f157600080fd5b50565b600081359050612903816128dd565b92915050565b600080604083850312156129205761291f612413565b5b600061292e85828601612660565b925050602061293f858286016128f4565b9150509250929050565b6000819050919050565b600061296e612969612964846125ed565b612949565b6125ed565b9050919050565b600061298082612953565b9050919050565b600061299282612975565b9050919050565b6129a281612987565b82525050565b60006020820190506129bd6000830184612999565b92915050565b60006129ce82612975565b9050919050565b6129de816129c3565b82525050565b60006020820190506129f960008301846129d5565b92915050565b600067ffffffffffffffff821115612a1a57612a19612769565b5b612a238261251e565b9050602081019050919050565b6000612a43612a3e846129ff565b6127c9565b905082815260208101848484011115612a5f57612a5e612764565b5b612a6a848285612815565b509392505050565b600082601f830112612a8757612a8661275f565b5b8135612a97848260208601612a30565b91505092915050565b60008060008060808587031215612aba57612ab9612413565b5b6000612ac887828801612660565b9450506020612ad987828801612660565b9350506040612aea878288016125ab565b925050606085013567ffffffffffffffff811115612b0b57612b0a612418565b5b612b1787828801612a72565b91505092959194509250565b60006040820190508181036000830152612b3d818561252f565b9050612b4c60208301846126b5565b9392505050565b60008060408385031215612b6a57612b69612413565b5b6000612b7885828601612660565b9250506020612b8985828601612660565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bda57607f821691505b602082108103612bed57612bec612b93565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c4f6021836124e3565b9150612c5a82612bf3565b604082019050919050565b60006020820190508181036000830152612c7e81612c42565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612ce1603e836124e3565b9150612cec82612c85565b604082019050919050565b60006020820190508181036000830152612d1081612cd4565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000612d4d6008836124e3565b9150612d5882612d17565b602082019050919050565b60006020820190508181036000830152612d7c81612d40565b9050919050565b7f4d7573742073656e6420746865206d696e742070726963650000000000000000600082015250565b6000612db96018836124e3565b9150612dc482612d83565b602082019050919050565b60006020820190508181036000830152612de881612dac565b9050919050565b600081519050612dfe81612594565b92915050565b600060208284031215612e1a57612e19612413565b5b6000612e2884828501612def565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e9a8261258a565b9150612ea58361258a565b925082612eb557612eb4612e31565b5b828204905092915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612f1c602e836124e3565b9150612f2782612ec0565b604082019050919050565b60006020820190508181036000830152612f4b81612f0f565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612f886018836124e3565b9150612f9382612f52565b602082019050919050565b60006020820190508181036000830152612fb781612f7b565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061301a6029836124e3565b915061302582612fbe565b604082019050919050565b600060208201905081810360008301526130498161300d565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130b27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613075565b6130bc8683613075565b95508019841693508086168417925050509392505050565b60006130ef6130ea6130e58461258a565b612949565b61258a565b9050919050565b6000819050919050565b613109836130d4565b61311d613115826130f6565b848454613082565b825550505050565b600090565b613132613125565b61313d818484613100565b505050565b5b818110156131615761315660008261312a565b600181019050613143565b5050565b601f8211156131a65761317781613050565b61318084613065565b8101602085101561318f578190505b6131a361319b85613065565b830182613142565b50505b505050565b600082821c905092915050565b60006131c9600019846008026131ab565b1980831691505092915050565b60006131e283836131b8565b9150826002028217905092915050565b6131fb826124d8565b67ffffffffffffffff81111561321457613213612769565b5b61321e8254612bc2565b613229828285613165565b600060209050601f83116001811461325c576000841561324a578287015190505b61325485826131d6565b8655506132bc565b601f19841661326a86613050565b60005b828110156132925784890151825560018201915060208501945060208101905061326d565b868310156132af57848901516132ab601f8916826131b8565b8355505b6001600288020188555050505b505050505050565b7f50726f7669646572546f6b656e2e746f6b656e5552493a206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006133206029836124e3565b915061332b826132c4565b604082019050919050565b6000602082019050818103600083015261334f81613313565b9050919050565b600081905092915050565b7f7b226e616d65223a220000000000000000000000000000000000000000000000600082015250565b6000613397600983613356565b91506133a282613361565b600982019050919050565b60006133b8826124d8565b6133c28185613356565b93506133d28185602086016124f4565b80840191505092915050565b7f222c226465736372697074696f6e223a22000000000000000000000000000000600082015250565b6000613414601183613356565b915061341f826133de565b601182019050919050565b6000815461343781612bc2565b6134418186613356565b9450600182166000811461345c5760018114613471576134a4565b60ff19831686528115158202860193506134a4565b61347a85613050565b60005b8381101561349c5781548189015260018201915060208101905061347d565b838801955050505b50505092915050565b7f222c2261747472696275746573223a5b00000000000000000000000000000000600082015250565b60006134e3601083613356565b91506134ee826134ad565b601082019050919050565b600081519050919050565b600081905092915050565b600061351a826134f9565b6135248185613504565b93506135348185602086016124f4565b80840191505092915050565b7f5d2c22696d616765223a22646174613a696d6167652f7376672b786d6c3b626160008201527f736536342c000000000000000000000000000000000000000000000000000000602082015250565b600061359c602583613356565b91506135a782613540565b602582019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b60006135e8600283613356565b91506135f3826135b2565b600282019050919050565b60006136098261338a565b915061361582876133ad565b915061362082613407565b915061362c828661342a565b9150613637826134d6565b9150613643828561350f565b915061364e8261358f565b915061365a82846133ad565b9150613665826135db565b915081905095945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b60006136a9601d83613356565b91506136b482613673565b601d82019050919050565b60006136ca8261369c565b91506136d682846133ad565b915081905092915050565b60006136ec8261258a565b91506136f78361258a565b925082820390508181111561370f5761370e612e60565b5b92915050565b60008151905061372481612649565b92915050565b6000602082840312156137405761373f612413565b5b600061374e84828501613715565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137b36026836124e3565b91506137be82613757565b604082019050919050565b600060208201905081810360008301526137e2816137a6565b9050919050565b60006137f48261258a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361382657613825612e60565b5b600182019050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061388d6025836124e3565b915061389882613831565b604082019050919050565b600060208201905081810360008301526138bc81613880565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061391f6024836124e3565b915061392a826138c3565b604082019050919050565b6000602082019050818103600083015261394e81613912565b9050919050565b60006139608261258a565b915061396b8361258a565b925082820190508082111561398357613982612e60565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139bf6020836124e3565b91506139ca82613989565b602082019050919050565b600060208201905081810360008301526139ee816139b2565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613a2b6019836124e3565b9150613a36826139f5565b602082019050919050565b60006020820190508181036000830152613a5a81613a1e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613abd6032836124e3565b9150613ac882613a61565b604082019050919050565b60006020820190508181036000830152613aec81613ab0565b9050919050565b6000613b06613b01846127e4565b6127c9565b905082815260208101848484011115613b2257613b21612764565b5b613b2d8482856124f4565b509392505050565b600082601f830112613b4a57613b4961275f565b5b8151613b5a848260208601613af3565b91505092915050565b60008060408385031215613b7a57613b79612413565b5b600083015167ffffffffffffffff811115613b9857613b97612418565b5b613ba485828601613b35565b925050602083015167ffffffffffffffff811115613bc557613bc4612418565b5b613bd185828601613b35565b9150509250929050565b7f3c2f646566733e0a3c75736520687265663d2223000000000000000000000000600082015250565b6000613c11601483613356565b9150613c1c82613bdb565b601482019050919050565b7f22202f3e0a3c2f7376673e0a0000000000000000000000000000000000000000600082015250565b6000613c5d600c83613356565b9150613c6882613c27565b600c82019050919050565b6000613c7f82866133ad565b9150613c8b82856133ad565b9150613c9682613c04565b9150613ca282846133ad565b9150613cad82613c50565b9150819050949350505050565b7f53706c6174746572200000000000000000000000000000000000000000000000600082015250565b6000613cf0600983613356565b9150613cfb82613cba565b600982019050919050565b6000613d1182613ce3565b9150613d1d82846133ad565b915081905092915050565b600060208284031215613d3e57613d3d612413565b5b600082015167ffffffffffffffff811115613d5c57613d5b612418565b5b613d6884828501613b35565b91505092915050565b6000613d7c8261258a565b9150613d878361258a565b9250828202613d958161258a565b91508282048414831517613dac57613dab612e60565b5b5092915050565b600082825260208201905092915050565b6000613dcf826134f9565b613dd98185613db3565b9350613de98185602086016124f4565b613df28161251e565b840191505092915050565b6000608082019050613e12600083018761261f565b613e1f602083018661261f565b613e2c60408301856126b5565b8181036060830152613e3e8184613dc4565b905095945050505050565b600081519050613e5881612449565b92915050565b600060208284031215613e7457613e73612413565b5b6000613e8284828501613e49565b91505092915050565b6000613e968261258a565b9150613ea18361258a565b925082613eb157613eb0612e31565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613f216020836124e3565b9150613f2c82613eeb565b602082019050919050565b60006020820190508181036000830152613f5081613f14565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613f8d601c836124e3565b9150613f9882613f57565b602082019050919050565b60006020820190508181036000830152613fbc81613f80565b905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c7376672076696577426f783d2230203020313032342031303234222020786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e0a3c646566733e0aa2646970667358221220304b81acf976f3d6a562d482288e1804c94bf338ba97b4154101fe86e161b56764736f6c63430008110033

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

000000000000000000000000ede1a69db77c4cba8d15f9170568959a56ce9c05000000000000000000000000b6260e3b97668dca728d50f4f25c9f824d7bf406000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

-----Decoded View---------------
Arg [0] : _tokenGate (address): 0xEDE1a69DB77c4CBa8d15F9170568959a56Ce9c05
Arg [1] : _assetProvider (address): 0xB6260e3b97668DCa728d50f4F25C9f824D7BF406
Arg [2] : _proxyRegistry (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000ede1a69db77c4cba8d15f9170568959a56ce9c05
Arg [1] : 000000000000000000000000b6260e3b97668dca728d50f4f25c9f824d7bf406
Arg [2] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1


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.