ETH Price: $2,311.21 (-0.20%)
Gas: 2.13 Gwei

AKUAKU (AKU)
 

Overview

TokenID

197

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
AKUAKU369

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

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

/***
 *                                               
 *     _ _ _ _____ _____ _____ _____ ___ ___ ___ 
 *    | | | |   __|  _  | __  |   __|_  |  _| . |
 *    | | | |   __|     |    -|   __|_  | . |_  |
 *    |_____|_____|__|__|__|__|_____|___|___|___|
 *  
 *     _____ _____ __    __    _____ _ _ _ _____ _____ _____ _____ _____ _____ _____ _____ 
 *    |   __|     |  |  |  |  |     | | | |_   _|  |  |   __|   __|     |   __|   | |   __|
 *    |   __|  |  |  |__|  |__|  |  | | | | | | |     |   __|__   |-   -|  |  | | | |__   |
 *    |__|  |_____|_____|_____|_____|_____| |_| |__|__|_____|_____|_____|_____|_|___|_____|
 *                                          
 *           ___      ___   ___            ___ 
 *     _ _ _|___|    |___|_|___|_      _ _|___|
 *    |_|_|_|            |_|   |_|    |_|_|    
 *                                             
 *                                                                            
 */

pragma solidity ^0.8.13;

import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import {UpdatableOperatorFilterer} from "./UpdatableOperatorFilterer.sol";
import {RevokableDefaultOperatorFilterer} from "./RevokableDefaultOperatorFilterer.sol";

contract AKUAKU369 is ERC721, RevokableDefaultOperatorFilterer, Ownable {
  // mint price is in wei ( 10^18 wei = 1 ether ) 
  uint256 public mintPrice = 0;
  uint256 public totalSupply;
  uint256 public partMaxSupply;
  uint256 public maxSupply;
  bool public isPublicMintEnabled = false ;
  string internal baseTokenUri = 'ipfs://bafybeidh2dkgp3z73d2ica4nt7nwmufxrgsxllf2x4af46m6pgqcjmjkju/';
  address payable public withdrawWallet;
  bool public revealed = false ;
  bool public isAkuListActive = false;
  

  mapping(address => uint8) private _akuList;

  constructor() payable ERC721('AKUAKU', 'AKU') {
      
      totalSupply = 0;
      partMaxSupply = 368;
      
        }
 
      function setIsAkuListActive(bool _isAkuListActive) external onlyOwner {
        isAkuListActive = _isAkuListActive;
    }
  
        function setAkuList(address[] calldata addresses, uint8 numAllowedToMint , uint256 _mintPrice) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            _akuList[addresses[i]] = numAllowedToMint;
        }
        mintPrice = _mintPrice ;
    }
 
        function setMaxSupply( uint256 _maxSupply) external onlyOwner {
          if(maxSupply != 0){
        require(_maxSupply <= maxSupply, " new maxSupply can't be bigger than old max supply");
        require(partMaxSupply <= _maxSupply, " new maxSupply can't be less than current partMaxSupply");
        maxSupply = _maxSupply ;
          }else{
            require(partMaxSupply <= _maxSupply, " First maxSupply can't be less than current partMaxSupply");
            maxSupply = _maxSupply ;
          }
        
    }
 
        function setPartMaxSupply( uint256 _partMaxSupply) external onlyOwner {
          if(maxSupply != 0){
          require(_partMaxSupply <= maxSupply, "partMaxSupply can't be bigger than maxSupply");
          }
        
        require(partMaxSupply <= _partMaxSupply, "partMaxSupply can't be less than old partMaxSupply");
        
        partMaxSupply = _partMaxSupply ;
    }
 
    function numAvailableToMint(address addr) external view returns (uint8) {
        return _akuList[addr];
    }

 
  
        function mintAkuList(uint8 numberOfTokens) public payable {
        require(isAkuListActive, "akuList mint is not enabled");
        require(numberOfTokens <= _akuList[msg.sender], "Exceeded max available to purchase");
        require(totalSupply + numberOfTokens <= partMaxSupply, "Purchase would exceed max tokens");
        require(mintPrice * numberOfTokens <= msg.value, "Ether value sent is not correct");

        _akuList[msg.sender] -= numberOfTokens;
        for (uint256 i = 0; i < numberOfTokens; i++) {
          uint256 newTokenId = totalSupply + 1;
            totalSupply++;
            _safeMint(msg.sender, newTokenId);
        }
    }
 
  function setIsPublicMintEnabled(bool isPublicMintEnabled_ , uint256 _mintPrice) external onlyOwner {
    isPublicMintEnabled = isPublicMintEnabled_;  
    mintPrice = _mintPrice  ;
  }
 
  function changeMintPrice(uint256 _mintPrice) public onlyOwner {

     mintPrice = _mintPrice   ;
  }


  function changeRevealed(bool revealed_ , string calldata baseTokenUri_) public onlyOwner {
    revealed = revealed_ ;
    baseTokenUri = baseTokenUri_;
  }
  
 function setwithdrawWallet(address payable withdrawWallet_) external onlyOwner {
   require(withdrawWallet_ != address(0) , 'Wallet address can not be zero !');
    withdrawWallet = withdrawWallet_;  
  }

 
  function setBaseTokenUri(string calldata baseTokenUri_) external onlyOwner {
      baseTokenUri = baseTokenUri_;
  }
  
  function tokenURI(uint256 tokenId_) public view override returns (string memory){
    require(_exists(tokenId_), 'Token does not exist !');

    if(revealed){
      return string(abi.encodePacked(baseTokenUri, Strings.toString(tokenId_), ".json"));
    }
    else {
      return string(abi.encodePacked(baseTokenUri,"UnRevealed.json"));
    }
  }
 
  function withdraw() external onlyOwner {
      (bool success, ) = withdrawWallet.call{ value: address(this).balance }('');
      require(success, 'withdraw failed');

  }
  
  function mint(uint256 quantity_) public payable {
      require(isPublicMintEnabled, 'Public mint is not enabled');
      require(msg.value == quantity_ * mintPrice, 'Ether value sent is not correct');
      require(totalSupply + quantity_ <= partMaxSupply, 'Purchase would exceed max tokens');
      for(uint256 i = 0; i < quantity_; i++ ){
          uint256 newTokenId = totalSupply + 1;
          totalSupply++;
          _safeMint(msg.sender, newTokenId);
      }
  }
   
  function airDrop(address  userWallet_ , uint256 quantity_) public  onlyOwner {
    
      require(totalSupply + quantity_ <= partMaxSupply, 'Airdrop number request would exceed max tokens');
      for(uint256 i = 0; i < quantity_; i++ ){
          uint256 newTokenId = totalSupply + 1;
          totalSupply++;
          _safeMint(userWallet_, newTokenId);
      }
  }
function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function owner() public view virtual override (Ownable, UpdatableOperatorFilterer) returns (address) {
        return Ownable.owner();
    }

}

File 2 of 16 : RevokableDefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {RevokableOperatorFilterer} from "./RevokableOperatorFilterer.sol";

/**
 * @title  RevokableDefaultOperatorFilterer
 * @notice Inherits from RevokableOperatorFilterer and automatically subscribes to the default OpenSea subscription.
 *         Note that OpenSea will disable creator fee enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 */
abstract contract RevokableDefaultOperatorFilterer is RevokableOperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() RevokableOperatorFilterer(0x000000000000AAeB6D7670E522A718067333cd4E, DEFAULT_SUBSCRIPTION, true) {}
}

File 3 of 16 : UpdatableOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

/**
 * @title  UpdatableOperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry. This contract allows the Owner to update the
 *         OperatorFilterRegistry address via updateOperatorFilterRegistryAddress, including to the zero address,
 *         which will bypass registry checks.
 *         Note that OpenSea will still disable creator fee enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract UpdatableOperatorFilterer {
    error OperatorNotAllowed(address operator);
    error OnlyOwner();

    IOperatorFilterRegistry public operatorFilterRegistry;

    constructor(address _registry, address subscriptionOrRegistrantToCopy, bool subscribe) {
        IOperatorFilterRegistry registry = IOperatorFilterRegistry(_registry);
        operatorFilterRegistry = registry;
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(registry).code.length > 0) {
            if (subscribe) {
                registry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    registry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    registry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @notice Update the address that the contract will make OperatorFilter checks against. When set to the zero
     *         address, checks will be bypassed. OnlyOwner.
     */
    function updateOperatorFilterRegistryAddress(address newRegistry) public virtual {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        operatorFilterRegistry = IOperatorFilterRegistry(newRegistry);
    }

    /**
     * @dev assume the contract has an owner, but leave specific Ownable implementation up to inheriting contract
     */
    function owner() public view virtual returns (address);

    function _checkFilterOperator(address operator) internal view virtual {
        IOperatorFilterRegistry registry = operatorFilterRegistry;
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(registry) != address(0) && address(registry).code.length > 0) {
            if (!registry.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

File 4 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 5 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 = _ownerOf(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 or 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 or 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 or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(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, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

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

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

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @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. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256, /* firstTokenId */
        uint256 batchSize
    ) internal virtual {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}
}

File 6 of 16 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

File 7 of 16 : RevokableOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {UpdatableOperatorFilterer} from "./UpdatableOperatorFilterer.sol";
import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

/**
 * @title  RevokableOperatorFilterer
 * @notice This contract is meant to allow contracts to permanently skip OperatorFilterRegistry checks if desired. The
 *         Registry itself has an "unregister" function, but if the contract is ownable, the owner can re-register at
 *         any point. As implemented, this abstract contract allows the contract owner to permanently skip the
 *         OperatorFilterRegistry checks by calling revokeOperatorFilterRegistry. Once done, the registry
 *         address cannot be further updated.
 *         Note that OpenSea will still disable creator fee enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 */
abstract contract RevokableOperatorFilterer is UpdatableOperatorFilterer {
    error RegistryHasBeenRevoked();
    error InitialRegistryAddressCannotBeZeroAddress();

    bool public isOperatorFilterRegistryRevoked;

    constructor(address _registry, address subscriptionOrRegistrantToCopy, bool subscribe)
        UpdatableOperatorFilterer(_registry, subscriptionOrRegistrantToCopy, subscribe)
    {
        // don't allow creating a contract with a permanently revoked registry
        if (_registry == address(0)) {
            revert InitialRegistryAddressCannotBeZeroAddress();
        }
    }

    function _checkFilterOperator(address operator) internal view virtual override {
        if (address(operatorFilterRegistry) != address(0)) {
            super._checkFilterOperator(operator);
        }
    }

    /**
     * @notice Update the address that the contract will make OperatorFilter checks against. When set to the zero
     *         address, checks will be permanently bypassed, and the address cannot be updated again. OnlyOwner.
     */
    function updateOperatorFilterRegistryAddress(address newRegistry) public override {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        // if registry has been revoked, do not allow further updates
        if (isOperatorFilterRegistryRevoked) {
            revert RegistryHasBeenRevoked();
        }

        operatorFilterRegistry = IOperatorFilterRegistry(newRegistry);
    }

    /**
     * @notice Revoke the OperatorFilterRegistry address, permanently bypassing checks. OnlyOwner.
     */
    function revokeOperatorFilterRegistry() public {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        // if registry has been revoked, do not allow further updates
        if (isOperatorFilterRegistryRevoked) {
            revert RegistryHasBeenRevoked();
        }

        // set to zero address to bypass checks
        operatorFilterRegistry = IOperatorFilterRegistry(address(0));
        isOperatorFilterRegistryRevoked = true;
    }
}

File 8 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 9 of 16 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _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) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _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 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 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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 12 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 13 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 14 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 15 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);
}

File 16 of 16 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"InitialRegistryAddressCannotBeZeroAddress","type":"error"},{"inputs":[],"name":"OnlyOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"RegistryHasBeenRevoked","type":"error"},{"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":"userWallet_","type":"address"},{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"changeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"revealed_","type":"bool"},{"internalType":"string","name":"baseTokenUri_","type":"string"}],"name":"changeRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAkuListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isOperatorFilterRegistryRevoked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"mintAkuList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numAvailableToMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilterRegistry","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"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":"partMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revokeOperatorFilterRegistry","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":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setAkuList","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":"baseTokenUri_","type":"string"}],"name":"setBaseTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAkuListActive","type":"bool"}],"name":"setIsAkuListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isPublicMintEnabled_","type":"bool"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setIsPublicMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_partMaxSupply","type":"uint256"}],"name":"setPartMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawWallet_","type":"address"}],"name":"setwithdrawWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRegistry","type":"address"}],"name":"updateOperatorFilterRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405260006008556000600c60006101000a81548160ff021916908315150217905550604051806080016040528060438152602001620057f960439139600d90816200004e919062000730565b506000600e60146101000a81548160ff0219169083151502179055506000600e60156101000a81548160ff0219169083151502179055506daaeb6d7670e522a718067333cd4e733cc6cdda760b79bafa08df41ecfa224f810dceb660018282826040518060400160405280600681526020017f414b55414b5500000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f414b55000000000000000000000000000000000000000000000000000000000081525081600090816200012b919062000730565b5080600190816200013d919062000730565b505050600083905080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008173ffffffffffffffffffffffffffffffffffffffff163b11156200034357811562000225578073ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30856040518363ffffffff1660e01b8152600401620001eb9291906200085c565b600060405180830381600087803b1580156200020657600080fd5b505af11580156200021b573d6000803e3d6000fd5b5050505062000342565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620002d1578073ffffffffffffffffffffffffffffffffffffffff1663a0af290330856040518363ffffffff1660e01b8152600401620002979291906200085c565b600060405180830381600087803b158015620002b257600080fd5b505af1158015620002c7573d6000803e3d6000fd5b5050505062000341565b8073ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200030c919062000889565b600060405180830381600087803b1580156200032757600080fd5b505af11580156200033c573d6000803e3d6000fd5b505050505b5b5b50505050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620003ae576040517fc49d17ad00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050620003d1620003c5620003e860201b60201c565b620003f060201b60201c565b6000600981905550610170600a81905550620008a6565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200053857607f821691505b6020821081036200054e576200054d620004f0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005b87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000579565b620005c4868362000579565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006116200060b6200060584620005dc565b620005e6565b620005dc565b9050919050565b6000819050919050565b6200062d83620005f0565b620006456200063c8262000618565b84845462000586565b825550505050565b600090565b6200065c6200064d565b6200066981848462000622565b505050565b5b8181101562000691576200068560008262000652565b6001810190506200066f565b5050565b601f821115620006e057620006aa8162000554565b620006b58462000569565b81016020851015620006c5578190505b620006dd620006d48562000569565b8301826200066e565b50505b505050565b600082821c905092915050565b60006200070560001984600802620006e5565b1980831691505092915050565b6000620007208383620006f2565b9150826002028217905092915050565b6200073b82620004b6565b67ffffffffffffffff811115620007575762000756620004c1565b5b6200076382546200051f565b6200077082828562000695565b600060209050601f831160018114620007a8576000841562000793578287015190505b6200079f858262000712565b8655506200080f565b601f198416620007b88662000554565b60005b82811015620007e257848901518255600182019150602085019450602081019050620007bb565b86831015620008025784890151620007fe601f891682620006f2565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008448262000817565b9050919050565b620008568162000837565b82525050565b60006040820190506200087360008301856200084b565b6200088260208301846200084b565b9392505050565b6000602082019050620008a060008301846200084b565b92915050565b614f4380620008b66000396000f3fe6080604052600436106102515760003560e01c8063715018a611610139578063a22cb465116100b6578063c48c63971161007a578063c48c639714610842578063c87b56dd1461086d578063d5abeb01146108aa578063e985e9c5146108d5578063ecba222a14610912578063f2fde38b1461093d57610251565b8063a22cb4651461075f578063b0ccc31e14610788578063b88d4fde146107b3578063b8d1e532146107dc578063c04a28361461080557610251565b80638da5cb5b116100fd5780638da5cb5b146106995780638f071b72146106c457806395652cfa146106ef57806395d89b4114610718578063a0712d681461074357610251565b8063715018a6146105dc57806377ad99f9146105f3578063830628b31461061c57806385d178f4146106455780638af7ab201461067057610251565b8063410f8bf7116101d2578063518302271161019657806351830227146104cc5780635ef9432a146104f75780636352211e1461050e5780636817c76c1461054b5780636f8b44b01461057657806370a082311461059f57610251565b8063410f8bf71461040c57806342842e0e146104355780634afa20261461045e5780634c6fc5f7146104875780635093af37146104a357610251565b8063095ea7b311610219578063095ea7b31461034f57806318160ddd1461037857806323b872dd146103a35780633ccfd60b146103cc5780633fd17366146103e357610251565b80630116bc2d1461025657806301ffc9a714610281578063045f7850146102be57806306fdde03146102e7578063081812fc14610312575b600080fd5b34801561026257600080fd5b5061026b610966565b6040516102789190613020565b60405180910390f35b34801561028d57600080fd5b506102a860048036038101906102a391906130a7565b610979565b6040516102b59190613020565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613168565b610a5b565b005b3480156102f357600080fd5b506102fc610b0e565b6040516103099190613238565b60405180910390f35b34801561031e57600080fd5b506103396004803603810190610334919061325a565b610ba0565b6040516103469190613296565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613168565b610be6565b005b34801561038457600080fd5b5061038d610bff565b60405161039a91906132c0565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c591906132db565b610c05565b005b3480156103d857600080fd5b506103e1610c54565b005b3480156103ef57600080fd5b5061040a6004803603810190610405919061325a565b610d2d565b005b34801561041857600080fd5b50610433600480360381019061042e919061335a565b610d3f565b005b34801561044157600080fd5b5061045c600480360381019061045791906132db565b610d64565b005b34801561046a57600080fd5b50610485600480360381019061048091906133c5565b610db3565b005b6104a1600480360381019061049c919061342b565b610e6e565b005b3480156104af57600080fd5b506104ca60048036038101906104c591906134bd565b6110c8565b005b3480156104d857600080fd5b506104e1611101565b6040516104ee9190613020565b60405180910390f35b34801561050357600080fd5b5061050c611114565b005b34801561051a57600080fd5b506105356004803603810190610530919061325a565b611226565b6040516105429190613296565b60405180910390f35b34801561055757600080fd5b506105606112ac565b60405161056d91906132c0565b60405180910390f35b34801561058257600080fd5b5061059d6004803603810190610598919061325a565b6112b2565b005b3480156105ab57600080fd5b506105c660048036038101906105c1919061351d565b6113aa565b6040516105d391906132c0565b60405180910390f35b3480156105e857600080fd5b506105f1611461565b005b3480156105ff57600080fd5b5061061a6004803603810190610615919061325a565b611475565b005b34801561062857600080fd5b50610643600480360381019061063e91906135a0565b61151c565b005b34801561065157600080fd5b5061065a6115d2565b6040516106679190613623565b60405180910390f35b34801561067c57600080fd5b506106976004803603810190610692919061363e565b6115f8565b005b3480156106a557600080fd5b506106ae611625565b6040516106bb9190613296565b60405180910390f35b3480156106d057600080fd5b506106d9611634565b6040516106e69190613020565b60405180910390f35b3480156106fb57600080fd5b506107166004803603810190610711919061367e565b611647565b005b34801561072457600080fd5b5061072d611665565b60405161073a9190613238565b60405180910390f35b61075d6004803603810190610758919061325a565b6116f7565b005b34801561076b57600080fd5b50610786600480360381019061078191906136cb565b61183f565b005b34801561079457600080fd5b5061079d611858565b6040516107aa919061376a565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d591906138b5565b61187e565b005b3480156107e857600080fd5b5061080360048036038101906107fe919061351d565b6118cf565b005b34801561081157600080fd5b5061082c6004803603810190610827919061351d565b6119c6565b6040516108399190613947565b60405180910390f35b34801561084e57600080fd5b50610857611a1c565b60405161086491906132c0565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f919061325a565b611a22565b6040516108a19190613238565b60405180910390f35b3480156108b657600080fd5b506108bf611adc565b6040516108cc91906132c0565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f79190613962565b611ae2565b6040516109099190613020565b60405180910390f35b34801561091e57600080fd5b50610927611b76565b6040516109349190613020565b60405180910390f35b34801561094957600080fd5b50610964600480360381019061095f919061351d565b611b89565b005b600c60009054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a545750610a5382611c0c565b5b9050919050565b610a63611c76565b600a5481600954610a7491906139d1565b1115610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac90613a77565b60405180910390fd5b60005b81811015610b095760006001600954610ad191906139d1565b905060096000815480929190610ae690613a97565b9190505550610af58482611cf4565b508080610b0190613a97565b915050610ab8565b505050565b606060008054610b1d90613b0e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4990613b0e565b8015610b965780601f10610b6b57610100808354040283529160200191610b96565b820191906000526020600020905b815481529060010190602001808311610b7957829003601f168201915b5050505050905090565b6000610bab82611d12565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610bf081611d5d565b610bfa8383611dc0565b505050565b60095481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c4357610c4233611d5d565b5b610c4e848484611ed7565b50505050565b610c5c611c76565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610ca490613b70565b60006040518083038185875af1925050503d8060008114610ce1576040519150601f19603f3d011682016040523d82523d6000602084013e610ce6565b606091505b5050905080610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2190613bd1565b60405180910390fd5b50565b610d35611c76565b8060088190555050565b610d47611c76565b80600e60156101000a81548160ff02191690831515021790555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610da257610da133611d5d565b5b610dad848484611f37565b50505050565b610dbb611c76565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2190613c3d565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e60159054906101000a900460ff16610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490613ca9565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168160ff161115610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990613d3b565b60405180910390fd5b600a548160ff16600954610f6691906139d1565b1115610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90613da7565b60405180910390fd5b348160ff16600854610fb99190613dc7565b1115610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff190613e55565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166110559190613e75565b92506101000a81548160ff021916908360ff16021790555060005b8160ff168110156110c4576000600160095461108c91906139d1565b9050600960008154809291906110a190613a97565b91905055506110b03382611cf4565b5080806110bc90613a97565b915050611070565b5050565b6110d0611c76565b82600e60146101000a81548160ff0219169083151502179055508181600d91826110fb929190614057565b50505050565b600e60149054906101000a900460ff1681565b61111c611625565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611180576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660149054906101000a900460ff16156111c7576040517f2aa3491e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600660146101000a81548160ff021916908315150217905550565b60008061123283611f57565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90614173565b60405180910390fd5b80915050919050565b60085481565b6112ba611c76565b6000600b541461135a57600b54811115611309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090614205565b60405180910390fd5b80600a54111561134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134590614297565b60405180910390fd5b80600b819055506113a7565b80600a54111561139f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139690614329565b60405180910390fd5b80600b819055505b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361141a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611411906143bb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611469611c76565b6114736000611f94565b565b61147d611c76565b6000600b54146114cd57600b548111156114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c39061444d565b60405180910390fd5b5b80600a541115611512576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611509906144df565b60405180910390fd5b80600a8190555050565b611524611c76565b60005b848490508110156115c45782600f600087878581811061154a576115496144ff565b5b905060200201602081019061155f919061351d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555080806115bc90613a97565b915050611527565b508060088190555050505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611600611c76565b81600c60006101000a81548160ff021916908315150217905550806008819055505050565b600061162f61205a565b905090565b600e60159054906101000a900460ff1681565b61164f611c76565b8181600d9182611660929190614057565b505050565b60606001805461167490613b0e565b80601f01602080910402602001604051908101604052809291908181526020018280546116a090613b0e565b80156116ed5780601f106116c2576101008083540402835291602001916116ed565b820191906000526020600020905b8154815290600101906020018083116116d057829003601f168201915b5050505050905090565b600c60009054906101000a900460ff16611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d9061457a565b60405180910390fd5b600854816117549190613dc7565b3414611795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178c90613e55565b60405180910390fd5b600a54816009546117a691906139d1565b11156117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de90613da7565b60405180910390fd5b60005b8181101561183b576000600160095461180391906139d1565b90506009600081548092919061181890613a97565b91905055506118273382611cf4565b50808061183390613a97565b9150506117ea565b5050565b8161184981611d5d565b6118538383612084565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146118bc576118bb33611d5d565b5b6118c88585858561209a565b5050505050565b6118d7611625565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461193b576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660149054906101000a900460ff1615611982576040517f2aa3491e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a5481565b6060611a2d826120fc565b611a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a63906145e6565b60405180910390fd5b600e60149054906101000a900460ff1615611ab357600d611a8c8361213d565b604051602001611a9d929190614711565b6040516020818303038152906040529050611ad7565b600d604051602001611ac5919061478c565b60405160208183030381529060405290505b919050565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600660149054906101000a900460ff1681565b611b91611c76565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf790614820565b60405180910390fd5b611c0981611f94565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611c7e61220b565b73ffffffffffffffffffffffffffffffffffffffff16611c9c611625565b73ffffffffffffffffffffffffffffffffffffffff1614611cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce99061488c565b60405180910390fd5b565b611d0e828260405180602001604052806000815250612213565b5050565b611d1b816120fc565b611d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5190614173565b60405180910390fd5b50565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dbd57611dbc8161226e565b5b50565b6000611dcb82611226565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e329061491e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611e5a61220b565b73ffffffffffffffffffffffffffffffffffffffff161480611e895750611e8881611e8361220b565b611ae2565b5b611ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebf906149b0565b60405180910390fd5b611ed283836123b0565b505050565b611ee8611ee261220b565b82612469565b611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90614a42565b60405180910390fd5b611f328383836124fe565b505050565b611f528383836040518060200160405280600081525061187e565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61209661208f61220b565b83836127f7565b5050565b6120ab6120a561220b565b83612469565b6120ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e190614a42565b60405180910390fd5b6120f684848484612963565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661211e83611f57565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000600161214c846129bf565b01905060008167ffffffffffffffff81111561216b5761216a61378a565b5b6040519080825280601f01601f19166020018201604052801561219d5781602001600182028036833780820191505090505b509050600082602001820190505b600115612200578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816121f4576121f3614a62565b5b049450600085036121ab575b819350505050919050565b600033905090565b61221d8383612b12565b61222a6000848484612d2f565b612269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226090614b03565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156122e9575060008173ffffffffffffffffffffffffffffffffffffffff163b115b156123ac578073ffffffffffffffffffffffffffffffffffffffff1663c617113430846040518363ffffffff1660e01b8152600401612329929190614b23565b602060405180830381865afa158015612346573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061236a9190614b61565b6123ab57816040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016123a29190613296565b60405180910390fd5b5b5050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661242383611226565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061247583611226565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124b757506124b68185611ae2565b5b806124f557508373ffffffffffffffffffffffffffffffffffffffff166124dd84610ba0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661251e82611226565b73ffffffffffffffffffffffffffffffffffffffff1614612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b90614c00565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125da90614c92565b60405180910390fd5b6125f08383836001612eb6565b8273ffffffffffffffffffffffffffffffffffffffff1661261082611226565b73ffffffffffffffffffffffffffffffffffffffff1614612666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265d90614c00565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127f28383836001612fdc565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285c90614cfe565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516129569190613020565b60405180910390a3505050565b61296e8484846124fe565b61297a84848484612d2f565b6129b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b090614b03565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a1d577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a1357612a12614a62565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612a5a576d04ee2d6d415b85acef81000000008381612a5057612a4f614a62565b5b0492506020810190505b662386f26fc100008310612a8957662386f26fc100008381612a7f57612a7e614a62565b5b0492506010810190505b6305f5e1008310612ab2576305f5e1008381612aa857612aa7614a62565b5b0492506008810190505b6127108310612ad7576127108381612acd57612acc614a62565b5b0492506004810190505b60648310612afa5760648381612af057612aef614a62565b5b0492506002810190505b600a8310612b09576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7890614d6a565b60405180910390fd5b612b8a816120fc565b15612bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc190614dd6565b60405180910390fd5b612bd8600083836001612eb6565b612be1816120fc565b15612c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1890614dd6565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d2b600083836001612fdc565b5050565b6000612d508473ffffffffffffffffffffffffffffffffffffffff16612fe2565b15612ea9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d7961220b565b8786866040518563ffffffff1660e01b8152600401612d9b9493929190614e4b565b6020604051808303816000875af1925050508015612dd757506040513d601f19601f82011682018060405250810190612dd49190614eac565b60015b612e59573d8060008114612e07576040519150601f19603f3d011682016040523d82523d6000602084013e612e0c565b606091505b506000815103612e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4890614b03565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612eae565b600190505b949350505050565b6001811115612fd657600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612f4a5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f429190614ed9565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612fd55780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fcd91906139d1565b925050819055505b5b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008115159050919050565b61301a81613005565b82525050565b60006020820190506130356000830184613011565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130848161304f565b811461308f57600080fd5b50565b6000813590506130a18161307b565b92915050565b6000602082840312156130bd576130bc613045565b5b60006130cb84828501613092565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130ff826130d4565b9050919050565b61310f816130f4565b811461311a57600080fd5b50565b60008135905061312c81613106565b92915050565b6000819050919050565b61314581613132565b811461315057600080fd5b50565b6000813590506131628161313c565b92915050565b6000806040838503121561317f5761317e613045565b5b600061318d8582860161311d565b925050602061319e85828601613153565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131e25780820151818401526020810190506131c7565b60008484015250505050565b6000601f19601f8301169050919050565b600061320a826131a8565b61321481856131b3565b93506132248185602086016131c4565b61322d816131ee565b840191505092915050565b6000602082019050818103600083015261325281846131ff565b905092915050565b6000602082840312156132705761326f613045565b5b600061327e84828501613153565b91505092915050565b613290816130f4565b82525050565b60006020820190506132ab6000830184613287565b92915050565b6132ba81613132565b82525050565b60006020820190506132d560008301846132b1565b92915050565b6000806000606084860312156132f4576132f3613045565b5b60006133028682870161311d565b93505060206133138682870161311d565b925050604061332486828701613153565b9150509250925092565b61333781613005565b811461334257600080fd5b50565b6000813590506133548161332e565b92915050565b6000602082840312156133705761336f613045565b5b600061337e84828501613345565b91505092915050565b6000613392826130d4565b9050919050565b6133a281613387565b81146133ad57600080fd5b50565b6000813590506133bf81613399565b92915050565b6000602082840312156133db576133da613045565b5b60006133e9848285016133b0565b91505092915050565b600060ff82169050919050565b613408816133f2565b811461341357600080fd5b50565b600081359050613425816133ff565b92915050565b60006020828403121561344157613440613045565b5b600061344f84828501613416565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261347d5761347c613458565b5b8235905067ffffffffffffffff81111561349a5761349961345d565b5b6020830191508360018202830111156134b6576134b5613462565b5b9250929050565b6000806000604084860312156134d6576134d5613045565b5b60006134e486828701613345565b935050602084013567ffffffffffffffff8111156135055761350461304a565b5b61351186828701613467565b92509250509250925092565b60006020828403121561353357613532613045565b5b60006135418482850161311d565b91505092915050565b60008083601f8401126135605761355f613458565b5b8235905067ffffffffffffffff81111561357d5761357c61345d565b5b60208301915083602082028301111561359957613598613462565b5b9250929050565b600080600080606085870312156135ba576135b9613045565b5b600085013567ffffffffffffffff8111156135d8576135d761304a565b5b6135e48782880161354a565b945094505060206135f787828801613416565b925050604061360887828801613153565b91505092959194509250565b61361d81613387565b82525050565b60006020820190506136386000830184613614565b92915050565b6000806040838503121561365557613654613045565b5b600061366385828601613345565b925050602061367485828601613153565b9150509250929050565b6000806020838503121561369557613694613045565b5b600083013567ffffffffffffffff8111156136b3576136b261304a565b5b6136bf85828601613467565b92509250509250929050565b600080604083850312156136e2576136e1613045565b5b60006136f08582860161311d565b925050602061370185828601613345565b9150509250929050565b6000819050919050565b600061373061372b613726846130d4565b61370b565b6130d4565b9050919050565b600061374282613715565b9050919050565b600061375482613737565b9050919050565b61376481613749565b82525050565b600060208201905061377f600083018461375b565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137c2826131ee565b810181811067ffffffffffffffff821117156137e1576137e061378a565b5b80604052505050565b60006137f461303b565b905061380082826137b9565b919050565b600067ffffffffffffffff8211156138205761381f61378a565b5b613829826131ee565b9050602081019050919050565b82818337600083830152505050565b600061385861385384613805565b6137ea565b90508281526020810184848401111561387457613873613785565b5b61387f848285613836565b509392505050565b600082601f83011261389c5761389b613458565b5b81356138ac848260208601613845565b91505092915050565b600080600080608085870312156138cf576138ce613045565b5b60006138dd8782880161311d565b94505060206138ee8782880161311d565b93505060406138ff87828801613153565b925050606085013567ffffffffffffffff8111156139205761391f61304a565b5b61392c87828801613887565b91505092959194509250565b613941816133f2565b82525050565b600060208201905061395c6000830184613938565b92915050565b6000806040838503121561397957613978613045565b5b60006139878582860161311d565b92505060206139988582860161311d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139dc82613132565b91506139e783613132565b92508282019050808211156139ff576139fe6139a2565b5b92915050565b7f41697264726f70206e756d626572207265717565737420776f756c642065786360008201527f656564206d617820746f6b656e73000000000000000000000000000000000000602082015250565b6000613a61602e836131b3565b9150613a6c82613a05565b604082019050919050565b60006020820190508181036000830152613a9081613a54565b9050919050565b6000613aa282613132565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ad457613ad36139a2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b2657607f821691505b602082108103613b3957613b38613adf565b5b50919050565b600081905092915050565b50565b6000613b5a600083613b3f565b9150613b6582613b4a565b600082019050919050565b6000613b7b82613b4d565b9150819050919050565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b6000613bbb600f836131b3565b9150613bc682613b85565b602082019050919050565b60006020820190508181036000830152613bea81613bae565b9050919050565b7f57616c6c657420616464726573732063616e206e6f74206265207a65726f2021600082015250565b6000613c276020836131b3565b9150613c3282613bf1565b602082019050919050565b60006020820190508181036000830152613c5681613c1a565b9050919050565b7f616b754c697374206d696e74206973206e6f7420656e61626c65640000000000600082015250565b6000613c93601b836131b3565b9150613c9e82613c5d565b602082019050919050565b60006020820190508181036000830152613cc281613c86565b9050919050565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d256022836131b3565b9150613d3082613cc9565b604082019050919050565b60006020820190508181036000830152613d5481613d18565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b6000613d916020836131b3565b9150613d9c82613d5b565b602082019050919050565b60006020820190508181036000830152613dc081613d84565b9050919050565b6000613dd282613132565b9150613ddd83613132565b9250828202613deb81613132565b91508282048414831517613e0257613e016139a2565b5b5092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000613e3f601f836131b3565b9150613e4a82613e09565b602082019050919050565b60006020820190508181036000830152613e6e81613e32565b9050919050565b6000613e80826133f2565b9150613e8b836133f2565b9250828203905060ff811115613ea457613ea36139a2565b5b92915050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613f177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613eda565b613f218683613eda565b95508019841693508086168417925050509392505050565b6000613f54613f4f613f4a84613132565b61370b565b613132565b9050919050565b6000819050919050565b613f6e83613f39565b613f82613f7a82613f5b565b848454613ee7565b825550505050565b600090565b613f97613f8a565b613fa2818484613f65565b505050565b5b81811015613fc657613fbb600082613f8f565b600181019050613fa8565b5050565b601f82111561400b57613fdc81613eb5565b613fe584613eca565b81016020851015613ff4578190505b61400861400085613eca565b830182613fa7565b50505b505050565b600082821c905092915050565b600061402e60001984600802614010565b1980831691505092915050565b6000614047838361401d565b9150826002028217905092915050565b6140618383613eaa565b67ffffffffffffffff81111561407a5761407961378a565b5b6140848254613b0e565b61408f828285613fca565b6000601f8311600181146140be57600084156140ac578287013590505b6140b6858261403b565b86555061411e565b601f1984166140cc86613eb5565b60005b828110156140f4578489013582556001820191506020850194506020810190506140cf565b86831015614111578489013561410d601f89168261401d565b8355505b6001600288020188555050505b50505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061415d6018836131b3565b915061416882614127565b602082019050919050565b6000602082019050818103600083015261418c81614150565b9050919050565b7f206e6577206d6178537570706c792063616e277420626520626967676572207460008201527f68616e206f6c64206d617820737570706c790000000000000000000000000000602082015250565b60006141ef6032836131b3565b91506141fa82614193565b604082019050919050565b6000602082019050818103600083015261421e816141e2565b9050919050565b7f206e6577206d6178537570706c792063616e2774206265206c6573732074686160008201527f6e2063757272656e7420706172744d6178537570706c79000000000000000000602082015250565b60006142816037836131b3565b915061428c82614225565b604082019050919050565b600060208201905081810360008301526142b081614274565b9050919050565b7f204669727374206d6178537570706c792063616e2774206265206c657373207460008201527f68616e2063757272656e7420706172744d6178537570706c7900000000000000602082015250565b60006143136039836131b3565b915061431e826142b7565b604082019050919050565b6000602082019050818103600083015261434281614306565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006143a56029836131b3565b91506143b082614349565b604082019050919050565b600060208201905081810360008301526143d481614398565b9050919050565b7f706172744d6178537570706c792063616e27742062652062696767657220746860008201527f616e206d6178537570706c790000000000000000000000000000000000000000602082015250565b6000614437602c836131b3565b9150614442826143db565b604082019050919050565b600060208201905081810360008301526144668161442a565b9050919050565b7f706172744d6178537570706c792063616e2774206265206c657373207468616e60008201527f206f6c6420706172744d6178537570706c790000000000000000000000000000602082015250565b60006144c96032836131b3565b91506144d48261446d565b604082019050919050565b600060208201905081810360008301526144f8816144bc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5075626c6963206d696e74206973206e6f7420656e61626c6564000000000000600082015250565b6000614564601a836131b3565b915061456f8261452e565b602082019050919050565b6000602082019050818103600083015261459381614557565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374202100000000000000000000600082015250565b60006145d06016836131b3565b91506145db8261459a565b602082019050919050565b600060208201905081810360008301526145ff816145c3565b9050919050565b600081905092915050565b6000815461461e81613b0e565b6146288186614606565b9450600182166000811461464357600181146146585761468b565b60ff198316865281151582028601935061468b565b61466185613eb5565b60005b8381101561468357815481890152600182019150602081019050614664565b838801955050505b50505092915050565b600061469f826131a8565b6146a98185614606565b93506146b98185602086016131c4565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006146fb600583614606565b9150614706826146c5565b600582019050919050565b600061471d8285614611565b91506147298284614694565b9150614734826146ee565b91508190509392505050565b7f556e52657665616c65642e6a736f6e0000000000000000000000000000000000600082015250565b6000614776600f83614606565b915061478182614740565b600f82019050919050565b60006147988284614611565b91506147a382614769565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061480a6026836131b3565b9150614815826147ae565b604082019050919050565b60006020820190508181036000830152614839816147fd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148766020836131b3565b915061488182614840565b602082019050919050565b600060208201905081810360008301526148a581614869565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006149086021836131b3565b9150614913826148ac565b604082019050919050565b60006020820190508181036000830152614937816148fb565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061499a603d836131b3565b91506149a58261493e565b604082019050919050565b600060208201905081810360008301526149c98161498d565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000614a2c602d836131b3565b9150614a37826149d0565b604082019050919050565b60006020820190508181036000830152614a5b81614a1f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614aed6032836131b3565b9150614af882614a91565b604082019050919050565b60006020820190508181036000830152614b1c81614ae0565b9050919050565b6000604082019050614b386000830185613287565b614b456020830184613287565b9392505050565b600081519050614b5b8161332e565b92915050565b600060208284031215614b7757614b76613045565b5b6000614b8584828501614b4c565b91505092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614bea6025836131b3565b9150614bf582614b8e565b604082019050919050565b60006020820190508181036000830152614c1981614bdd565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614c7c6024836131b3565b9150614c8782614c20565b604082019050919050565b60006020820190508181036000830152614cab81614c6f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614ce86019836131b3565b9150614cf382614cb2565b602082019050919050565b60006020820190508181036000830152614d1781614cdb565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614d546020836131b3565b9150614d5f82614d1e565b602082019050919050565b60006020820190508181036000830152614d8381614d47565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614dc0601c836131b3565b9150614dcb82614d8a565b602082019050919050565b60006020820190508181036000830152614def81614db3565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614e1d82614df6565b614e278185614e01565b9350614e378185602086016131c4565b614e40816131ee565b840191505092915050565b6000608082019050614e606000830187613287565b614e6d6020830186613287565b614e7a60408301856132b1565b8181036060830152614e8c8184614e12565b905095945050505050565b600081519050614ea68161307b565b92915050565b600060208284031215614ec257614ec1613045565b5b6000614ed084828501614e97565b91505092915050565b6000614ee482613132565b9150614eef83613132565b9250828203905081811115614f0757614f066139a2565b5b9291505056fea2646970667358221220710f1ae1753af9c5ec549196bcc8ca496cceb7d3d753ff6ace19eb29102396ea64736f6c63430008110033697066733a2f2f62616679626569646832646b6770337a37336432696361346e74376e776d756678726773786c6c66327834616634366d36706771636a6d6a6b6a752f

Deployed Bytecode

0x6080604052600436106102515760003560e01c8063715018a611610139578063a22cb465116100b6578063c48c63971161007a578063c48c639714610842578063c87b56dd1461086d578063d5abeb01146108aa578063e985e9c5146108d5578063ecba222a14610912578063f2fde38b1461093d57610251565b8063a22cb4651461075f578063b0ccc31e14610788578063b88d4fde146107b3578063b8d1e532146107dc578063c04a28361461080557610251565b80638da5cb5b116100fd5780638da5cb5b146106995780638f071b72146106c457806395652cfa146106ef57806395d89b4114610718578063a0712d681461074357610251565b8063715018a6146105dc57806377ad99f9146105f3578063830628b31461061c57806385d178f4146106455780638af7ab201461067057610251565b8063410f8bf7116101d2578063518302271161019657806351830227146104cc5780635ef9432a146104f75780636352211e1461050e5780636817c76c1461054b5780636f8b44b01461057657806370a082311461059f57610251565b8063410f8bf71461040c57806342842e0e146104355780634afa20261461045e5780634c6fc5f7146104875780635093af37146104a357610251565b8063095ea7b311610219578063095ea7b31461034f57806318160ddd1461037857806323b872dd146103a35780633ccfd60b146103cc5780633fd17366146103e357610251565b80630116bc2d1461025657806301ffc9a714610281578063045f7850146102be57806306fdde03146102e7578063081812fc14610312575b600080fd5b34801561026257600080fd5b5061026b610966565b6040516102789190613020565b60405180910390f35b34801561028d57600080fd5b506102a860048036038101906102a391906130a7565b610979565b6040516102b59190613020565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613168565b610a5b565b005b3480156102f357600080fd5b506102fc610b0e565b6040516103099190613238565b60405180910390f35b34801561031e57600080fd5b506103396004803603810190610334919061325a565b610ba0565b6040516103469190613296565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613168565b610be6565b005b34801561038457600080fd5b5061038d610bff565b60405161039a91906132c0565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c591906132db565b610c05565b005b3480156103d857600080fd5b506103e1610c54565b005b3480156103ef57600080fd5b5061040a6004803603810190610405919061325a565b610d2d565b005b34801561041857600080fd5b50610433600480360381019061042e919061335a565b610d3f565b005b34801561044157600080fd5b5061045c600480360381019061045791906132db565b610d64565b005b34801561046a57600080fd5b50610485600480360381019061048091906133c5565b610db3565b005b6104a1600480360381019061049c919061342b565b610e6e565b005b3480156104af57600080fd5b506104ca60048036038101906104c591906134bd565b6110c8565b005b3480156104d857600080fd5b506104e1611101565b6040516104ee9190613020565b60405180910390f35b34801561050357600080fd5b5061050c611114565b005b34801561051a57600080fd5b506105356004803603810190610530919061325a565b611226565b6040516105429190613296565b60405180910390f35b34801561055757600080fd5b506105606112ac565b60405161056d91906132c0565b60405180910390f35b34801561058257600080fd5b5061059d6004803603810190610598919061325a565b6112b2565b005b3480156105ab57600080fd5b506105c660048036038101906105c1919061351d565b6113aa565b6040516105d391906132c0565b60405180910390f35b3480156105e857600080fd5b506105f1611461565b005b3480156105ff57600080fd5b5061061a6004803603810190610615919061325a565b611475565b005b34801561062857600080fd5b50610643600480360381019061063e91906135a0565b61151c565b005b34801561065157600080fd5b5061065a6115d2565b6040516106679190613623565b60405180910390f35b34801561067c57600080fd5b506106976004803603810190610692919061363e565b6115f8565b005b3480156106a557600080fd5b506106ae611625565b6040516106bb9190613296565b60405180910390f35b3480156106d057600080fd5b506106d9611634565b6040516106e69190613020565b60405180910390f35b3480156106fb57600080fd5b506107166004803603810190610711919061367e565b611647565b005b34801561072457600080fd5b5061072d611665565b60405161073a9190613238565b60405180910390f35b61075d6004803603810190610758919061325a565b6116f7565b005b34801561076b57600080fd5b50610786600480360381019061078191906136cb565b61183f565b005b34801561079457600080fd5b5061079d611858565b6040516107aa919061376a565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d591906138b5565b61187e565b005b3480156107e857600080fd5b5061080360048036038101906107fe919061351d565b6118cf565b005b34801561081157600080fd5b5061082c6004803603810190610827919061351d565b6119c6565b6040516108399190613947565b60405180910390f35b34801561084e57600080fd5b50610857611a1c565b60405161086491906132c0565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f919061325a565b611a22565b6040516108a19190613238565b60405180910390f35b3480156108b657600080fd5b506108bf611adc565b6040516108cc91906132c0565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f79190613962565b611ae2565b6040516109099190613020565b60405180910390f35b34801561091e57600080fd5b50610927611b76565b6040516109349190613020565b60405180910390f35b34801561094957600080fd5b50610964600480360381019061095f919061351d565b611b89565b005b600c60009054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a545750610a5382611c0c565b5b9050919050565b610a63611c76565b600a5481600954610a7491906139d1565b1115610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac90613a77565b60405180910390fd5b60005b81811015610b095760006001600954610ad191906139d1565b905060096000815480929190610ae690613a97565b9190505550610af58482611cf4565b508080610b0190613a97565b915050610ab8565b505050565b606060008054610b1d90613b0e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4990613b0e565b8015610b965780601f10610b6b57610100808354040283529160200191610b96565b820191906000526020600020905b815481529060010190602001808311610b7957829003601f168201915b5050505050905090565b6000610bab82611d12565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610bf081611d5d565b610bfa8383611dc0565b505050565b60095481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c4357610c4233611d5d565b5b610c4e848484611ed7565b50505050565b610c5c611c76565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610ca490613b70565b60006040518083038185875af1925050503d8060008114610ce1576040519150601f19603f3d011682016040523d82523d6000602084013e610ce6565b606091505b5050905080610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2190613bd1565b60405180910390fd5b50565b610d35611c76565b8060088190555050565b610d47611c76565b80600e60156101000a81548160ff02191690831515021790555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610da257610da133611d5d565b5b610dad848484611f37565b50505050565b610dbb611c76565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2190613c3d565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e60159054906101000a900460ff16610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490613ca9565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168160ff161115610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990613d3b565b60405180910390fd5b600a548160ff16600954610f6691906139d1565b1115610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90613da7565b60405180910390fd5b348160ff16600854610fb99190613dc7565b1115610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff190613e55565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166110559190613e75565b92506101000a81548160ff021916908360ff16021790555060005b8160ff168110156110c4576000600160095461108c91906139d1565b9050600960008154809291906110a190613a97565b91905055506110b03382611cf4565b5080806110bc90613a97565b915050611070565b5050565b6110d0611c76565b82600e60146101000a81548160ff0219169083151502179055508181600d91826110fb929190614057565b50505050565b600e60149054906101000a900460ff1681565b61111c611625565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611180576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660149054906101000a900460ff16156111c7576040517f2aa3491e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600660146101000a81548160ff021916908315150217905550565b60008061123283611f57565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90614173565b60405180910390fd5b80915050919050565b60085481565b6112ba611c76565b6000600b541461135a57600b54811115611309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090614205565b60405180910390fd5b80600a54111561134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134590614297565b60405180910390fd5b80600b819055506113a7565b80600a54111561139f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139690614329565b60405180910390fd5b80600b819055505b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361141a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611411906143bb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611469611c76565b6114736000611f94565b565b61147d611c76565b6000600b54146114cd57600b548111156114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c39061444d565b60405180910390fd5b5b80600a541115611512576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611509906144df565b60405180910390fd5b80600a8190555050565b611524611c76565b60005b848490508110156115c45782600f600087878581811061154a576115496144ff565b5b905060200201602081019061155f919061351d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555080806115bc90613a97565b915050611527565b508060088190555050505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611600611c76565b81600c60006101000a81548160ff021916908315150217905550806008819055505050565b600061162f61205a565b905090565b600e60159054906101000a900460ff1681565b61164f611c76565b8181600d9182611660929190614057565b505050565b60606001805461167490613b0e565b80601f01602080910402602001604051908101604052809291908181526020018280546116a090613b0e565b80156116ed5780601f106116c2576101008083540402835291602001916116ed565b820191906000526020600020905b8154815290600101906020018083116116d057829003601f168201915b5050505050905090565b600c60009054906101000a900460ff16611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d9061457a565b60405180910390fd5b600854816117549190613dc7565b3414611795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178c90613e55565b60405180910390fd5b600a54816009546117a691906139d1565b11156117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de90613da7565b60405180910390fd5b60005b8181101561183b576000600160095461180391906139d1565b90506009600081548092919061181890613a97565b91905055506118273382611cf4565b50808061183390613a97565b9150506117ea565b5050565b8161184981611d5d565b6118538383612084565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146118bc576118bb33611d5d565b5b6118c88585858561209a565b5050505050565b6118d7611625565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461193b576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660149054906101000a900460ff1615611982576040517f2aa3491e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a5481565b6060611a2d826120fc565b611a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a63906145e6565b60405180910390fd5b600e60149054906101000a900460ff1615611ab357600d611a8c8361213d565b604051602001611a9d929190614711565b6040516020818303038152906040529050611ad7565b600d604051602001611ac5919061478c565b60405160208183030381529060405290505b919050565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600660149054906101000a900460ff1681565b611b91611c76565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf790614820565b60405180910390fd5b611c0981611f94565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611c7e61220b565b73ffffffffffffffffffffffffffffffffffffffff16611c9c611625565b73ffffffffffffffffffffffffffffffffffffffff1614611cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce99061488c565b60405180910390fd5b565b611d0e828260405180602001604052806000815250612213565b5050565b611d1b816120fc565b611d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5190614173565b60405180910390fd5b50565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dbd57611dbc8161226e565b5b50565b6000611dcb82611226565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e329061491e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611e5a61220b565b73ffffffffffffffffffffffffffffffffffffffff161480611e895750611e8881611e8361220b565b611ae2565b5b611ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebf906149b0565b60405180910390fd5b611ed283836123b0565b505050565b611ee8611ee261220b565b82612469565b611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90614a42565b60405180910390fd5b611f328383836124fe565b505050565b611f528383836040518060200160405280600081525061187e565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61209661208f61220b565b83836127f7565b5050565b6120ab6120a561220b565b83612469565b6120ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e190614a42565b60405180910390fd5b6120f684848484612963565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661211e83611f57565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000600161214c846129bf565b01905060008167ffffffffffffffff81111561216b5761216a61378a565b5b6040519080825280601f01601f19166020018201604052801561219d5781602001600182028036833780820191505090505b509050600082602001820190505b600115612200578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816121f4576121f3614a62565b5b049450600085036121ab575b819350505050919050565b600033905090565b61221d8383612b12565b61222a6000848484612d2f565b612269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226090614b03565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156122e9575060008173ffffffffffffffffffffffffffffffffffffffff163b115b156123ac578073ffffffffffffffffffffffffffffffffffffffff1663c617113430846040518363ffffffff1660e01b8152600401612329929190614b23565b602060405180830381865afa158015612346573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061236a9190614b61565b6123ab57816040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016123a29190613296565b60405180910390fd5b5b5050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661242383611226565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061247583611226565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124b757506124b68185611ae2565b5b806124f557508373ffffffffffffffffffffffffffffffffffffffff166124dd84610ba0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661251e82611226565b73ffffffffffffffffffffffffffffffffffffffff1614612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b90614c00565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125da90614c92565b60405180910390fd5b6125f08383836001612eb6565b8273ffffffffffffffffffffffffffffffffffffffff1661261082611226565b73ffffffffffffffffffffffffffffffffffffffff1614612666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265d90614c00565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127f28383836001612fdc565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285c90614cfe565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516129569190613020565b60405180910390a3505050565b61296e8484846124fe565b61297a84848484612d2f565b6129b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b090614b03565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a1d577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a1357612a12614a62565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612a5a576d04ee2d6d415b85acef81000000008381612a5057612a4f614a62565b5b0492506020810190505b662386f26fc100008310612a8957662386f26fc100008381612a7f57612a7e614a62565b5b0492506010810190505b6305f5e1008310612ab2576305f5e1008381612aa857612aa7614a62565b5b0492506008810190505b6127108310612ad7576127108381612acd57612acc614a62565b5b0492506004810190505b60648310612afa5760648381612af057612aef614a62565b5b0492506002810190505b600a8310612b09576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7890614d6a565b60405180910390fd5b612b8a816120fc565b15612bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc190614dd6565b60405180910390fd5b612bd8600083836001612eb6565b612be1816120fc565b15612c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1890614dd6565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d2b600083836001612fdc565b5050565b6000612d508473ffffffffffffffffffffffffffffffffffffffff16612fe2565b15612ea9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d7961220b565b8786866040518563ffffffff1660e01b8152600401612d9b9493929190614e4b565b6020604051808303816000875af1925050508015612dd757506040513d601f19601f82011682018060405250810190612dd49190614eac565b60015b612e59573d8060008114612e07576040519150601f19603f3d011682016040523d82523d6000602084013e612e0c565b606091505b506000815103612e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4890614b03565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612eae565b600190505b949350505050565b6001811115612fd657600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612f4a5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f429190614ed9565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612fd55780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fcd91906139d1565b925050819055505b5b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008115159050919050565b61301a81613005565b82525050565b60006020820190506130356000830184613011565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130848161304f565b811461308f57600080fd5b50565b6000813590506130a18161307b565b92915050565b6000602082840312156130bd576130bc613045565b5b60006130cb84828501613092565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130ff826130d4565b9050919050565b61310f816130f4565b811461311a57600080fd5b50565b60008135905061312c81613106565b92915050565b6000819050919050565b61314581613132565b811461315057600080fd5b50565b6000813590506131628161313c565b92915050565b6000806040838503121561317f5761317e613045565b5b600061318d8582860161311d565b925050602061319e85828601613153565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131e25780820151818401526020810190506131c7565b60008484015250505050565b6000601f19601f8301169050919050565b600061320a826131a8565b61321481856131b3565b93506132248185602086016131c4565b61322d816131ee565b840191505092915050565b6000602082019050818103600083015261325281846131ff565b905092915050565b6000602082840312156132705761326f613045565b5b600061327e84828501613153565b91505092915050565b613290816130f4565b82525050565b60006020820190506132ab6000830184613287565b92915050565b6132ba81613132565b82525050565b60006020820190506132d560008301846132b1565b92915050565b6000806000606084860312156132f4576132f3613045565b5b60006133028682870161311d565b93505060206133138682870161311d565b925050604061332486828701613153565b9150509250925092565b61333781613005565b811461334257600080fd5b50565b6000813590506133548161332e565b92915050565b6000602082840312156133705761336f613045565b5b600061337e84828501613345565b91505092915050565b6000613392826130d4565b9050919050565b6133a281613387565b81146133ad57600080fd5b50565b6000813590506133bf81613399565b92915050565b6000602082840312156133db576133da613045565b5b60006133e9848285016133b0565b91505092915050565b600060ff82169050919050565b613408816133f2565b811461341357600080fd5b50565b600081359050613425816133ff565b92915050565b60006020828403121561344157613440613045565b5b600061344f84828501613416565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261347d5761347c613458565b5b8235905067ffffffffffffffff81111561349a5761349961345d565b5b6020830191508360018202830111156134b6576134b5613462565b5b9250929050565b6000806000604084860312156134d6576134d5613045565b5b60006134e486828701613345565b935050602084013567ffffffffffffffff8111156135055761350461304a565b5b61351186828701613467565b92509250509250925092565b60006020828403121561353357613532613045565b5b60006135418482850161311d565b91505092915050565b60008083601f8401126135605761355f613458565b5b8235905067ffffffffffffffff81111561357d5761357c61345d565b5b60208301915083602082028301111561359957613598613462565b5b9250929050565b600080600080606085870312156135ba576135b9613045565b5b600085013567ffffffffffffffff8111156135d8576135d761304a565b5b6135e48782880161354a565b945094505060206135f787828801613416565b925050604061360887828801613153565b91505092959194509250565b61361d81613387565b82525050565b60006020820190506136386000830184613614565b92915050565b6000806040838503121561365557613654613045565b5b600061366385828601613345565b925050602061367485828601613153565b9150509250929050565b6000806020838503121561369557613694613045565b5b600083013567ffffffffffffffff8111156136b3576136b261304a565b5b6136bf85828601613467565b92509250509250929050565b600080604083850312156136e2576136e1613045565b5b60006136f08582860161311d565b925050602061370185828601613345565b9150509250929050565b6000819050919050565b600061373061372b613726846130d4565b61370b565b6130d4565b9050919050565b600061374282613715565b9050919050565b600061375482613737565b9050919050565b61376481613749565b82525050565b600060208201905061377f600083018461375b565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137c2826131ee565b810181811067ffffffffffffffff821117156137e1576137e061378a565b5b80604052505050565b60006137f461303b565b905061380082826137b9565b919050565b600067ffffffffffffffff8211156138205761381f61378a565b5b613829826131ee565b9050602081019050919050565b82818337600083830152505050565b600061385861385384613805565b6137ea565b90508281526020810184848401111561387457613873613785565b5b61387f848285613836565b509392505050565b600082601f83011261389c5761389b613458565b5b81356138ac848260208601613845565b91505092915050565b600080600080608085870312156138cf576138ce613045565b5b60006138dd8782880161311d565b94505060206138ee8782880161311d565b93505060406138ff87828801613153565b925050606085013567ffffffffffffffff8111156139205761391f61304a565b5b61392c87828801613887565b91505092959194509250565b613941816133f2565b82525050565b600060208201905061395c6000830184613938565b92915050565b6000806040838503121561397957613978613045565b5b60006139878582860161311d565b92505060206139988582860161311d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139dc82613132565b91506139e783613132565b92508282019050808211156139ff576139fe6139a2565b5b92915050565b7f41697264726f70206e756d626572207265717565737420776f756c642065786360008201527f656564206d617820746f6b656e73000000000000000000000000000000000000602082015250565b6000613a61602e836131b3565b9150613a6c82613a05565b604082019050919050565b60006020820190508181036000830152613a9081613a54565b9050919050565b6000613aa282613132565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ad457613ad36139a2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b2657607f821691505b602082108103613b3957613b38613adf565b5b50919050565b600081905092915050565b50565b6000613b5a600083613b3f565b9150613b6582613b4a565b600082019050919050565b6000613b7b82613b4d565b9150819050919050565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b6000613bbb600f836131b3565b9150613bc682613b85565b602082019050919050565b60006020820190508181036000830152613bea81613bae565b9050919050565b7f57616c6c657420616464726573732063616e206e6f74206265207a65726f2021600082015250565b6000613c276020836131b3565b9150613c3282613bf1565b602082019050919050565b60006020820190508181036000830152613c5681613c1a565b9050919050565b7f616b754c697374206d696e74206973206e6f7420656e61626c65640000000000600082015250565b6000613c93601b836131b3565b9150613c9e82613c5d565b602082019050919050565b60006020820190508181036000830152613cc281613c86565b9050919050565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d256022836131b3565b9150613d3082613cc9565b604082019050919050565b60006020820190508181036000830152613d5481613d18565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b6000613d916020836131b3565b9150613d9c82613d5b565b602082019050919050565b60006020820190508181036000830152613dc081613d84565b9050919050565b6000613dd282613132565b9150613ddd83613132565b9250828202613deb81613132565b91508282048414831517613e0257613e016139a2565b5b5092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000613e3f601f836131b3565b9150613e4a82613e09565b602082019050919050565b60006020820190508181036000830152613e6e81613e32565b9050919050565b6000613e80826133f2565b9150613e8b836133f2565b9250828203905060ff811115613ea457613ea36139a2565b5b92915050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613f177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613eda565b613f218683613eda565b95508019841693508086168417925050509392505050565b6000613f54613f4f613f4a84613132565b61370b565b613132565b9050919050565b6000819050919050565b613f6e83613f39565b613f82613f7a82613f5b565b848454613ee7565b825550505050565b600090565b613f97613f8a565b613fa2818484613f65565b505050565b5b81811015613fc657613fbb600082613f8f565b600181019050613fa8565b5050565b601f82111561400b57613fdc81613eb5565b613fe584613eca565b81016020851015613ff4578190505b61400861400085613eca565b830182613fa7565b50505b505050565b600082821c905092915050565b600061402e60001984600802614010565b1980831691505092915050565b6000614047838361401d565b9150826002028217905092915050565b6140618383613eaa565b67ffffffffffffffff81111561407a5761407961378a565b5b6140848254613b0e565b61408f828285613fca565b6000601f8311600181146140be57600084156140ac578287013590505b6140b6858261403b565b86555061411e565b601f1984166140cc86613eb5565b60005b828110156140f4578489013582556001820191506020850194506020810190506140cf565b86831015614111578489013561410d601f89168261401d565b8355505b6001600288020188555050505b50505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061415d6018836131b3565b915061416882614127565b602082019050919050565b6000602082019050818103600083015261418c81614150565b9050919050565b7f206e6577206d6178537570706c792063616e277420626520626967676572207460008201527f68616e206f6c64206d617820737570706c790000000000000000000000000000602082015250565b60006141ef6032836131b3565b91506141fa82614193565b604082019050919050565b6000602082019050818103600083015261421e816141e2565b9050919050565b7f206e6577206d6178537570706c792063616e2774206265206c6573732074686160008201527f6e2063757272656e7420706172744d6178537570706c79000000000000000000602082015250565b60006142816037836131b3565b915061428c82614225565b604082019050919050565b600060208201905081810360008301526142b081614274565b9050919050565b7f204669727374206d6178537570706c792063616e2774206265206c657373207460008201527f68616e2063757272656e7420706172744d6178537570706c7900000000000000602082015250565b60006143136039836131b3565b915061431e826142b7565b604082019050919050565b6000602082019050818103600083015261434281614306565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006143a56029836131b3565b91506143b082614349565b604082019050919050565b600060208201905081810360008301526143d481614398565b9050919050565b7f706172744d6178537570706c792063616e27742062652062696767657220746860008201527f616e206d6178537570706c790000000000000000000000000000000000000000602082015250565b6000614437602c836131b3565b9150614442826143db565b604082019050919050565b600060208201905081810360008301526144668161442a565b9050919050565b7f706172744d6178537570706c792063616e2774206265206c657373207468616e60008201527f206f6c6420706172744d6178537570706c790000000000000000000000000000602082015250565b60006144c96032836131b3565b91506144d48261446d565b604082019050919050565b600060208201905081810360008301526144f8816144bc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5075626c6963206d696e74206973206e6f7420656e61626c6564000000000000600082015250565b6000614564601a836131b3565b915061456f8261452e565b602082019050919050565b6000602082019050818103600083015261459381614557565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374202100000000000000000000600082015250565b60006145d06016836131b3565b91506145db8261459a565b602082019050919050565b600060208201905081810360008301526145ff816145c3565b9050919050565b600081905092915050565b6000815461461e81613b0e565b6146288186614606565b9450600182166000811461464357600181146146585761468b565b60ff198316865281151582028601935061468b565b61466185613eb5565b60005b8381101561468357815481890152600182019150602081019050614664565b838801955050505b50505092915050565b600061469f826131a8565b6146a98185614606565b93506146b98185602086016131c4565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006146fb600583614606565b9150614706826146c5565b600582019050919050565b600061471d8285614611565b91506147298284614694565b9150614734826146ee565b91508190509392505050565b7f556e52657665616c65642e6a736f6e0000000000000000000000000000000000600082015250565b6000614776600f83614606565b915061478182614740565b600f82019050919050565b60006147988284614611565b91506147a382614769565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061480a6026836131b3565b9150614815826147ae565b604082019050919050565b60006020820190508181036000830152614839816147fd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148766020836131b3565b915061488182614840565b602082019050919050565b600060208201905081810360008301526148a581614869565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006149086021836131b3565b9150614913826148ac565b604082019050919050565b60006020820190508181036000830152614937816148fb565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061499a603d836131b3565b91506149a58261493e565b604082019050919050565b600060208201905081810360008301526149c98161498d565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000614a2c602d836131b3565b9150614a37826149d0565b604082019050919050565b60006020820190508181036000830152614a5b81614a1f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614aed6032836131b3565b9150614af882614a91565b604082019050919050565b60006020820190508181036000830152614b1c81614ae0565b9050919050565b6000604082019050614b386000830185613287565b614b456020830184613287565b9392505050565b600081519050614b5b8161332e565b92915050565b600060208284031215614b7757614b76613045565b5b6000614b8584828501614b4c565b91505092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614bea6025836131b3565b9150614bf582614b8e565b604082019050919050565b60006020820190508181036000830152614c1981614bdd565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614c7c6024836131b3565b9150614c8782614c20565b604082019050919050565b60006020820190508181036000830152614cab81614c6f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614ce86019836131b3565b9150614cf382614cb2565b602082019050919050565b60006020820190508181036000830152614d1781614cdb565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614d546020836131b3565b9150614d5f82614d1e565b602082019050919050565b60006020820190508181036000830152614d8381614d47565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614dc0601c836131b3565b9150614dcb82614d8a565b602082019050919050565b60006020820190508181036000830152614def81614db3565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614e1d82614df6565b614e278185614e01565b9350614e378185602086016131c4565b614e40816131ee565b840191505092915050565b6000608082019050614e606000830187613287565b614e6d6020830186613287565b614e7a60408301856132b1565b8181036060830152614e8c8184614e12565b905095945050505050565b600081519050614ea68161307b565b92915050565b600060208284031215614ec257614ec1613045565b5b6000614ed084828501614e97565b91505092915050565b6000614ee482613132565b9150614eef83613132565b9250828203905081811115614f0757614f066139a2565b5b9291505056fea2646970667358221220710f1ae1753af9c5ec549196bcc8ca496cceb7d3d753ff6ace19eb29102396ea64736f6c63430008110033

Loading...
Loading
Loading...
Loading
[ 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.