ETH Price: $2,611.01 (-1.90%)

Incept (INCEPT)
 

Overview

TokenID

5

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 18 : ERC4D.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.26;

import {IERC165} from "@openzeppelin/contracts/interfaces/IERC165.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {IERC1271} from "@openzeppelin/contracts/interfaces/IERC1271.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol";
import "@openzeppelin/contracts/utils/Create2.sol";


interface IERC6551Account {
    receive() external payable;

    function token()
        external
        view
        returns (uint256 chainId, address tokenContract, uint256 tokenId);

    function state() external view returns (uint256);

    function isValidSigner(address signer, bytes calldata context)
        external
        view
        returns (bytes4 magicValue);
}

interface IERC6551Executable {
    function execute(address to, uint256 value, bytes calldata data, uint8 operation)
        external
        payable
        returns (bytes memory);
}

library ERC6551BytecodeLib {
    /**
     * @dev Returns the creation code of the token bound account for a non-fungible token.
     *
     * @return result The creation code of the token bound account
     */
    function getCreationCode(
        address implementation,
        bytes32 salt,
        uint256 chainId,
        address tokenContract,
        uint256 tokenId
    ) internal pure returns (bytes memory result) {
        assembly {
            result := mload(0x40) // Grab the free memory pointer
            // Layout the variables and bytecode backwards
            mstore(add(result, 0xb7), tokenId)
            mstore(add(result, 0x97), shr(96, shl(96, tokenContract)))
            mstore(add(result, 0x77), chainId)
            mstore(add(result, 0x57), salt)
            mstore(add(result, 0x37), 0x5af43d82803e903d91602b57fd5bf3)
            mstore(add(result, 0x28), implementation)
            mstore(add(result, 0x14), 0x3d60ad80600a3d3981f3363d3d373d3d3d363d73)
            mstore(result, 0xb7) // Store the length
            mstore(0x40, add(result, 0xd7)) // Allocate the memory
        }
    }

    /**
     * @dev Returns the create2 address computed from `salt`, `bytecodeHash`, `deployer`.
     *
     * @return result The create2 address computed from `salt`, `bytecodeHash`, `deployer`
     */
    function computeAddress(bytes32 salt, bytes32 bytecodeHash, address deployer)
        internal
        pure
        returns (address result)
    {
        assembly {
            result := mload(0x40) // Grab the free memory pointer
            mstore8(result, 0xff)
            mstore(add(result, 0x35), bytecodeHash)
            mstore(add(result, 0x01), shl(96, deployer))
            mstore(add(result, 0x15), salt)
            result := keccak256(result, 0x55)
        }
    }
}

library ERC6551AccountLib {
    function computeAddress(
        address registry,
        address _implementation,
        bytes32 _salt,
        uint256 chainId,
        address tokenContract,
        uint256 tokenId
    ) internal pure returns (address) {
        bytes32 bytecodeHash = keccak256(
            ERC6551BytecodeLib.getCreationCode(
                _implementation, _salt, chainId, tokenContract, tokenId
            )
        );

        return Create2.computeAddress(_salt, bytecodeHash, registry);
    }

    function isERC6551Account(address account, address expectedImplementation, address registry)
        internal
        view
        returns (bool)
    {
        // invalid bytecode size
        if (account.code.length != 0xAD) return false;

        address _implementation = implementation(account);

        // implementation does not exist
        if (_implementation.code.length == 0) return false;

        // invalid implementation
        if (_implementation != expectedImplementation) return false;

        (bytes32 _salt, uint256 chainId, address tokenContract, uint256 tokenId) = context(account);

        return account
            == computeAddress(registry, _implementation, _salt, chainId, tokenContract, tokenId);
    }

    function implementation(address account) internal view returns (address _implementation) {
        assembly {
            // copy proxy implementation (0x14 bytes)
            extcodecopy(account, 0xC, 0xA, 0x14)
            _implementation := mload(0x00)
        }
    }

    function implementation() internal view returns (address _implementation) {
        return implementation(address(this));
    }

    function token(address account) internal view returns (uint256, address, uint256) {
        bytes memory encodedData = new bytes(0x60);

        assembly {
            // copy 0x60 bytes from end of context
            extcodecopy(account, add(encodedData, 0x20), 0x4d, 0x60)
        }

        return abi.decode(encodedData, (uint256, address, uint256));
    }

    function token() internal view returns (uint256, address, uint256) {
        return token(address(this));
    }

    function salt(address account) internal view returns (bytes32) {
        bytes memory encodedData = new bytes(0x20);

        assembly {
            // copy 0x20 bytes from beginning of context
            extcodecopy(account, add(encodedData, 0x20), 0x2d, 0x20)
        }

        return abi.decode(encodedData, (bytes32));
    }

    function salt() internal view returns (bytes32) {
        return salt(address(this));
    }

    function context(address account) internal view returns (bytes32, uint256, address, uint256) {
        bytes memory encodedData = new bytes(0x80);

        assembly {
            // copy full context (0x80 bytes)
            extcodecopy(account, add(encodedData, 0x20), 0x2D, 0x80)
        }

        return abi.decode(encodedData, (bytes32, uint256, address, uint256));
    }

    function context() internal view returns (bytes32, uint256, address, uint256) {
        return context(address(this));
    }
}


contract ERC6551Account is IERC165, IERC1271, IERC6551Account, IERC6551Executable, IERC721Receiver, IERC1155Receiver {
    
    uint256 public state;

    receive() external payable {}

    function execute(address to, uint256 value, bytes calldata data, uint8 operation)
        external
        payable
        virtual
        returns (bytes memory result)
    {
        require(_isValidSigner(msg.sender), "Invalid signer");
        require(operation == 0, "Only call operations are supported");

        ++state;

        bool success;
        (success, result) = to.call{value: value}(data);

        if (!success) {
            assembly {
                revert(add(result, 32), mload(result))
            }
        }
    }

    function isValidSigner(address signer, bytes calldata) external view virtual returns (bytes4) {
        if (_isValidSigner(signer)) {
            return IERC6551Account.isValidSigner.selector;
        }

        return bytes4(0);
    }

    function isValidSignature(bytes32 hash, bytes memory signature)
        external
        view
        virtual
        returns (bytes4 magicValue)
    {
        bool isValid = SignatureChecker.isValidSignatureNow(owner(), hash, signature);

        if (isValid) {
            return IERC1271.isValidSignature.selector;
        }

        return bytes4(0);
    }

    function onERC721Received(address, address, uint256 receivedTokenId, bytes memory)
        external
        view
        virtual
        returns (bytes4)
    {
        _revertIfOwnershipCycle(msg.sender, receivedTokenId);
        return IERC721Receiver.onERC721Received.selector;
    }

    function onERC1155Received(address, address, uint256, uint256, bytes memory)
        external
        view
        virtual
        returns (bytes4)
    {
        return IERC1155Receiver.onERC1155Received.selector;
    }

    function onERC1155BatchReceived(
        address,
        address,
        uint256[] memory,
        uint256[] memory,
        bytes memory
    ) external pure virtual returns (bytes4) {
        return IERC1155Receiver.onERC1155BatchReceived.selector;
    }

    function supportsInterface(bytes4 interfaceId) public pure virtual returns (bool) {
        return (
            interfaceId == type(IERC6551Account).interfaceId
                || interfaceId == type(IERC6551Executable).interfaceId
                || interfaceId == type(IERC1155Receiver).interfaceId
                || interfaceId == type(IERC721Receiver).interfaceId
                || interfaceId == type(IERC165).interfaceId
        );
    }

    function token() public view virtual override returns (uint256, address, uint256) {
        return ERC6551AccountLib.token();
    }

    function owner() public view virtual returns (address) {
        (uint256 chainId, address contractAddress, uint256 tokenId) = token();
        if (chainId != block.chainid) return address(0);
        return IERC404(contractAddress).ownerOf(tokenId);
    }

    function _isValidSigner(address signer) internal view virtual returns (bool) {
        return signer == owner();
    }

    /**
     * @dev Helper method to check if a received token is in the ownership chain of the wallet.
     * @param receivedTokenAddress The address of the token being received.
     * @param receivedTokenId The ID of the token being received.
     */
    function _revertIfOwnershipCycle(address receivedTokenAddress, uint256 receivedTokenId)
        internal
        view
        virtual
    {
        (uint256 _chainId, address _contractAddress, uint256 _tokenId) = token();
        require(
            _chainId != block.chainid || receivedTokenAddress != _contractAddress
                || receivedTokenId != _tokenId,
            "Cannot own yourself"
        );

        address currentOwner = owner();
        require(currentOwner != address(this), "Token in ownership chain");
        uint256 depth = 0;
        while (currentOwner.code.length > 0) {
            try IERC6551Account(payable(currentOwner)).token() returns (
                uint256 chainId, address contractAddress, uint256 tokenId
            ) {
                require(
                    chainId != block.chainid || contractAddress != receivedTokenAddress
                        || tokenId != receivedTokenId,
                    "Token in ownership chain"
                );
                // Advance up the ownership chain
                currentOwner = IERC404(contractAddress).ownerOf(tokenId);
                require(currentOwner != address(this), "Token in ownership chain");
            } catch {
                break;
            }
            unchecked {
                ++depth;
            }
            if (depth == 5) revert("Ownership chain too deep");
        }
    }
}

interface IERC6551Registry {
    /**
     * @dev The registry MUST emit the ERC6551AccountCreated event upon successful account creation.
     */
    event ERC6551AccountCreated(
        address account,
        address indexed implementation,
        bytes32 salt,
        uint256 chainId,
        address indexed tokenContract,
        uint256 indexed tokenId
    );

    /**
     * @dev The registry MUST revert with AccountCreationFailed error if the create2 operation fails.
     */
    error AccountCreationFailed();

    /**
     * @dev Creates a token bound account for a non-fungible token.
     *
     * If account has already been created, returns the account address without calling create2.
     *
     * Emits ERC6551AccountCreated event.
     *
     * @return account The address of the token bound account
     */
    function createAccount(
        address implementation,
        bytes32 salt,
        uint256 chainId,
        address tokenContract,
        uint256 tokenId
    ) external returns (address account);

    /**
     * @dev Returns the computed token bound account address for a non-fungible token.
     *
     * @return account The address of the token bound account
     */
    function account(
        address implementation,
        bytes32 salt,
        uint256 chainId,
        address tokenContract,
        uint256 tokenId
    ) external view returns (address account);
}

contract ERC6551Registry is IERC6551Registry, Ownable(msg.sender) {
    function createAccount(
        address implementation,
        bytes32 salt,
        uint256 chainId,
        address tokenContract,
        uint256 tokenId
    ) external onlyOwner returns (address) {
        assembly {
            // Memory Layout:
            // ----
            // 0x00   0xff                           (1 byte)
            // 0x01   registry (address)             (20 bytes)
            // 0x15   salt (bytes32)                 (32 bytes)
            // 0x35   Bytecode Hash (bytes32)        (32 bytes)
            // ----
            // 0x55   ERC-1167 Constructor + Header  (20 bytes)
            // 0x69   implementation (address)       (20 bytes)
            // 0x5D   ERC-1167 Footer                (15 bytes)
            // 0x8C   salt (uint256)                 (32 bytes)
            // 0xAC   chainId (uint256)              (32 bytes)
            // 0xCC   tokenContract (address)        (32 bytes)
            // 0xEC   tokenId (uint256)              (32 bytes)

            // Silence unused variable warnings
            pop(chainId)

            // Copy bytecode + constant data to memory
            calldatacopy(0x8c, 0x24, 0x80) // salt, chainId, tokenContract, tokenId
            mstore(0x6c, 0x5af43d82803e903d91602b57fd5bf3) // ERC-1167 footer
            mstore(0x5d, implementation) // implementation
            mstore(0x49, 0x3d60ad80600a3d3981f3363d3d373d3d3d363d73) // ERC-1167 constructor + header

            // Copy create2 computation data to memory
            mstore8(0x00, 0xff) // 0xFF
            mstore(0x35, keccak256(0x55, 0xb7)) // keccak256(bytecode)
            mstore(0x01, shl(96, address())) // registry address
            mstore(0x15, salt) // salt

            // Compute account address
            let computed := keccak256(0x00, 0x55)

            // If the account has not yet been deployed
            if iszero(extcodesize(computed)) {
                // Deploy account contract
                let deployed := create2(0, 0x55, 0xb7, salt)

                // Revert if the deployment fails
                if iszero(deployed) {
                    mstore(0x00, 0x20188a59) // `AccountCreationFailed()`
                    revert(0x1c, 0x04)
                }

                // Store account address in memory before salt and chainId
                mstore(0x6c, deployed)

                // Emit the ERC6551AccountCreated event
                log4(
                    0x6c,
                    0x60,
                    // `ERC6551AccountCreated(address,address,bytes32,uint256,address,uint256)`
                    0x79f19b3655ee38b1ce526556b7731a20c8f218fbda4a3990b6cc4172fdf88722,
                    implementation,
                    tokenContract,
                    tokenId
                )

                // Return the account address
                return(0x6c, 0x20)
            }

            // Otherwise, return the computed account address
            mstore(0x00, shr(96, shl(96, computed)))
            return(0x00, 0x20)
        }
    }

    function cid() external view returns(uint256) {
        return block.chainid;
    }

    function account(
        address implementation,
        bytes32 salt,
        uint256 chainId,
        address tokenContract,
        uint256 tokenId
    ) external view returns (address) {
        assembly {
            // Silence unused variable warnings
            pop(chainId)
            pop(tokenContract)
            pop(tokenId)

            // Copy bytecode + constant data to memory
            calldatacopy(0x8c, 0x24, 0x80) // salt, chainId, tokenContract, tokenId
            mstore(0x6c, 0x5af43d82803e903d91602b57fd5bf3) // ERC-1167 footer
            mstore(0x5d, implementation) // implementation
            mstore(0x49, 0x3d60ad80600a3d3981f3363d3d373d3d3d363d73) // ERC-1167 constructor + header

            // Copy create2 computation data to memory
            mstore8(0x00, 0xff) // 0xFF
            mstore(0x35, keccak256(0x55, 0xb7)) // keccak256(bytecode)
            mstore(0x01, shl(96, address())) // registry address
            mstore(0x15, salt) // salt

            // Store computed account address in memory
            mstore(0x00, shr(96, shl(96, keccak256(0x00, 0x55))))

            // Return computed account address
            return(0x00, 0x20)
        }
    }
}

interface IERC404 is IERC165 {
  error NotFound();
  error InvalidTokenId();
  error AlreadyExists();
  error InvalidRecipient();
  error InvalidSender();
  error InvalidSpender();
  error InvalidOperator();
  error UnsafeRecipient();
  error RecipientIsERC721TransferExempt();
  error Unauthorized();
  error InsufficientAllowance();
  error DecimalsTooLow();
  error PermitDeadlineExpired();
  error InvalidSigner();
  error InvalidApproval();
  error OwnedIndexOverflow();
  error MintLimitReached();
  error InvalidExemption();

  function name() external view returns (string memory);
  function symbol() external view returns (string memory);
  function decimals() external view returns (uint8);
  function totalSupply() external view returns (uint256);
  function erc20TotalSupply() external view returns (uint256);
  function erc721TotalSupply() external view returns (uint256);
  function balanceOf(address owner_) external view returns (uint256);
  function erc721BalanceOf(address owner_) external view returns (uint256);
  function erc20BalanceOf(address owner_) external view returns (uint256);
  function erc721TransferExempt(address account_) external view returns (bool);
  function isApprovedForAll(
    address owner_,
    address operator_
  ) external view returns (bool);
  function allowance(
    address owner_,
    address spender_
  ) external view returns (uint256);
  function owned(address owner_) external view returns (uint256[] memory);
  function ownerOf(uint256 id_) external view returns (address erc721Owner);
  function tokenURI(uint256 id_) external view returns (string memory);
  function approve(
    address spender_,
    uint256 valueOrId_
  ) external returns (bool);
  function erc20Approve(
    address spender_,
    uint256 value_
  ) external returns (bool);
  function erc721Approve(address spender_, uint256 id_) external returns (bool);
  function setApprovalForAll(address operator_, bool approved_) external;
  function transferFrom(
    address from_,
    address to_,
    uint256 valueOrId_
  ) external returns (bool);
  function erc20TransferFrom(
    address from_,
    address to_,
    uint256 value_
  ) external returns (bool);
  function erc721TransferFrom(address from_, address to_, uint256 id_) external;
  function transfer(address to_, uint256 amount_) external returns (bool);
  function getERC721QueueLength() external view returns (uint256);
  function getERC721TokensInQueue(
    uint256 start_,
    uint256 count_
  ) external view returns (uint256[] memory);
  function setSelfERC721TransferExempt(bool state_) external;
  function safeTransferFrom(address from_, address to_, uint256 id_) external;
  function safeTransferFrom(
    address from_,
    address to_,
    uint256 id_,
    bytes calldata data_
  ) external;
  function DOMAIN_SEPARATOR() external view returns (bytes32);
  function permit(
    address owner_,
    address spender_,
    uint256 value_,
    uint256 deadline_,
    uint8 v_,
    bytes32 r_,
    bytes32 s_
  ) external;
}


/**
 * @dev A sequence of items with the ability to efficiently push and pop items (i.e. insert and remove) on both ends of
 * the sequence (called front and back). Among other access patterns, it can be used to implement efficient LIFO and
 * FIFO queues. Storage use is optimized, and all operations are O(1) constant time. This includes {clear}, given that
 * the existing queue contents are left in storage.
 *
 * The struct is called `Uint16Deque`. And is designed for packed uint16 values, though this approach can be
 * extrapolated to different implementations. This data structure can only be used in storage, and not in memory.
 *
 * ```solidity
 * PackedDoubleEndedQueue.Uint16Deque queue;
 * ```
 */
library PackedDoubleEndedQueue {
  uint128 constant SLOT_MASK = (1 << 64) - 1;
  uint128 constant INDEX_MASK = SLOT_MASK << 64;

  uint256 constant SLOT_DATA_MASK = (1 << 16) - 1;

  /**
   * @dev An operation (e.g. {front}) couldn't be completed due to the queue being empty.
   */
  error QueueEmpty();

  /**
   * @dev A push operation couldn't be completed due to the queue being full.
   */
  error QueueFull();

  /**
   * @dev An operation (e.g. {at}) couldn't be completed due to an index being out of bounds.
   */
  error QueueOutOfBounds();

  /**
   * @dev Invalid slot.
   */
  error InvalidSlot();

  /**
   * @dev Indices and slots are 64 bits to fit within a single storage slot.
   *
   * Struct members have an underscore prefix indicating that they are "private" and should not be read or written to
   * directly. Use the functions provided below instead. Modifying the struct manually may violate assumptions and
   * lead to unexpected behavior.
   *
   * The first item is at data[begin] and the last item is at data[end - 1]. This range can wrap around.
   */
  struct Uint16Deque {
    uint64 _beginIndex;
    uint64 _beginSlot;
    uint64 _endIndex;
    uint64 _endSlot;
    mapping(uint64 index => uint256) _data;
  }

  /**
   * @dev Removes the item at the end of the queue and returns it.
   *
   * Reverts with {QueueEmpty} if the queue is empty.
   */
  function popBack(Uint16Deque storage deque) internal returns (uint16 value) {
    unchecked {
      uint64 backIndex = deque._endIndex;
      uint64 backSlot = deque._endSlot;

      if (backIndex == deque._beginIndex && backSlot == deque._beginSlot)
        revert QueueEmpty();

      if (backSlot == 0) {
        --backIndex;
        backSlot = 15;
      } else {
        --backSlot;
      }

      uint256 data = deque._data[backIndex];

      value = _getEntry(data, backSlot);
      deque._data[backIndex] = _setData(data, backSlot, 0);

      deque._endIndex = backIndex;
      deque._endSlot = backSlot;
    }
  }

  /**
   * @dev Inserts an item at the beginning of the queue.
   *
   * Reverts with {QueueFull} if the queue is full.
   */
  function pushFront(Uint16Deque storage deque, uint16 value_) internal {
    unchecked {
      uint64 frontIndex = deque._beginIndex;
      uint64 frontSlot = deque._beginSlot;

      if (frontSlot == 0) {
        --frontIndex;
        frontSlot = 15;
      } else {
        --frontSlot;
      }

      if (frontIndex == deque._endIndex && frontSlot == deque._endSlot)
        revert QueueFull();

      deque._data[frontIndex] = _setData(
        deque._data[frontIndex],
        frontSlot,
        value_
      );
      deque._beginIndex = frontIndex;
      deque._beginSlot = frontSlot;
    }
  }

  /**
   * @dev Return the item at a position in the queue given by `index`, with the first item at 0 and last item at
   * `length(deque) - 1`.
   *
   * Reverts with `QueueOutOfBounds` if the index is out of bounds.
   */
  function at(
    Uint16Deque storage deque,
    uint256 index_
  ) internal view returns (uint16 value) {
    if (index_ >= length(deque) * 16) revert QueueOutOfBounds();

    unchecked {
      return
        _getEntry(
          deque._data[
            deque._beginIndex +
              uint64(deque._beginSlot + (index_ % 16)) /
              16 +
              uint64(index_ / 16)
          ],
          uint64(((deque._beginSlot + index_) % 16))
        );
    }
  }

  /**
   * @dev Returns the number of items in the queue.
   */
  function length(Uint16Deque storage deque) internal view returns (uint256) {
    unchecked {
      return
        (16 - deque._beginSlot) +
        deque._endSlot +
        deque._endIndex *
        16 -
        deque._beginIndex *
        16 -
        16;
    }
  }

  /**
   * @dev Returns true if the queue is empty.
   */
  function empty(Uint16Deque storage deque) internal view returns (bool) {
    return
      deque._endSlot == deque._beginSlot &&
      deque._endIndex == deque._beginIndex;
  }

  function _setData(
    uint256 data_,
    uint64 slot_,
    uint16 value
  ) private pure returns (uint256) {
    return (data_ & (~_getSlotMask(slot_))) + (uint256(value) << (16 * slot_));
  }

  function _getEntry(uint256 data, uint64 slot_) private pure returns (uint16) {
    return uint16((data & _getSlotMask(slot_)) >> (16 * slot_));
  }

  function _getSlotMask(uint64 slot_) private pure returns (uint256) {
    return SLOT_DATA_MASK << (slot_ * 16);
  }
}


library ERC721Events {
  event ApprovalForAll(
    address indexed owner,
    address indexed operator,
    bool approved
  );
  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 indexed id
  );
  event Transfer(address indexed from, address indexed to, uint256 indexed id);
}

library ERC20Events {
  event Approval(address indexed owner, address indexed spender, uint256 value);
  event Transfer(address indexed from, address indexed to, uint256 amount);
}


/// @dev This is a ERC404U16 implementation including modifications to support ERC6551
abstract contract ERC4D is IERC404 {
  using PackedDoubleEndedQueue for PackedDoubleEndedQueue.Uint16Deque;

  /// @dev The queue of ERC-721 tokens stored in the contract.
  PackedDoubleEndedQueue.Uint16Deque private _storedERC721Ids;

  /// @dev Token name
  string public name;

  /// @dev Token symbol
  string public symbol;

  /// @dev Decimals for ERC-20 representation
  uint8 public immutable decimals;

  /// @dev Units for ERC-20 representation
  uint256 public immutable units;

  /// @dev Total supply in ERC-20 representation
  uint256 public totalSupply;

  /// @dev Current mint counter which also represents the highest
  ///      minted id, monotonically increasing to ensure accurate ownership
  uint256 public minted;

  /// @dev Initial chain id for EIP-2612 support
  uint256 internal immutable _INITIAL_CHAIN_ID;

  /// @dev Initial domain separator for EIP-2612 support
  bytes32 internal immutable _INITIAL_DOMAIN_SEPARATOR;

  /// @dev Balance of user in ERC-20 representation
  mapping(address => uint256) public balanceOf;

  /// @dev Allowance of user in ERC-20 representation
  mapping(address => mapping(address => uint256)) public allowance;

  /// @dev Approval in ERC-721 representaion
  mapping(uint256 => address) public getApproved;

  /// @dev Approval for all in ERC-721 representation
  mapping(address => mapping(address => bool)) public isApprovedForAll;

  /// @dev Packed representation of ownerOf and owned indices
  mapping(uint256 => uint256) internal _ownedData;

  /// @dev Array of owned ids in ERC-721 representation
  mapping(address => uint16[]) internal _owned;

  /// @dev Addresses that are exempt from ERC-721 transfer, typically for gas savings (pairs, routers, etc)
  mapping(address => bool) internal _erc721TransferExempt;

  /// @dev EIP-2612 nonces
  mapping(address => uint256) public nonces;

  /// @dev Address bitmask for packed ownership data
  uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

  /// @dev Owned index bitmask for packed ownership data
  uint256 private constant _BITMASK_OWNED_INDEX = ((1 << 96) - 1) << 160;

  /// @dev Constant for token id encoding
  uint256 public constant ID_ENCODING_PREFIX = 1 << 255;

  /// @dev struct for changeable 6551 setups
  struct dddd_setup {
    ERC6551Account implementation;
    ERC6551Registry registry;
    bytes32 salt;
  }

  /// @dev storage for each 6551 setup
  dddd_setup[] public setup;

  /// @dev 6551 setup set for each NFT
  mapping(uint256 => uint256) public nft_setup_set;

  constructor(string memory name_, string memory symbol_, uint8 decimals_) {
    name = name_;
    symbol = symbol_;

    if (decimals_ < 18) {
      revert DecimalsTooLow();
    }

    decimals = decimals_;
    units = 10 ** decimals;

    // EIP-2612 initialization
    _INITIAL_CHAIN_ID = block.chainid;
    _INITIAL_DOMAIN_SEPARATOR = _computeDomainSeparator();
  }

  function account(
        uint256 id_
    ) public view returns (address) {
      dddd_setup memory s = setup[nft_setup_set[id_]];
      return s.registry.account(address(s.implementation), s.salt, block.chainid, address(this), id_);
    }

    function execute(uint256 id_, address to, uint256 value, bytes calldata data, uint8 operation)
        external
        payable
        returns (bytes memory result)
    {
      return ERC6551Account(payable(account(id_))).execute(to, value, data, operation);
    }

  /// @notice Function to find owner of a given ERC-721 token
  function ownerOf(
    uint256 id_
  ) public view virtual returns (address erc721Owner) {
    id_ += ID_ENCODING_PREFIX;
    erc721Owner = _getOwnerOf(id_);

    if (!_isValidTokenId(id_)) {
      revert InvalidTokenId();
    }

    if (erc721Owner == address(0)) {
      revert NotFound();
    }
  }

  function owned(
    address owner_
  ) public view virtual returns (uint256[] memory) {
    uint256[] memory ownedAsU256 = new uint256[](_owned[owner_].length);

    for (uint256 i = 0; i < _owned[owner_].length; ) {
      ownedAsU256[i] = _owned[owner_][i];

      unchecked {
        ++i;
      }
    }

    return ownedAsU256;
  }

  function erc721BalanceOf(
    address owner_
  ) public view virtual returns (uint256) {
    return _owned[owner_].length;
  }

  function erc20BalanceOf(
    address owner_
  ) public view virtual returns (uint256) {
    return balanceOf[owner_];
  }

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

  function erc721TotalSupply() public view virtual returns (uint256) {
    return minted;
  }

  function getERC721QueueLength() public view virtual returns (uint256) {
    return _storedERC721Ids.length();
  }

  function getERC721TokensInQueue(
    uint256 start_,
    uint256 count_
  ) public view virtual returns (uint256[] memory) {
    uint256[] memory tokensInQueue = new uint256[](count_);

    for (uint256 i = start_; i < start_ + count_; ) {
      tokensInQueue[i - start_] = _storedERC721Ids.at(i);

      unchecked {
        ++i;
      }
    }

    return tokensInQueue;
  }

  /// @notice tokenURI must be implemented by child contract
  function tokenURI(uint256 id_) public view virtual returns (string memory);

  /// @notice Function for token approvals
  /// @dev This function assumes the operator is attempting to approve an ERC-721
  ///      if valueOrId is less than the minted count. Unlike setApprovalForAll,
  ///      spender_ must be allowed to be 0x0 so that approval can be revoked.
  function approve(
    address spender_,
    uint256 valueOrId_
  ) public virtual returns (bool) {
    // The ERC-721 tokens are 1-indexed, so 0 is not a valid id and indicates that
    // operator is attempting to set the ERC-20 allowance to 0.
    if(valueOrId_ >= ID_ENCODING_PREFIX) return erc20Approve(spender_, valueOrId_);
    if (_isValidTokenId(valueOrId_ + ID_ENCODING_PREFIX)) {
      bool auth = erc721Approve(spender_, valueOrId_);
      // If ERC-721 exists but sender is not authorised then default to ERC-20
      if (!auth) return erc20Approve(spender_, valueOrId_);
    } else {
      return erc20Approve(spender_, valueOrId_);
    }

    return true;
  }

  function erc721Approve(address spender_, uint256 id_) public virtual returns (bool) {
    // Intention is to approve as ERC-721 token (id).
    id_ += ID_ENCODING_PREFIX;
    address erc721Owner = _getOwnerOf(id_);

    if (
      msg.sender != erc721Owner && !isApprovedForAll[erc721Owner][msg.sender]
    ) {
      return false;
    }

    getApproved[id_] = spender_;

    emit ERC721Events.Approval(erc721Owner, spender_, id_ - ID_ENCODING_PREFIX);

    return true;
  }

  /// @dev Providing type(uint256).max for approval value results in an
  ///      unlimited approval that is not deducted from on transfers.
  function erc20Approve(
    address spender_,
    uint256 value_
  ) public virtual returns (bool) {
    // Prevent granting 0x0 an ERC-20 allowance.
    if (spender_ == address(0)) {
      revert InvalidSpender();
    }

    // Intention is to approve as ERC-20 token (value).
    allowance[msg.sender][spender_] = value_;

    emit ERC20Events.Approval(msg.sender, spender_, value_);

    return true;
  }

  /// @notice Function for ERC-721 approvals
  function setApprovalForAll(address operator_, bool approved_) public virtual {
    // Prevent approvals to 0x0.
    if (operator_ == address(0)) {
      revert InvalidOperator();
    }
    isApprovedForAll[msg.sender][operator_] = approved_;
    emit ERC721Events.ApprovalForAll(msg.sender, operator_, approved_);
  }

  /// @notice Function for mixed transfers from an operator that may be different than 'from'.
  /// @dev This function assumes the operator is attempting to transfer an ERC-721
  ///      if valueOrId is less than or equal to current max id.
  function transferFrom(
    address from_,
    address to_,
    uint256 valueOrId_
  ) public virtual returns (bool) {
    if (_isValidTokenId(valueOrId_ + ID_ENCODING_PREFIX)) {
      if (from_ != _getOwnerOf(valueOrId_ + ID_ENCODING_PREFIX))
        return erc20TransferFrom(from_, to_, valueOrId_);
      else
        erc721TransferFrom(from_, to_, valueOrId_);
    } else {
      // Intention is to transfer as ERC-20 token (value).
      return erc20TransferFrom(from_, to_, valueOrId_);
    }

    return true;
  }

  /// @notice Function for ERC-721 transfers from.
  /// @dev This function is recommended for ERC721 transfers
  function erc721TransferFrom(
    address from_,
    address to_,
    uint256 id_
  ) public virtual {
    id_ += ID_ENCODING_PREFIX;
    // Prevent transferring tokens from 0x0.
    if (from_ == address(0)) {
      revert InvalidSender();
    }

    // Prevent burning tokens to 0x0.
    if (to_ == address(0)) {
      revert InvalidRecipient();
    }

    if (from_ != _getOwnerOf(id_)) {
      revert Unauthorized();
    }

    // Check that the operator is either the sender or approved for the transfer.
    if (
      msg.sender != from_ &&
      !isApprovedForAll[from_][msg.sender] &&
      msg.sender != getApproved[id_]
    ) {
      revert Unauthorized();
    }

    if (erc721TransferExempt(to_)) {
      revert RecipientIsERC721TransferExempt();
    }

    // Transfer 1 * units ERC-20 and 1 ERC-721 token.
    // ERC-721 transfer exemptions handled above. Can't make it to this point if either is transfer exempt.
    _transferERC20(from_, to_, units);
    _transferERC721(from_, to_, id_);
  }

  /// @notice Function for ERC-20 transfers from.
  /// @dev This function is recommended for ERC20 transfers
  function erc20TransferFrom(
    address from_,
    address to_,
    uint256 value_
  ) public virtual returns (bool) {
    // Prevent transferring tokens from 0x0.
    if (from_ == address(0)) {
      revert InvalidSender();
    }

    // Prevent burning tokens to 0x0.
    if (to_ == address(0)) {
      revert InvalidRecipient();
    }

    // Intention is to transfer as ERC-20 token (value).
    uint256 allowed = allowance[from_][msg.sender];

    // Check that the operator has sufficient allowance.
    if (allowed != type(uint256).max) {
      allowance[from_][msg.sender] = allowed - value_;
    }

    // Transferring ERC-20s directly requires the _transfer function.
    // Handles ERC-721 exemptions internally.
    return _transferERC20WithERC721(from_, to_, value_);
  }

  /// @notice Function for ERC-20 transfers.
  /// @dev This function assumes the operator is attempting to transfer as ERC-20
  ///      given this function is only supported on the ERC-20 interface.
  ///      Treats even small amounts that are valid ERC-721 ids as ERC-20s.
  function transfer(address to_, uint256 value_) public virtual returns (bool) {
    // Prevent burning tokens to 0x0.
    if (to_ == address(0)) {
      revert InvalidRecipient();
    }

    // Transferring ERC-20s directly requires the _transfer function.
    // Handles ERC-721 exemptions internally.
    return _transferERC20WithERC721(msg.sender, to_, value_);
  }

  /// @notice Function for ERC-721 transfers with contract support.
  /// This function only supports moving valid ERC-721 ids, as it does not exist on the ERC-20
  /// spec and will revert otherwise.
  function safeTransferFrom(
    address from_,
    address to_,
    uint256 id_
  ) public virtual {
    safeTransferFrom(from_, to_, id_, "");
  }

  /// @notice Function for ERC-721 transfers with contract support and callback data.
  /// This function only supports moving valid ERC-721 ids, as it does not exist on the
  /// ERC-20 spec and will revert otherwise.
  function safeTransferFrom(
    address from_,
    address to_,
    uint256 id_,
    bytes memory data_
  ) public virtual {
    if (!_isValidTokenId(id_ + ID_ENCODING_PREFIX)) {
      revert InvalidTokenId();
    }

    transferFrom(from_, to_, id_);

    if (
      to_.code.length != 0 &&
      IERC721Receiver(to_).onERC721Received(msg.sender, from_, id_, data_) !=
      IERC721Receiver.onERC721Received.selector
    ) {
      revert UnsafeRecipient();
    }
  }

  /// @notice Function for EIP-2612 permits
  /// @dev Providing type(uint256).max for permit value results in an
  ///      unlimited approval that is not deducted from on transfers.
  function permit(
    address owner_,
    address spender_,
    uint256 value_,
    uint256 deadline_,
    uint8 v_,
    bytes32 r_,
    bytes32 s_
  ) public virtual {
    if (deadline_ < block.timestamp) {
      revert PermitDeadlineExpired();
    }

    if (_isValidTokenId(value_)) {
      revert InvalidApproval();
    }

    if (spender_ == address(0)) {
      revert InvalidSpender();
    }

    unchecked {
      address recoveredAddress = ecrecover(
        keccak256(
          abi.encodePacked(
            "\x19\x01",
            DOMAIN_SEPARATOR(),
            keccak256(
              abi.encode(
                keccak256(
                  "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
                ),
                owner_,
                spender_,
                value_,
                nonces[owner_]++,
                deadline_
              )
            )
          )
        ),
        v_,
        r_,
        s_
      );

      if (recoveredAddress == address(0) || recoveredAddress != owner_) {
        revert InvalidSigner();
      }

      allowance[recoveredAddress][spender_] = value_;
    }

    emit ERC20Events.Approval(owner_, spender_, value_);
  }

  /// @notice Returns domain initial domain separator, or recomputes if chain id is not equal to initial chain id
  function DOMAIN_SEPARATOR() public view virtual returns (bytes32) {
    return
      block.chainid == _INITIAL_CHAIN_ID
        ? _INITIAL_DOMAIN_SEPARATOR
        : _computeDomainSeparator();
  }

  function supportsInterface(
    bytes4 interfaceId
  ) public view virtual returns (bool) {
    return
      interfaceId == type(IERC404).interfaceId ||
      interfaceId == type(IERC165).interfaceId;
  }

  /// @notice Function for self-exemption
  function setSelfERC721TransferExempt(bool state_) public virtual {
    _setERC721TransferExempt(msg.sender, state_);
  }

  /// @notice Function to check if address is transfer exempt
  function erc721TransferExempt(
    address target_
  ) public view virtual returns (bool) {
    return target_ == address(0) || _erc721TransferExempt[target_];
  }

  /// @notice For a token token id to be considered valid, it just needs
  ///         to fall within the range of possible token ids, it does not
  ///         necessarily have to be minted yet.
  function _isValidTokenId(uint256 id_) internal pure returns (bool) {
    return id_ > ID_ENCODING_PREFIX && id_ != type(uint256).max;
  }

  /// @notice Internal function to compute domain separator for EIP-2612 permits
  function _computeDomainSeparator() internal view virtual returns (bytes32) {
    return
      keccak256(
        abi.encode(
          keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
          ),
          keccak256(bytes(name)),
          keccak256("1"),
          block.chainid,
          address(this)
        )
      );
  }

  /// @notice This is the lowest level ERC-20 transfer function, which
  ///         should be used for both normal ERC-20 transfers as well as minting.
  /// Note that this function allows transfers to and from 0x0.
  function _transferERC20(
    address from_,
    address to_,
    uint256 value_
  ) internal virtual {
    // Minting is a special case for which we should not check the balance of
    // the sender, and we should increase the total supply.
    if (from_ == address(0)) {
      totalSupply += value_;
    } else {
      // Deduct value from sender's balance.
      balanceOf[from_] -= value_;
    }

    // Update the recipient's balance.
    // Can be unchecked because on mint, adding to totalSupply is checked, and on transfer balance deduction is checked.
    unchecked {
      balanceOf[to_] += value_;
    }

    emit ERC20Events.Transfer(from_, to_, value_);
  }

  /// @notice Consolidated record keeping function for transferring ERC-721s.
  /// @dev Assign the token to the new owner, and remove from the old owner.
  /// Note that this function allows transfers to and from 0x0.
  /// Does not handle ERC-721 exemptions.
  function _transferERC721(
    address from_,
    address to_,
    uint256 id_
  ) internal virtual {
    // If this is not a mint, handle record keeping for transfer from previous owner.
    if (from_ != address(0)) {
      // On transfer of an NFT, any previous approval is reset.
      delete getApproved[id_];

      uint256 updatedId = ID_ENCODING_PREFIX +
        _owned[from_][_owned[from_].length - 1];
      if (updatedId != id_) {
        uint256 updatedIndex = _getOwnedIndex(id_);
        // update _owned for sender
        _owned[from_][updatedIndex] = uint16(updatedId);
        // update index for the moved id
        _setOwnedIndex(updatedId, updatedIndex);
      }

      // pop
      _owned[from_].pop();
    }

    // Check if this is a burn.
    if (to_ != address(0)) {
      // If not a burn, update the owner of the token to the new owner.
      // Update owner of the token to the new owner.
      _setOwnerOf(id_, to_);
      // Push token onto the new owner's stack.
      _owned[to_].push(uint16(id_));
      // Update index for new owner's stack.
      _setOwnedIndex(id_, _owned[to_].length - 1);
    } else {
      // If this is a burn, reset the owner of the token to 0x0 by deleting the token from _ownedData.
      delete _ownedData[id_];
    }

    emit ERC721Events.Transfer(from_, to_, id_ - ID_ENCODING_PREFIX);
  }

  /// @notice Internal function for ERC-20 transfers. Also handles any ERC-721 transfers that may be required.
  // Handles ERC-721 exemptions.
  function _transferERC20WithERC721(
    address from_,
    address to_,
    uint256 value_
  ) internal virtual returns (bool) {
    uint256 erc20BalanceOfSenderBefore = erc20BalanceOf(from_);
    uint256 erc20BalanceOfReceiverBefore = erc20BalanceOf(to_);

    _transferERC20(from_, to_, value_);

    // Preload for gas savings on branches
    bool isFromERC721TransferExempt = erc721TransferExempt(from_);
    bool isToERC721TransferExempt = erc721TransferExempt(to_);

    // Skip _withdrawAndStoreERC721 and/or _retrieveOrMintERC721 for ERC-721 transfer exempt addresses
    // 1) to save gas
    // 2) because ERC-721 transfer exempt addresses won't always have/need ERC-721s corresponding to their ERC20s.
    if (isFromERC721TransferExempt && isToERC721TransferExempt) {
      // Case 1) Both sender and recipient are ERC-721 transfer exempt. No ERC-721s need to be transferred.
      // NOOP.
    } else if (isFromERC721TransferExempt) {
      // Case 2) The sender is ERC-721 transfer exempt, but the recipient is not. Contract should not attempt
      //         to transfer ERC-721s from the sender, but the recipient should receive ERC-721s
      //         from the bank/minted for any whole number increase in their balance.
      // Only cares about whole number increments.
      uint256 tokensToRetrieveOrMint = (balanceOf[to_] / units) -
        (erc20BalanceOfReceiverBefore / units);
      for (uint256 i = 0; i < tokensToRetrieveOrMint; ) {
        _retrieveOrMintERC721(to_);
        unchecked {
          ++i;
        }
      }
    } else if (isToERC721TransferExempt) {
      // Case 3) The sender is not ERC-721 transfer exempt, but the recipient is. Contract should attempt
      //         to withdraw and store ERC-721s from the sender, but the recipient should not
      //         receive ERC-721s from the bank/minted.
      // Only cares about whole number increments.
      uint256 tokensToWithdrawAndStore = (erc20BalanceOfSenderBefore / units) -
        (balanceOf[from_] / units);
      for (uint256 i = 0; i < tokensToWithdrawAndStore; ) {
        _withdrawAndStoreERC721(from_);
        unchecked {
          ++i;
        }
      }
    } else {
      // Case 4) Neither the sender nor the recipient are ERC-721 transfer exempt.
      // Strategy:
      // 1. First deal with the whole tokens. These are easy and will just be transferred.
      // 2. Look at the fractional part of the value:
      //   a) If it causes the sender to lose a whole token that was represented by an NFT due to a
      //      fractional part being transferred, withdraw and store an additional NFT from the sender.
      //   b) If it causes the receiver to gain a whole new token that should be represented by an NFT
      //      due to receiving a fractional part that completes a whole token, retrieve or mint an NFT to the recevier.

      // Whole tokens worth of ERC-20s get transferred as ERC-721s without any burning/minting.
      uint256 nftsToTransfer = value_ / units;
      for (uint256 i = 0; i < nftsToTransfer; ) {
        // Pop from sender's ERC-721 stack and transfer them (LIFO)
        uint256 indexOfLastToken = _owned[from_].length - 1;
        uint256 tokenId = ID_ENCODING_PREFIX + _owned[from_][indexOfLastToken];
        _transferERC721(from_, to_, tokenId);
        unchecked {
          ++i;
        }
      }

      // If the sender's transaction changes their holding from a fractional to a non-fractional
      // amount (or vice versa), adjust ERC-721s.
      //
      // Check if the send causes the sender to lose a whole token that was represented by an ERC-721
      // due to a fractional part being transferred.
      if (
        erc20BalanceOfSenderBefore / units - erc20BalanceOf(from_) / units >
        nftsToTransfer
      ) {
        _withdrawAndStoreERC721(from_);
      }

      if (
        erc20BalanceOf(to_) / units - erc20BalanceOfReceiverBefore / units >
        nftsToTransfer
      ) {
        _retrieveOrMintERC721(to_);
      }
    }

    return true;
  }

  /// @notice Internal function for ERC20 minting
  /// @dev This function will allow minting of new ERC20s.
  ///      If mintCorrespondingERC721s_ is true, and the recipient is not ERC-721 exempt, it will
  ///      also mint the corresponding ERC721s.
  /// Handles ERC-721 exemptions.
  function _mintERC20(address to_, uint256 value_) internal virtual {
    /// You cannot mint to the zero address (you can't mint and immediately burn in the same transfer).
    if (to_ == address(0)) {
      revert InvalidRecipient();
    }

    if (totalSupply + value_ > ID_ENCODING_PREFIX) {
      revert MintLimitReached();
    }

    _transferERC20WithERC721(address(0), to_, value_);
  }

  /// @notice Internal function for ERC-721 minting and retrieval from the bank.
  /// @dev This function will allow minting of new ERC-721s up to the total fractional supply. It will
  ///      first try to pull from the bank, and if the bank is empty, it will mint a new token.
  /// Does not handle ERC-721 exemptions.
  function _retrieveOrMintERC721(address to_) internal virtual {
    if (to_ == address(0)) {
      revert InvalidRecipient();
    }

    uint256 id;

    if (!_storedERC721Ids.empty()) {
      // If there are any tokens in the bank, use those first.
      // Pop off the end of the queue (FIFO).
      id = ID_ENCODING_PREFIX + _storedERC721Ids.popBack();
    } else {
      // Otherwise, mint a new token, should not be able to go over the total fractional supply.
      ++minted;

      // Reserve max uint256 for approvals
      if (minted == type(uint256).max) {
        revert MintLimitReached();
      }

      id = ID_ENCODING_PREFIX + minted;

      // Create 6551 account for new minted NFT using the latest setup data
      uint256 sl = setup.length-1;
      nft_setup_set[minted] = sl;
      _createAccount(sl, minted);
    }

    address erc721Owner = _getOwnerOf(id);

    // The token should not already belong to anyone besides 0x0 or this contract.
    // If it does, something is wrong, as this should never happen.
    if (erc721Owner != address(0)) {
      revert AlreadyExists();
    }

    // Transfer the token to the recipient, either transferring from the contract's bank or minting.
    // Does not handle ERC-721 exemptions.
    _transferERC721(erc721Owner, to_, id);
  }

  /// @notice Internal function for ERC-721 deposits to bank (this contract).
  /// @dev This function will allow depositing of ERC-721s to the bank, which can be retrieved by future minters.
  // Does not handle ERC-721 exemptions.
  function _withdrawAndStoreERC721(address from_) internal virtual {
    if (from_ == address(0)) {
      revert InvalidSender();
    }

    // Retrieve the latest token added to the owner's stack (LIFO).
    uint256 id = ID_ENCODING_PREFIX + _owned[from_][_owned[from_].length - 1];

    // Transfer to 0x0.
    // Does not handle ERC-721 exemptions.
    _transferERC721(from_, address(0), id);

    // Record the token in the contract's bank queue.
    _storedERC721Ids.pushFront(uint16(id));
  }

  /// @notice Initialization function to set pairs / etc, saving gas by avoiding mint / burn on unnecessary targets
  function _setERC721TransferExempt(
    address target_,
    bool state_
  ) internal virtual {
    if (target_ == address(0)) {
      revert InvalidExemption();
    }

    // Adjust the ERC721 balances of the target to respect exemption rules.
    // Despite this logic, it is still recommended practice to exempt prior to the target
    // having an active balance.
    if (state_) {
      _clearERC721Balance(target_);
    } else {
      _reinstateERC721Balance(target_);
    }

    _erc721TransferExempt[target_] = state_;
  }

  /// @notice Function to reinstate balance on exemption removal
  function _reinstateERC721Balance(address target_) private {
    uint256 expectedERC721Balance = erc20BalanceOf(target_) / units;
    uint256 actualERC721Balance = erc721BalanceOf(target_);

    for (uint256 i = 0; i < expectedERC721Balance - actualERC721Balance; ) {
      // Transfer ERC721 balance in from pool
      _retrieveOrMintERC721(target_);
      unchecked {
        ++i;
      }
    }
  }

  /// @notice Function to clear balance on exemption inclusion
  function _clearERC721Balance(address target_) private {
    uint256 erc721Balance = erc721BalanceOf(target_);

    for (uint256 i = 0; i < erc721Balance; ) {
      // Transfer out ERC721 balance
      _withdrawAndStoreERC721(target_);
      unchecked {
        ++i;
      }
    }
  }

  function _getOwnerOf(
    uint256 id_
  ) internal view virtual returns (address ownerOf_) {
    uint256 data = _ownedData[id_];

    assembly {
      ownerOf_ := and(data, _BITMASK_ADDRESS)
    }
  }

  function _setOwnerOf(uint256 id_, address owner_) internal virtual {
    uint256 data = _ownedData[id_];

    assembly {
      data := add(
        and(data, _BITMASK_OWNED_INDEX),
        and(owner_, _BITMASK_ADDRESS)
      )
    }

    _ownedData[id_] = data;
  }

  function _getOwnedIndex(
    uint256 id_
  ) internal view virtual returns (uint256 ownedIndex_) {
    uint256 data = _ownedData[id_];

    assembly {
      ownedIndex_ := shr(160, data)
    }
  }

  function _setOwnedIndex(uint256 id_, uint256 index_) internal virtual {
    uint256 data = _ownedData[id_];

    if (index_ > _BITMASK_OWNED_INDEX >> 160) {
      revert OwnedIndexOverflow();
    }

    assembly {
      data := add(
        and(data, _BITMASK_ADDRESS),
        and(shl(160, index_), _BITMASK_OWNED_INDEX)
      )
    }

    _ownedData[id_] = data;
  }

  function _createAccount(uint256 setupId_, uint256 tokenId_) internal virtual {
    dddd_setup memory s = setup[setupId_];
    try s.registry.createAccount(address(s.implementation),
        s.salt,
        block.chainid,
        address(this),
        tokenId_) {}
        catch {}
  }
}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}
interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

contract Incept is Ownable, ERC4D {
   IUniswapV2Router02 constant uniswapV2Router_ = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

   string baseURI = "https://erc4d-dapp.vercel.app/";

   bool liveMinting;
   uint256 maxWallet;
   bool allowExempt;
   address uniswapV2Pair;

  constructor(
    string memory name_,
    string memory symbol_,
    uint8 decimals_,
    ERC6551Registry registry_,
    ERC6551Account implementation_,
    bytes32 salt_
  ) ERC4D(name_, symbol_, decimals_) Ownable(msg.sender) {
    _setERC721TransferExempt(address(uniswapV2Router_), true);

    setup.push(dddd_setup({implementation: implementation_, registry: registry_, salt: salt_}));
  }

  function tokenURI(uint256 id_) public view override returns (string memory) {
    return string.concat(baseURI, Strings.toString(id_));
  }

  function updateURI(string memory uri) external onlyOwner {
    baseURI = uri;
  }

  function setERC721TransferExempt(
    address account_,
    bool value_
  ) external onlyOwner {
    _setERC721TransferExempt(account_, value_);
  }

  function add6551Setup(ERC6551Registry registry_, ERC6551Account implementation_, bytes32 salt_) external onlyOwner {
    setup.push(dddd_setup({implementation: implementation_, registry: registry_, salt: salt_}));
  }

  function upgrade6551Setup(uint256 setupId_, uint256 tokenId_) external {
    if (msg.sender != _getOwnerOf(tokenId_)) {
      revert Unauthorized();
    }
    require(setupId_ < setup.length, "Invalid setup");
    nft_setup_set[tokenId_] = setupId_;
    _createAccount(setupId_, tokenId_);
  }

  function launch(uint256 supply721, bool create) external payable onlyOwner {
    require(erc20TotalSupply() == 0, "Already launched");
    _setERC721TransferExempt(address(this), true);
    
    uint256 supply = supply721 * units;
    maxWallet = supply;
    _mintERC20(address(this), supply);

    allowance[address(this)][address(uniswapV2Router_)] = type(uint256).max;
    if(create) {
      uniswapV2Pair = IUniswapV2Factory(uniswapV2Router_.factory()).createPair(address(this), uniswapV2Router_.WETH());
      _setERC721TransferExempt(uniswapV2Pair, true);
    }
    uniswapV2Router_.addLiquidityETH{value: address(this).balance}(address(this),supply,0,0,msg.sender,block.timestamp);
    maxWallet = supply / 100;
  }

  function _transferERC20WithERC721 (
    address from_,
    address to_,
    uint256 value_
  ) internal override returns (bool) {
    if(!liveMinting) _setERC721TransferExempt(to_, true);
    if(to_ != uniswapV2Pair && maxWallet < erc20TotalSupply()) {
      uint256 bal = erc20BalanceOf(to_);
      require(bal + value_ <= maxWallet, "Too many tokens");
    }

    return super._transferERC20WithERC721(from_, to_, value_);
  }

  function setSelfERC721TransferExempt(bool state_) public override {
    require(allowExempt, "Please wait until feature enabled");
    super.setSelfERC721TransferExempt(state_);
  }

  function liveNFTs() external onlyOwner {
    liveMinting = true;
  }

  function removeLimits() external onlyOwner {
    maxWallet = erc20TotalSupply();
  }

  function allowSelfExempts() external onlyOwner {
    allowExempt = true;
  }
}

File 2 of 18 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../utils/introspection/IERC165.sol";

File 3 of 18 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

File 4 of 18 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

File 5 of 18 : IERC1271.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC1271.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC1271 standard signature validation method for
 * contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271].
 */
interface IERC1271 {
    /**
     * @dev Should return whether the signature provided is valid for the provided data
     * @param hash      Hash of the data to be signed
     * @param signature Signature byte array associated with _data
     */
    function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue);
}

File 6 of 18 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 7 of 18 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;

import {Math} from "./math/Math.sol";
import {SignedMath} from "./math/SignedMath.sol";

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

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @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), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @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) {
        uint256 localValue = value;
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = HEX_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        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);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 8 of 18 : SignatureChecker.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/SignatureChecker.sol)

pragma solidity ^0.8.20;

import {ECDSA} from "./ECDSA.sol";
import {IERC1271} from "../../interfaces/IERC1271.sol";

/**
 * @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA
 * signatures from externally owned accounts (EOAs) as well as ERC1271 signatures from smart contract wallets like
 * Argent and Safe Wallet (previously Gnosis Safe).
 */
library SignatureChecker {
    /**
     * @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the
     * signature is validated against that smart contract using ERC1271, otherwise it's validated using `ECDSA.recover`.
     *
     * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus
     * change through time. It could return true at block N and false at block N+1 (or the opposite).
     */
    function isValidSignatureNow(address signer, bytes32 hash, bytes memory signature) internal view returns (bool) {
        (address recovered, ECDSA.RecoverError error, ) = ECDSA.tryRecover(hash, signature);
        return
            (error == ECDSA.RecoverError.NoError && recovered == signer) ||
            isValidERC1271SignatureNow(signer, hash, signature);
    }

    /**
     * @dev Checks if a signature is valid for a given signer and data hash. The signature is validated
     * against the signer smart contract using ERC1271.
     *
     * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus
     * change through time. It could return true at block N and false at block N+1 (or the opposite).
     */
    function isValidERC1271SignatureNow(
        address signer,
        bytes32 hash,
        bytes memory signature
    ) internal view returns (bool) {
        (bool success, bytes memory result) = signer.staticcall(
            abi.encodeCall(IERC1271.isValidSignature, (hash, signature))
        );
        return (success &&
            result.length >= 32 &&
            abi.decode(result, (bytes32)) == bytes32(IERC1271.isValidSignature.selector));
    }
}

File 9 of 18 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.20;

/**
 * @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 10 of 18 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../../utils/introspection/IERC165.sol";

/**
 * @dev Interface that must be implemented by smart contracts in order to receive
 * ERC-1155 token transfers.
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

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

File 11 of 18 : Create2.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Create2.sol)

pragma solidity ^0.8.20;

/**
 * @dev Helper to make usage of the `CREATE2` EVM opcode easier and safer.
 * `CREATE2` can be used to compute in advance the address where a smart
 * contract will be deployed, which allows for interesting new mechanisms known
 * as 'counterfactual interactions'.
 *
 * See the https://eips.ethereum.org/EIPS/eip-1014#motivation[EIP] for more
 * information.
 */
library Create2 {
    /**
     * @dev Not enough balance for performing a CREATE2 deploy.
     */
    error Create2InsufficientBalance(uint256 balance, uint256 needed);

    /**
     * @dev There's no code to deploy.
     */
    error Create2EmptyBytecode();

    /**
     * @dev The deployment failed.
     */
    error Create2FailedDeployment();

    /**
     * @dev Deploys a contract using `CREATE2`. The address where the contract
     * will be deployed can be known in advance via {computeAddress}.
     *
     * The bytecode for a contract can be obtained from Solidity with
     * `type(contractName).creationCode`.
     *
     * Requirements:
     *
     * - `bytecode` must not be empty.
     * - `salt` must have not been used for `bytecode` already.
     * - the factory must have a balance of at least `amount`.
     * - if `amount` is non-zero, `bytecode` must have a `payable` constructor.
     */
    function deploy(uint256 amount, bytes32 salt, bytes memory bytecode) internal returns (address addr) {
        if (address(this).balance < amount) {
            revert Create2InsufficientBalance(address(this).balance, amount);
        }
        if (bytecode.length == 0) {
            revert Create2EmptyBytecode();
        }
        /// @solidity memory-safe-assembly
        assembly {
            addr := create2(amount, add(bytecode, 0x20), mload(bytecode), salt)
        }
        if (addr == address(0)) {
            revert Create2FailedDeployment();
        }
    }

    /**
     * @dev Returns the address where a contract will be stored if deployed via {deploy}. Any change in the
     * `bytecodeHash` or `salt` will result in a new destination address.
     */
    function computeAddress(bytes32 salt, bytes32 bytecodeHash) internal view returns (address) {
        return computeAddress(salt, bytecodeHash, address(this));
    }

    /**
     * @dev Returns the address where a contract will be stored if deployed via {deploy} from a contract located at
     * `deployer`. If `deployer` is this contract's address, returns the same value as {computeAddress}.
     */
    function computeAddress(bytes32 salt, bytes32 bytecodeHash, address deployer) internal pure returns (address addr) {
        /// @solidity memory-safe-assembly
        assembly {
            let ptr := mload(0x40) // Get free memory pointer

            // |                   | ↓ ptr ...  ↓ ptr + 0x0B (start) ...  ↓ ptr + 0x20 ...  ↓ ptr + 0x40 ...   |
            // |-------------------|---------------------------------------------------------------------------|
            // | bytecodeHash      |                                                        CCCCCCCCCCCCC...CC |
            // | salt              |                                      BBBBBBBBBBBBB...BB                   |
            // | deployer          | 000000...0000AAAAAAAAAAAAAAAAAAA...AA                                     |
            // | 0xFF              |            FF                                                             |
            // |-------------------|---------------------------------------------------------------------------|
            // | memory            | 000000...00FFAAAAAAAAAAAAAAAAAAA...AABBBBBBBBBBBBB...BBCCCCCCCCCCCCC...CC |
            // | keccak(start, 85) |            ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ |

            mstore(add(ptr, 0x40), bytecodeHash)
            mstore(add(ptr, 0x20), salt)
            mstore(ptr, deployer) // Right-aligned with 12 preceding garbage bytes
            let start := add(ptr, 0x0b) // The hashed data starts at the final garbage byte which we will set to 0xff
            mstore8(start, 0xff)
            addr := keccak256(start, 85)
        }
    }
}

File 12 of 18 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @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 13 of 18 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

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

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 14 of 18 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 15 of 18 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

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

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the 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 towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (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 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 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.

            uint256 twos = denominator & (0 - denominator);
            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 (unsignedRoundsUp(rounding) && 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
     * towards zero.
     *
     * 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 + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * 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 + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * 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 + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * 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 256, 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 + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

File 17 of 18 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 18 of 18 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.20;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS
    }

    /**
     * @dev The signature derives the `address(0)`.
     */
    error ECDSAInvalidSignature();

    /**
     * @dev The signature has an invalid length.
     */
    error ECDSAInvalidSignatureLength(uint256 length);

    /**
     * @dev The signature has an S value that is in the upper half order.
     */
    error ECDSAInvalidSignatureS(bytes32 s);

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not
     * return address(0) without also returning an error description. Errors are documented using an enum (error type)
     * and a bytes32 providing additional information about the error.
     *
     * If no error is returned, then the address can be used for verification purposes.
     *
     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length));
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) {
        unchecked {
            bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
            // We do not check for an overflow here since the shift operation results in 0 or 1.
            uint8 v = uint8((uint256(vs) >> 255) + 27);
            return tryRecover(hash, v, r, s);
        }
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError, bytes32) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS, s);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature, bytes32(0));
        }

        return (signer, RecoverError.NoError, bytes32(0));
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.
     */
    function _throwError(RecoverError error, bytes32 errorArg) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert ECDSAInvalidSignature();
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert ECDSAInvalidSignatureLength(uint256(errorArg));
        } else if (error == RecoverError.InvalidSignatureS) {
            revert ECDSAInvalidSignatureS(errorArg);
        }
    }
}

Settings
{
  "remappings": [
    "@openzeppelin/contracts/=lib/openzeppelin-contracts-upgradeable/lib/openzeppelin-contracts/contracts/",
    "@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
    "ds-test/=lib/openzeppelin-contracts-upgradeable/lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts-upgradeable/lib/openzeppelin-contracts/",
    "openzeppelin-foundry-upgrades/=lib/openzeppelin-foundry-upgrades/src/",
    "solidity-stringutils/=lib/openzeppelin-foundry-upgrades/lib/solidity-stringutils/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "viaIR": false,
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"contract ERC6551Registry","name":"registry_","type":"address"},{"internalType":"contract ERC6551Account","name":"implementation_","type":"address"},{"internalType":"bytes32","name":"salt_","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyExists","type":"error"},{"inputs":[],"name":"DecimalsTooLow","type":"error"},{"inputs":[],"name":"InsufficientAllowance","type":"error"},{"inputs":[],"name":"InvalidApproval","type":"error"},{"inputs":[],"name":"InvalidExemption","type":"error"},{"inputs":[],"name":"InvalidOperator","type":"error"},{"inputs":[],"name":"InvalidRecipient","type":"error"},{"inputs":[],"name":"InvalidSender","type":"error"},{"inputs":[],"name":"InvalidSigner","type":"error"},{"inputs":[],"name":"InvalidSpender","type":"error"},{"inputs":[],"name":"InvalidTokenId","type":"error"},{"inputs":[],"name":"MintLimitReached","type":"error"},{"inputs":[],"name":"NotFound","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnedIndexOverflow","type":"error"},{"inputs":[],"name":"PermitDeadlineExpired","type":"error"},{"inputs":[],"name":"QueueEmpty","type":"error"},{"inputs":[],"name":"QueueFull","type":"error"},{"inputs":[],"name":"QueueOutOfBounds","type":"error"},{"inputs":[],"name":"RecipientIsERC721TransferExempt","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"UnsafeRecipient","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","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":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ID_ENCODING_PREFIX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id_","type":"uint256"}],"name":"account","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ERC6551Registry","name":"registry_","type":"address"},{"internalType":"contract ERC6551Account","name":"implementation_","type":"address"},{"internalType":"bytes32","name":"salt_","type":"bytes32"}],"name":"add6551Setup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowSelfExempts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender_","type":"address"},{"internalType":"uint256","name":"valueOrId_","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender_","type":"address"},{"internalType":"uint256","name":"value_","type":"uint256"}],"name":"erc20Approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"}],"name":"erc20BalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"erc20TotalSupply","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":"value_","type":"uint256"}],"name":"erc20TransferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender_","type":"address"},{"internalType":"uint256","name":"id_","type":"uint256"}],"name":"erc721Approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"}],"name":"erc721BalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"erc721TotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target_","type":"address"}],"name":"erc721TransferExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from_","type":"address"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"id_","type":"uint256"}],"name":"erc721TransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id_","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint8","name":"operation","type":"uint8"}],"name":"execute","outputs":[{"internalType":"bytes","name":"result","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getERC721QueueLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"start_","type":"uint256"},{"internalType":"uint256","name":"count_","type":"uint256"}],"name":"getERC721TokensInQueue","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply721","type":"uint256"},{"internalType":"bool","name":"create","type":"bool"}],"name":"launch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"liveNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minted","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":"uint256","name":"","type":"uint256"}],"name":"nft_setup_set","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"}],"name":"owned","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id_","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"erc721Owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"spender_","type":"address"},{"internalType":"uint256","name":"value_","type":"uint256"},{"internalType":"uint256","name":"deadline_","type":"uint256"},{"internalType":"uint8","name":"v_","type":"uint8"},{"internalType":"bytes32","name":"r_","type":"bytes32"},{"internalType":"bytes32","name":"s_","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from_","type":"address"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"id_","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":"id_","type":"uint256"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator_","type":"address"},{"internalType":"bool","name":"approved_","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"},{"internalType":"bool","name":"value_","type":"bool"}],"name":"setERC721TransferExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state_","type":"bool"}],"name":"setSelfERC721TransferExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"setup","outputs":[{"internalType":"contract ERC6551Account","name":"implementation","type":"address"},{"internalType":"contract ERC6551Registry","name":"registry","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"stateMutability":"view","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":"id_","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":"to_","type":"address"},{"internalType":"uint256","name":"value_","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from_","type":"address"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"valueOrId_","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"units","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"updateURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"setupId_","type":"uint256"},{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"upgrade6551Setup","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610140604052601e6101009081527f68747470733a2f2f65726334642d646170702e76657263656c2e6170702f00006101205260119061003f9082610d05565b5034801561004c57600080fd5b50604051614bc8380380614bc883398101604081905261006b91610e7e565b858585338061009457604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b61009d816101ff565b5060036100aa8482610d05565b5060046100b78382610d05565b5060128160ff1610156100dd576040516398790fd560e01b815260040160405180910390fd5b60ff811660808190526100f190600a611031565b60a0524660c05261010061024f565b60e052506101279150737a250d5630b4cf539739df2c5dacb4c659f2488d905060016102e9565b604080516060810182526001600160a01b03938416815293831660208501908152908401918252600f8054600181018255600091909152935160039094027f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802810180549585166001600160a01b031996871617905590517f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8038201805491909416941693909317909155517f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac804909101555061118f915050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60036040516102819190611047565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b6001600160a01b0382166103105760405163a41e3d3f60e01b815260040160405180910390fd5b80156103245761031f82610358565b61032d565b61032d82610391565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6001600160a01b0381166000908152600c6020526040812054905b8181101561038c5761038483610410565b600101610373565b505050565b60a0516000906103b6836001600160a01b031660009081526007602052604090205490565b6103c091906110bc565b905060006103e3836001600160a01b03166000908152600c602052604090205490565b905060005b6103f282846110de565b81101561040a57610402846104b8565b6001016103e8565b50505050565b6001600160a01b03811661043757604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0381166000908152600c60205260408120805461045d906001906110de565b8154811061046d5761046d6110f1565b6000918252602090912060108204015461049b91600f166002026101000a900461ffff16600160ff1b611107565b90506104a9826000836105d2565b6104b4600182610848565b5050565b6001600160a01b0381166104df57604051634e46966960e11b815260040160405180910390fd5b60006104eb6001610939565b610512576104f96001610984565b61050b9061ffff16600160ff1b611107565b9050610594565b6006600081546105219061111a565b909155506006546001016105485760405163303b682f60e01b815260040160405180910390fd5b60065461055990600160ff1b611107565b600f5490915060009061056e906001906110de565b60068054600090815260106020526040902082905554909150610592908290610a94565b505b6000818152600b60205260409020546001600160a01b031680156105cb5760405163119b4fd360e11b815260040160405180910390fd5b61038c8184845b6001600160a01b0383161561073f57600081815260096020908152604080832080546001600160a01b03191690556001600160a01b0386168352600c90915281208054610621906001906110de565b81548110610631576106316110f1565b6000918252602090912060108204015461065f91600f166002026101000a900461ffff16600160ff1b611107565b90508181146106ea576000828152600b602052604081205460a01c6001600160a01b0386166000908152600c6020526040902080549192508391839081106106a9576106a96110f1565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506106e88282610b7260201b60201c565b505b6001600160a01b0384166000908152600c6020526040902080548061071157610711611133565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a02191690559055505b6001600160a01b038216156107e5576000818152600b6020526040902080546001600160a01b0319166001600160a01b0384160190556001600160a01b0382166000818152600c60209081526040822080546001808201835582855292842060108204018054600f9092166002026101000a61ffff81810219909316928816029190911790559290915290546107e09183916107db91906110de565b610b72565b6107f5565b6000818152600b60205260408120555b610803600160ff1b826110de565b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b81546001600160401b0380821691680100000000000000009004166000819003610878575060001901600f61087d565b600019015b83546001600160401b03838116600160801b909204161480156108b3575083546001600160401b03828116600160c01b90920416145b156108d157604051638acb5f2760e01b815260040160405180910390fd5b6001600160401b03821660009081526001850160205260409020546108f7908285610bd9565b6001600160401b03928316600081815260018701602052604090209190915584546001600160801b031916176801000000000000000091909216021790915550565b8054600090600160c01b81046001600160401b03908116680100000000000000009092041614801561097e57508154600160801b81046001600160401b039081169116145b92915050565b80546000906001600160401b03600160801b8204811691600160c01b810482169116821480156109cc575083546001600160401b038281166801000000000000000090920416145b156109ea576040516375e52f4f60e01b815260040160405180910390fd5b806001600160401b0316600003610a07575060001901600f610a0c565b600019015b6001600160401b0382166000908152600185016020526040902054610a318183610c1a565b9350610a3f81836000610bd9565b6001600160401b03938416600081815260018801602052604090209190915585546001600160801b0316600160801b9091026001600160c01b031617600160c01b929093169190910291909117909255919050565b6000600f8381548110610aa957610aa96110f1565b60009182526020918290206040805160608101825260039390930290910180546001600160a01b0390811680855260018301549091169484018590526002909101548383018190529151638a54c52f60e01b81526004810191909152602481019190915246604482015230606482015260848101859052909250638a54c52f9060a4016020604051808303816000875af1925050508015610b67575060408051601f3d908101601f19168201909252610b6491810190611149565b60015b1561038c5750505050565b6000828152600b60205260409020546001600160601b03821115610ba957604051633f2cd0e360e21b815260040160405180910390fd5b6000928352600b60205260409092206001600160a01b039290921660a09190911b6001600160a01b031916019055565b6000610be6836010611166565b6001600160401b03168261ffff16901b610c0584610c4560201b60201c565b198516610c129190611107565b949350505050565b6000610c27826010611166565b6001600160401b0316610c3983610c45565b8416901c905092915050565b6000610c52826010611166565b6001600160401b031661ffff901b9050919050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680610c9157607f821691505b602082108103610cb157634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561038c57806000526020600020601f840160051c81016020851015610cde5750805b601f840160051c820191505b81811015610cfe5760008155600101610cea565b5050505050565b81516001600160401b03811115610d1e57610d1e610c67565b610d3281610d2c8454610c7d565b84610cb7565b6020601f821160018114610d665760008315610d4e5750848201515b600019600385901b1c1916600184901b178455610cfe565b600084815260208120601f198516915b82811015610d965787850151825560209485019460019092019101610d76565b5084821015610db45786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b600082601f830112610dd457600080fd5b81516001600160401b03811115610ded57610ded610c67565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610e1b57610e1b610c67565b604052818152838201602001851015610e3357600080fd5b60005b82811015610e5257602081860181015183830182015201610e36565b506000918101602001919091529392505050565b6001600160a01b0381168114610e7b57600080fd5b50565b60008060008060008060c08789031215610e9757600080fd5b86516001600160401b03811115610ead57600080fd5b610eb989828a01610dc3565b602089015190975090506001600160401b03811115610ed757600080fd5b610ee389828a01610dc3565b955050604087015160ff81168114610efa57600080fd5b6060880151909450610f0b81610e66565b6080880151909350610f1c81610e66565b60a09790970151959894975092959194919391925050565b634e487b7160e01b600052601160045260246000fd5b6001815b6001841115610f8557808504811115610f6957610f69610f34565b6001841615610f7757908102905b60019390931c928002610f4e565b935093915050565b600082610f9c5750600161097e565b81610fa95750600061097e565b8160018114610fbf5760028114610fc957610fe5565b600191505061097e565b60ff841115610fda57610fda610f34565b50506001821b61097e565b5060208310610133831016604e8410600b8410161715611008575081810a61097e565b6110156000198484610f4a565b806000190482111561102957611029610f34565b029392505050565b600061104060ff841683610f8d565b9392505050565b600080835461105581610c7d565b60018216801561106c5760018114611081576110b1565b60ff19831686528115158202860193506110b1565b86600052602060002060005b838110156110a95781548882015260019091019060200161108d565b505081860193505b509195945050505050565b6000826110d957634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561097e5761097e610f34565b634e487b7160e01b600052603260045260246000fd5b8082018082111561097e5761097e610f34565b60006001820161112c5761112c610f34565b5060010190565b634e487b7160e01b600052603160045260246000fd5b60006020828403121561115b57600080fd5b815161104081610e66565b6001600160401b03818116838216029081169081811461118857611188610f34565b5092915050565b60805160a05160c05160e0516139ac61121c6000396000610dbd01526000610d8d0152600081816107410152818161109d01528181611c0001528181612681015281816127580152818161279c015281816128150152818161283f015281816128930152818161296201528181612999015281816129dd0152612a040152600061048f01526139ac6000f3fe6080604052600436106102e35760003560e01c8063744140cb11610190578063c30f4a5a116100dc578063d96ca0b911610095578063dfabc0331161006f578063dfabc03314610948578063e985e9c514610968578063f2fde38b146109a3578063f780bc1a146109c357600080fd5b8063d96ca0b9146108d0578063dd62ed3e146108f0578063dd6376991461092857600080fd5b8063c30f4a5a14610826578063c5ab3ba614610846578063c6e672b91461085b578063c87b56dd1461087b578063cea8d6ca1461089b578063d505accf146108b057600080fd5b806395d89b4111610149578063a9059cbb11610123578063a9059cbb14610783578063b1ab9317146107a3578063b3f9ea34146107d0578063b88d4fde1461080657600080fd5b806395d89b411461071a578063976a84351461072f578063a22cb4651461076357600080fd5b8063744140cb14610665578063751039fc146106855780637ecebe001461069a57806389fb4c66146106c75780638a696e50146106dc5780638da5cb5b146106fc57600080fd5b80633644e5151161024f5780634f02c4201161020857806368e8fe6d116101e257806368e8fe6d146105de5780636e8f624b1461060b57806370a0823114610623578063715018a61461065057600080fd5b80634f02c420146105955780636352211e146105ab57806365c0bd4e146105cb57600080fd5b80633644e515146104c35780633bb7bf1d146104d857806342842e0e146104fa5780634313b9e51461051a5780634d631360146105605780634d9660721461057557600080fd5b806309674eb0116102a157806309674eb0146103f257806309f0ef651461040757806318160ddd1461042757806323b872dd1461043d5780632dd7c6581461045d578063313ce5671461047d57600080fd5b8062773040146102e857806301ffc9a71461031157806302519da31461034157806306fdde031461036f578063081812fc14610384578063095ea7b3146103d2575b600080fd5b6102fb6102f6366004613051565b6109e3565b6040516103089190613149565b60405180910390f35b34801561031d57600080fd5b5061033161032c366004613172565b610a73565b6040519015158152602001610308565b34801561034d57600080fd5b5061036161035c36600461318f565b610aaa565b604051908152602001610308565b34801561037b57600080fd5b506102fb610ac5565b34801561039057600080fd5b506103ba61039f3660046131ac565b6009602052600090815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610308565b3480156103de57600080fd5b506103316103ed3660046131c5565b610b53565b3480156103fe57600080fd5b50610361610bca565b34801561041357600080fd5b5061033161042236600461318f565b610bdb565b34801561043357600080fd5b5061036160055481565b34801561044957600080fd5b506103316104583660046131f1565b610c0d565b34801561046957600080fd5b506103ba6104783660046131ac565b610ca1565b34801561048957600080fd5b506104b17f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff9091168152602001610308565b3480156104cf57600080fd5b50610361610d89565b3480156104e457600080fd5b506104f86104f33660046131f1565b610ddf565b005b34801561050657600080fd5b506104f86105153660046131f1565b610eb8565b34801561052657600080fd5b5061053a6105353660046131ac565b610ed8565b604080516001600160a01b03948516815293909216602084015290820152606001610308565b34801561056c57600080fd5b506104f8610f18565b34801561058157600080fd5b506103316105903660046131c5565b610f2f565b3480156105a157600080fd5b5061036160065481565b3480156105b757600080fd5b506103ba6105c63660046131ac565b610fbc565b6104f86105d9366004613242565b61103b565b3480156105ea57600080fd5b506103616105f93660046131ac565b60106020526000908152604090205481565b34801561061757600080fd5b50610361600160ff1b81565b34801561062f57600080fd5b5061036161063e36600461318f565b60076020526000908152604090205481565b34801561065c57600080fd5b506104f861135d565b34801561067157600080fd5b506104f861068036600461326e565b611371565b34801561069157600080fd5b506104f8611407565b3480156106a657600080fd5b506103616106b536600461318f565b600e6020526000908152604090205481565b3480156106d357600080fd5b50600554610361565b3480156106e857600080fd5b506104f86106f7366004613290565b611417565b34801561070857600080fd5b506000546001600160a01b03166103ba565b34801561072657600080fd5b506102fb61147f565b34801561073b57600080fd5b506103617f000000000000000000000000000000000000000000000000000000000000000081565b34801561076f57600080fd5b506104f861077e3660046132ab565b61148c565b34801561078f57600080fd5b5061033161079e3660046131c5565b61151f565b3480156107af57600080fd5b506107c36107be36600461318f565b611553565b60405161030891906132d7565b3480156107dc57600080fd5b506103616107eb36600461318f565b6001600160a01b03166000908152600c602052604090205490565b34801561081257600080fd5b506104f86108213660046133c5565b611654565b34801561083257600080fd5b506104f8610841366004613444565b61174a565b34801561085257600080fd5b50600654610361565b34801561086757600080fd5b506104f86108763660046132ab565b61175e565b34801561088757600080fd5b506102fb6108963660046131ac565b611770565b3480156108a757600080fd5b506104f86117a4565b3480156108bc57600080fd5b506104f86108cb36600461348c565b6117bb565b3480156108dc57600080fd5b506103316108eb3660046131f1565b6119fe565b3480156108fc57600080fd5b5061036161090b3660046134fb565b600860209081526000928352604080842090915290825290205481565b34801561093457600080fd5b506104f86109433660046131f1565b611abe565b34801561095457600080fd5b506103316109633660046131c5565b611c2f565b34801561097457600080fd5b506103316109833660046134fb565b600a60209081526000928352604080842090915290825290205460ff1681565b3480156109af57600080fd5b506104f86109be36600461318f565b611d1c565b3480156109cf57600080fd5b506107c36109de36600461326e565b611d57565b60606109ee87610ca1565b6001600160a01b0316635194544787878787876040518663ffffffff1660e01b8152600401610a21959493929190613534565b6000604051808303816000875af1158015610a40573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610a689190810190613589565b979650505050505050565b60006001600160e01b0319821663caf91ff560e01b1480610aa457506001600160e01b031982166301ffc9a760e01b145b92915050565b6001600160a01b031660009081526007602052604090205490565b60038054610ad2906135f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe906135f6565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b505050505081565b6000600160ff1b8210610b7157610b6a8383610f2f565b9050610aa4565b610b87610b82600160ff1b84613646565b611df7565b15610bb7576000610b988484611c2f565b905080610bb157610ba98484610f2f565b915050610aa4565b50610bc1565b610b6a8383610f2f565b50600192915050565b6000610bd66001611e10565b905090565b60006001600160a01b0382161580610aa45750506001600160a01b03166000908152600d602052604090205460ff1690565b6000610c20610b82600160ff1b84613646565b15610c8b57610c51610c36600160ff1b84613646565b6000908152600b60205260409020546001600160a01b031690565b6001600160a01b0316846001600160a01b031614610c7b57610c748484846119fe565b9050610c9a565b610c86848484611abe565b610c96565b610c748484846119fe565b5060015b9392505050565b600081815260106020526040812054600f80548392908110610cc557610cc5613659565b60009182526020918290206040805160608101825260039390930290910180546001600160a01b039081168085526001830154909116948401859052600290910154838301819052915163246a002160e01b8152600481019190915260248101919091524660448201523060648201526084810186905290925063246a00219060a401602060405180830381865afa158015610d65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9a919061366f565b60007f00000000000000000000000000000000000000000000000000000000000000004614610dba57610bd6611e53565b507f000000000000000000000000000000000000000000000000000000000000000090565b610de7611eed565b604080516060810182526001600160a01b03938416815293831660208501908152908401918252600f8054600181018255600091909152935160039094027f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802810180549585166001600160a01b031996871617905590517f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8038201805491909416941693909317909155517f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80490910155565b610ed383838360405180602001604052806000815250611654565b505050565b600f8181548110610ee857600080fd5b60009182526020909120600390910201805460018201546002909201546001600160a01b03918216935091169083565b610f20611eed565b6014805460ff19166001179055565b60006001600160a01b038316610f5857604051635461585f60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350600192915050565b6000610fcc600160ff1b83613646565b6000818152600b60205260409020549092506001600160a01b03169050610ff282611df7565b61100f576040516307ed98ed60e31b815260040160405180910390fd5b6001600160a01b0381166110365760405163c5723b5160e01b815260040160405180910390fd5b919050565b611043611eed565b6005541561108b5760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b60448201526064015b60405180910390fd5b611096306001611f1a565b60006110c27f00000000000000000000000000000000000000000000000000000000000000008461368c565b601381905590506110d33082611f89565b306000908152600860209081526040808320737a250d5630b4cf539739df2c5dacb4c659f2488d84529091529020600019905581156112ad57737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561115e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611182919061366f565b6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111e3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611207919061366f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015611254573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611278919061366f565b60148054610100600160a81b0319166101006001600160a01b03938416810291909117918290556112ad929104166001611f1a565b60405163f305d71960e01b81523060048201526024810182905260006044820181905260648201523360848201524260a4820152737a250d5630b4cf539739df2c5dacb4c659f2488d9063f305d71990479060c40160606040518083038185885af1158015611320573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061134591906136a3565b50505060648161135591906136e7565b601355505050565b611365611eed565b61136f6000611fee565b565b6000818152600b60205260409020546001600160a01b031633146113a7576040516282b42960e81b815260040160405180910390fd5b600f5482106113e85760405162461bcd60e51b815260206004820152600d60248201526c0496e76616c696420736574757609c1b6044820152606401611082565b6000818152601060205260409020829055611403828261203e565b5050565b61140f611eed565b600554601355565b60145460ff166114735760405162461bcd60e51b815260206004820152602160248201527f506c65617365207761697420756e74696c206665617475726520656e61626c656044820152601960fa1b6064820152608401611082565b61147c8161211c565b50565b60048054610ad2906135f6565b6001600160a01b0382166114b35760405163ccea9e6f60e01b815260040160405180910390fd5b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006001600160a01b03831661154857604051634e46966960e11b815260040160405180910390fd5b610c9a338484612126565b6001600160a01b0381166000908152600c6020526040812054606091906001600160401b038111156115875761158761331a565b6040519080825280602002602001820160405280156115b0578160200160208202803683370190505b50905060005b6001600160a01b0384166000908152600c602052604090205481101561164d576001600160a01b0384166000908152600c6020526040902080548290811061160057611600613659565b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff1682828151811061163a5761163a613659565b60209081029190910101526001016115b6565b5092915050565b611665610b82600160ff1b84613646565b611682576040516307ed98ed60e31b815260040160405180910390fd5b61168d848484610c0d565b506001600160a01b0383163b158015906117265750604051630a85bd0160e11b808252906001600160a01b0385169063150b7a02906116d6903390899088908890600401613709565b6020604051808303816000875af11580156116f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117199190613746565b6001600160e01b03191614155b1561174457604051633da6393160e01b815260040160405180910390fd5b50505050565b611752611eed565b601161140382826137b1565b611766611eed565b6114038282611f1a565b6060601161177d836121d9565b60405160200161178e9291906138e1565b6040516020818303038152906040529050919050565b6117ac611eed565b6012805460ff19166001179055565b428410156117dc576040516305787bdf60e01b815260040160405180910390fd5b6117e585611df7565b15611803576040516303e7c1bd60e31b815260040160405180910390fd5b6001600160a01b03861661182a57604051635461585f60e01b815260040160405180910390fd5b60006001611836610d89565b6001600160a01b038a81166000818152600e602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa158015611942573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615806119775750876001600160a01b0316816001600160a01b031614155b1561199557604051632057875960e21b815260040160405180910390fd5b6001600160a01b0390811660009081526008602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b60006001600160a01b038416611a2757604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b038316611a4e57604051634e46966960e11b815260040160405180910390fd5b6001600160a01b03841660009081526008602090815260408083203384529091529020546000198114611aaa57611a858382613906565b6001600160a01b03861660009081526008602090815260408083203384529091529020555b611ab5858585612126565b95945050505050565b611acc600160ff1b82613646565b90506001600160a01b038316611af557604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b038216611b1c57604051634e46966960e11b815260040160405180910390fd5b6000818152600b60205260409020546001600160a01b03848116911614611b55576040516282b42960e81b815260040160405180910390fd5b336001600160a01b03841614801590611b9257506001600160a01b0383166000908152600a6020908152604080832033845290915290205460ff16155b8015611bb557506000818152600960205260409020546001600160a01b03163314155b15611bd2576040516282b42960e81b815260040160405180910390fd5b611bdb82610bdb565b15611bf957604051635ce7539760e01b815260040160405180910390fd5b611c2483837f000000000000000000000000000000000000000000000000000000000000000061226b565b610ed3838383612327565b6000611c3f600160ff1b83613646565b6000818152600b60205260409020549092506001600160a01b0316338114801590611c8e57506001600160a01b0381166000908152600a6020908152604080832033845290915290205460ff16155b15611c9d576000915050610aa4565b600083815260096020526040902080546001600160a01b0319166001600160a01b038616179055611cd2600160ff1b84613906565b846001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45060019392505050565b611d24611eed565b6001600160a01b038116611d4e57604051631e4fbdf760e01b815260006004820152602401611082565b61147c81611fee565b60606000826001600160401b03811115611d7357611d7361331a565b604051908082528060200260200182016040528015611d9c578160200160208202803683370190505b509050835b611dab8486613646565b811015611def57611dbd600182612597565b61ffff1682611dcc8784613906565b81518110611ddc57611ddc613659565b6020908102919091010152600101611da1565b509392505050565b6000600160ff1b82118015610aa4575050600019141590565b54600f196001600160401b038083166010908102600160401b850483168203600160c01b8604841601600160801b90950483169091029390930192909203011690565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6003604051611e859190613919565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b6000546001600160a01b0316331461136f5760405163118cdaa760e01b8152336004820152602401611082565b6001600160a01b038216611f415760405163a41e3d3f60e01b815260040160405180910390fd5b8015611f5557611f5082612649565b611f5e565b611f5e8261267d565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6001600160a01b038216611fb057604051634e46966960e11b815260040160405180910390fd5b600160ff1b81600554611fc39190613646565b1115611fe25760405163303b682f60e01b815260040160405180910390fd5b610ed360008383612126565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000600f838154811061205357612053613659565b60009182526020918290206040805160608101825260039390930290910180546001600160a01b0390811680855260018301549091169484018590526002909101548383018190529151638a54c52f60e01b81526004810191909152602481019190915246604482015230606482015260848101859052909250638a54c52f9060a4016020604051808303816000875af1925050508015612111575060408051601f3d908101601f1916820190925261210e9181019061366f565b60015b15610ed35750505050565b61147c3382611f1a565b60125460009060ff1661213e5761213e836001611f1a565b6014546001600160a01b0384811661010090920416148015906121645750600554601354105b156121c657600061217484610aaa565b6013549091506121848483613646565b11156121c45760405162461bcd60e51b815260206004820152600f60248201526e546f6f206d616e7920746f6b656e7360881b6044820152606401611082565b505b6121d18484846126fd565b949350505050565b606060006121e683612a5f565b60010190506000816001600160401b038111156122055761220561331a565b6040519080825280601f01601f19166020018201604052801561222f576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461223957509392505050565b6001600160a01b03831661229657806005600082825461228b9190613646565b909155506122c49050565b6001600160a01b038316600090815260076020526040812080548392906122be908490613906565b90915550505b6001600160a01b03808316600081815260076020526040908190208054850190555190918516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061231a9085815260200190565b60405180910390a3505050565b6001600160a01b0383161561248e57600081815260096020908152604080832080546001600160a01b03191690556001600160a01b0386168352600c9091528120805461237690600190613906565b8154811061238657612386613659565b600091825260209091206010820401546123b491600f166002026101000a900461ffff16600160ff1b613646565b9050818114612439576000828152600b602052604081205460a01c6001600160a01b0386166000908152600c6020526040902080549192508391839081106123fe576123fe613659565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506124378282612b37565b505b6001600160a01b0384166000908152600c6020526040902080548061246057612460613925565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a02191690559055505b6001600160a01b03821615612534576000818152600b6020526040902080546001600160a01b0319166001600160a01b0384160190556001600160a01b0382166000818152600c60209081526040822080546001808201835582855292842060108204018054600f9092166002026101000a61ffff818102199093169288160291909117905592909152905461252f91839161252a9190613906565b612b37565b612544565b6000818152600b60205260408120555b612552600160ff1b82613906565b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006125a283611e10565b6125ad90601061368c565b82106125cc5760405163580821e760e01b815260040160405180910390fd5b610c9a600184016000601085046010808789546001600160401b03600160401b909104811692909106919091011681612607576126076136d1565b88549190046001600160401b03808316919091019290920182168352602083019390935260409091016000205491601091600160401b90910416850106612ba3565b6001600160a01b0381166000908152600c6020526040812054905b81811015610ed35761267583612bce565b600101612664565b60007f00000000000000000000000000000000000000000000000000000000000000006126a983610aaa565b6126b391906136e7565b905060006126d6836001600160a01b03166000908152600c602052604090205490565b905060005b6126e58284613906565b811015611744576126f584612c72565b6001016126db565b60008061270985610aaa565b9050600061271685610aaa565b905061272386868661226b565b600061272e87610bdb565b9050600061273b87610bdb565b90508180156127475750805b612a515781156127f057600061277d7f0000000000000000000000000000000000000000000000000000000000000000856136e7565b6001600160a01b0389166000908152600760205260409020546127c1907f0000000000000000000000000000000000000000000000000000000000000000906136e7565b6127cb9190613906565b905060005b818110156127e9576127e189612c72565b6001016127d0565b5050612a51565b801561288c576001600160a01b03881660009081526007602052604081205461283a907f0000000000000000000000000000000000000000000000000000000000000000906136e7565b6128647f0000000000000000000000000000000000000000000000000000000000000000876136e7565b61286e9190613906565b905060005b818110156127e9576128848a612bce565b600101612873565b60006128b87f0000000000000000000000000000000000000000000000000000000000000000886136e7565b905060005b8181101561295e576001600160a01b038a166000908152600c60205260408120546128ea90600190613906565b6001600160a01b038c166000908152600c60205260408120805492935090918390811061291957612919613659565b6000918252602090912060108204015461294791600f166002026101000a900461ffff16600160ff1b613646565b90506129548c8c83612327565b50506001016128bd565b50807f000000000000000000000000000000000000000000000000000000000000000061298a8b610aaa565b61299491906136e7565b6129be7f0000000000000000000000000000000000000000000000000000000000000000886136e7565b6129c89190613906565b11156129d7576129d789612bce565b80612a027f0000000000000000000000000000000000000000000000000000000000000000866136e7565b7f0000000000000000000000000000000000000000000000000000000000000000612a2c8b610aaa565b612a3691906136e7565b612a409190613906565b1115612a4f57612a4f88612c72565b505b506001979650505050505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310612a9e5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612aca576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612ae857662386f26fc10000830492506010015b6305f5e1008310612b00576305f5e100830492506008015b6127108310612b1457612710830492506004015b60648310612b26576064830492506002015b600a8310610aa45760010192915050565b6000828152600b60205260409020546bffffffffffffffffffffffff821115612b7357604051633f2cd0e360e21b815260040160405180910390fd5b6000928352600b60205260409092206001600160a01b039290921660a09190911b6001600160a01b031916019055565b6000612bb082601061393b565b6001600160401b0316612bc283612d90565b8416901c905092915050565b6001600160a01b038116612bf557604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0381166000908152600c602052604081208054612c1b90600190613906565b81548110612c2b57612c2b613659565b60009182526020909120601082040154612c5991600f166002026101000a900461ffff16600160ff1b613646565b9050612c6782600083612327565b611403600182612db2565b6001600160a01b038116612c9957604051634e46966960e11b815260040160405180910390fd5b6000612ca56001612ea2565b612ccc57612cb36001612ee4565b612cc59061ffff16600160ff1b613646565b9050612d4e565b600660008154612cdb9061395d565b90915550600654600101612d025760405163303b682f60e01b815260040160405180910390fd5b600654612d1390600160ff1b613646565b600f54909150600090612d2890600190613906565b60068054600090815260106020526040902082905554909150612d4c90829061203e565b505b6000818152600b60205260409020546001600160a01b03168015612d855760405163119b4fd360e11b815260040160405180910390fd5b610ed3818484612327565b6000612d9d82601061393b565b6001600160401b031661ffff901b9050919050565b81546001600160401b0380821691600160401b9004166000819003612ddd575060001901600f612de2565b600019015b83546001600160401b03838116600160801b90920416148015612e18575083546001600160401b03828116600160c01b90920416145b15612e3657604051638acb5f2760e01b815260040160405180910390fd5b6001600160401b0382166000908152600185016020526040902054612e5c908285612ff8565b6001600160401b03928316600081815260018701602052604090209190915584546fffffffffffffffffffffffffffffffff191617600160401b91909216021790915550565b8054600090600160c01b81046001600160401b03908116600160401b90920416148015610aa4575050546001600160401b03808216600160801b909204161490565b80546000906001600160401b03600160801b8204811691600160c01b81048216911682148015612f27575083546001600160401b03828116600160401b90920416145b15612f45576040516375e52f4f60e01b815260040160405180910390fd5b806001600160401b0316600003612f62575060001901600f612f67565b600019015b6001600160401b0382166000908152600185016020526040902054612f8c8183612ba3565b9350612f9a81836000612ff8565b6001600160401b03938416600081815260018801602052604090209190915585546fffffffffffffffffffffffffffffffff16600160801b9091026001600160c01b031617600160c01b929093169190910291909117909255919050565b600061300583601061393b565b6001600160401b03168261ffff16901b61301e84612d90565b1985166121d19190613646565b6001600160a01b038116811461147c57600080fd5b803560ff8116811461103657600080fd5b60008060008060008060a0878903121561306a57600080fd5b86359550602087013561307c8161302b565b94506040870135935060608701356001600160401b0381111561309e57600080fd5b8701601f810189136130af57600080fd5b80356001600160401b038111156130c557600080fd5b8960208284010111156130d757600080fd5b602091909101935091506130ed60808801613040565b90509295509295509295565b60005b838110156131145781810151838201526020016130fc565b50506000910152565b600081518084526131358160208601602086016130f9565b601f01601f19169290920160200192915050565b602081526000610c9a602083018461311d565b6001600160e01b03198116811461147c57600080fd5b60006020828403121561318457600080fd5b8135610c9a8161315c565b6000602082840312156131a157600080fd5b8135610c9a8161302b565b6000602082840312156131be57600080fd5b5035919050565b600080604083850312156131d857600080fd5b82356131e38161302b565b946020939093013593505050565b60008060006060848603121561320657600080fd5b83356132118161302b565b925060208401356132218161302b565b929592945050506040919091013590565b8035801515811461103657600080fd5b6000806040838503121561325557600080fd5b8235915061326560208401613232565b90509250929050565b6000806040838503121561328157600080fd5b50508035926020909101359150565b6000602082840312156132a257600080fd5b610c9a82613232565b600080604083850312156132be57600080fd5b82356132c98161302b565b915061326560208401613232565b602080825282518282018190526000918401906040840190835b8181101561330f5783518352602093840193909201916001016132f1565b509095945050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156133585761335861331a565b604052919050565b60006001600160401b038211156133795761337961331a565b50601f01601f191660200190565b600061339a61339584613360565b613330565b90508281528383830111156133ae57600080fd5b828260208301376000602084830101529392505050565b600080600080608085870312156133db57600080fd5b84356133e68161302b565b935060208501356133f68161302b565b92506040850135915060608501356001600160401b0381111561341857600080fd5b8501601f8101871361342957600080fd5b61343887823560208401613387565b91505092959194509250565b60006020828403121561345657600080fd5b81356001600160401b0381111561346c57600080fd5b8201601f8101841361347d57600080fd5b6121d184823560208401613387565b600080600080600080600060e0888a0312156134a757600080fd5b87356134b28161302b565b965060208801356134c28161302b565b955060408801359450606088013593506134de60808901613040565b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561350e57600080fd5b82356135198161302b565b915060208301356135298161302b565b809150509250929050565b6001600160a01b0386168152602081018590526080604082018190528101839052828460a0830137600060a08483010152600060a0601f19601f860116830101905060ff831660608301529695505050505050565b60006020828403121561359b57600080fd5b81516001600160401b038111156135b157600080fd5b8201601f810184136135c257600080fd5b80516135d061339582613360565b8181528560208385010111156135e557600080fd5b611ab58260208301602086016130f9565b600181811c9082168061360a57607f821691505b60208210810361362a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610aa457610aa4613630565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561368157600080fd5b8151610c9a8161302b565b8082028115828204841417610aa457610aa4613630565b6000806000606084860312156136b857600080fd5b5050815160208301516040909301519094929350919050565b634e487b7160e01b600052601260045260246000fd5b60008261370457634e487b7160e01b600052601260045260246000fd5b500490565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061373c9083018461311d565b9695505050505050565b60006020828403121561375857600080fd5b8151610c9a8161315c565b601f821115610ed357806000526020600020601f840160051c8101602085101561378a5750805b601f840160051c820191505b818110156137aa5760008155600101613796565b5050505050565b81516001600160401b038111156137ca576137ca61331a565b6137de816137d884546135f6565b84613763565b6020601f82116001811461381257600083156137fa5750848201515b600019600385901b1c1916600184901b1784556137aa565b600084815260208120601f198516915b828110156138425787850151825560209485019460019092019101613822565b50848210156138605786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b6000815461387c816135f6565b60018216801561389357600181146138a8576138d8565b60ff19831686528115158202860193506138d8565b84600052602060002060005b838110156138d0578154888201526001909101906020016138b4565b505081860193505b50505092915050565b60006138ed828561386f565b83516138fd8183602088016130f9565b01949350505050565b81810381811115610aa457610aa4613630565b6000610c9a828461386f565b634e487b7160e01b600052603160045260246000fd5b6001600160401b03818116838216029081169081811461164d5761164d613630565b60006001820161396f5761396f613630565b506001019056fea2646970667358221220ae0ff68d9a04806cac3e3f39af3d4961af591d99251684fe0a9fd052ad2aa25f64736f6c634300081a003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000050350fa0561ebbe63d0bd78ffb1743dc0ee91b390000000000000000000000006da75d7c9aa56fc5bffafd84d6ea1c6b38ab69d4494e434550542e4255494c4400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006496e6365707400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006494e434550540000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102e35760003560e01c8063744140cb11610190578063c30f4a5a116100dc578063d96ca0b911610095578063dfabc0331161006f578063dfabc03314610948578063e985e9c514610968578063f2fde38b146109a3578063f780bc1a146109c357600080fd5b8063d96ca0b9146108d0578063dd62ed3e146108f0578063dd6376991461092857600080fd5b8063c30f4a5a14610826578063c5ab3ba614610846578063c6e672b91461085b578063c87b56dd1461087b578063cea8d6ca1461089b578063d505accf146108b057600080fd5b806395d89b4111610149578063a9059cbb11610123578063a9059cbb14610783578063b1ab9317146107a3578063b3f9ea34146107d0578063b88d4fde1461080657600080fd5b806395d89b411461071a578063976a84351461072f578063a22cb4651461076357600080fd5b8063744140cb14610665578063751039fc146106855780637ecebe001461069a57806389fb4c66146106c75780638a696e50146106dc5780638da5cb5b146106fc57600080fd5b80633644e5151161024f5780634f02c4201161020857806368e8fe6d116101e257806368e8fe6d146105de5780636e8f624b1461060b57806370a0823114610623578063715018a61461065057600080fd5b80634f02c420146105955780636352211e146105ab57806365c0bd4e146105cb57600080fd5b80633644e515146104c35780633bb7bf1d146104d857806342842e0e146104fa5780634313b9e51461051a5780634d631360146105605780634d9660721461057557600080fd5b806309674eb0116102a157806309674eb0146103f257806309f0ef651461040757806318160ddd1461042757806323b872dd1461043d5780632dd7c6581461045d578063313ce5671461047d57600080fd5b8062773040146102e857806301ffc9a71461031157806302519da31461034157806306fdde031461036f578063081812fc14610384578063095ea7b3146103d2575b600080fd5b6102fb6102f6366004613051565b6109e3565b6040516103089190613149565b60405180910390f35b34801561031d57600080fd5b5061033161032c366004613172565b610a73565b6040519015158152602001610308565b34801561034d57600080fd5b5061036161035c36600461318f565b610aaa565b604051908152602001610308565b34801561037b57600080fd5b506102fb610ac5565b34801561039057600080fd5b506103ba61039f3660046131ac565b6009602052600090815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610308565b3480156103de57600080fd5b506103316103ed3660046131c5565b610b53565b3480156103fe57600080fd5b50610361610bca565b34801561041357600080fd5b5061033161042236600461318f565b610bdb565b34801561043357600080fd5b5061036160055481565b34801561044957600080fd5b506103316104583660046131f1565b610c0d565b34801561046957600080fd5b506103ba6104783660046131ac565b610ca1565b34801561048957600080fd5b506104b17f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff9091168152602001610308565b3480156104cf57600080fd5b50610361610d89565b3480156104e457600080fd5b506104f86104f33660046131f1565b610ddf565b005b34801561050657600080fd5b506104f86105153660046131f1565b610eb8565b34801561052657600080fd5b5061053a6105353660046131ac565b610ed8565b604080516001600160a01b03948516815293909216602084015290820152606001610308565b34801561056c57600080fd5b506104f8610f18565b34801561058157600080fd5b506103316105903660046131c5565b610f2f565b3480156105a157600080fd5b5061036160065481565b3480156105b757600080fd5b506103ba6105c63660046131ac565b610fbc565b6104f86105d9366004613242565b61103b565b3480156105ea57600080fd5b506103616105f93660046131ac565b60106020526000908152604090205481565b34801561061757600080fd5b50610361600160ff1b81565b34801561062f57600080fd5b5061036161063e36600461318f565b60076020526000908152604090205481565b34801561065c57600080fd5b506104f861135d565b34801561067157600080fd5b506104f861068036600461326e565b611371565b34801561069157600080fd5b506104f8611407565b3480156106a657600080fd5b506103616106b536600461318f565b600e6020526000908152604090205481565b3480156106d357600080fd5b50600554610361565b3480156106e857600080fd5b506104f86106f7366004613290565b611417565b34801561070857600080fd5b506000546001600160a01b03166103ba565b34801561072657600080fd5b506102fb61147f565b34801561073b57600080fd5b506103617f0000000000000000000000000000000000000000000000000de0b6b3a764000081565b34801561076f57600080fd5b506104f861077e3660046132ab565b61148c565b34801561078f57600080fd5b5061033161079e3660046131c5565b61151f565b3480156107af57600080fd5b506107c36107be36600461318f565b611553565b60405161030891906132d7565b3480156107dc57600080fd5b506103616107eb36600461318f565b6001600160a01b03166000908152600c602052604090205490565b34801561081257600080fd5b506104f86108213660046133c5565b611654565b34801561083257600080fd5b506104f8610841366004613444565b61174a565b34801561085257600080fd5b50600654610361565b34801561086757600080fd5b506104f86108763660046132ab565b61175e565b34801561088757600080fd5b506102fb6108963660046131ac565b611770565b3480156108a757600080fd5b506104f86117a4565b3480156108bc57600080fd5b506104f86108cb36600461348c565b6117bb565b3480156108dc57600080fd5b506103316108eb3660046131f1565b6119fe565b3480156108fc57600080fd5b5061036161090b3660046134fb565b600860209081526000928352604080842090915290825290205481565b34801561093457600080fd5b506104f86109433660046131f1565b611abe565b34801561095457600080fd5b506103316109633660046131c5565b611c2f565b34801561097457600080fd5b506103316109833660046134fb565b600a60209081526000928352604080842090915290825290205460ff1681565b3480156109af57600080fd5b506104f86109be36600461318f565b611d1c565b3480156109cf57600080fd5b506107c36109de36600461326e565b611d57565b60606109ee87610ca1565b6001600160a01b0316635194544787878787876040518663ffffffff1660e01b8152600401610a21959493929190613534565b6000604051808303816000875af1158015610a40573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610a689190810190613589565b979650505050505050565b60006001600160e01b0319821663caf91ff560e01b1480610aa457506001600160e01b031982166301ffc9a760e01b145b92915050565b6001600160a01b031660009081526007602052604090205490565b60038054610ad2906135f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe906135f6565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b505050505081565b6000600160ff1b8210610b7157610b6a8383610f2f565b9050610aa4565b610b87610b82600160ff1b84613646565b611df7565b15610bb7576000610b988484611c2f565b905080610bb157610ba98484610f2f565b915050610aa4565b50610bc1565b610b6a8383610f2f565b50600192915050565b6000610bd66001611e10565b905090565b60006001600160a01b0382161580610aa45750506001600160a01b03166000908152600d602052604090205460ff1690565b6000610c20610b82600160ff1b84613646565b15610c8b57610c51610c36600160ff1b84613646565b6000908152600b60205260409020546001600160a01b031690565b6001600160a01b0316846001600160a01b031614610c7b57610c748484846119fe565b9050610c9a565b610c86848484611abe565b610c96565b610c748484846119fe565b5060015b9392505050565b600081815260106020526040812054600f80548392908110610cc557610cc5613659565b60009182526020918290206040805160608101825260039390930290910180546001600160a01b039081168085526001830154909116948401859052600290910154838301819052915163246a002160e01b8152600481019190915260248101919091524660448201523060648201526084810186905290925063246a00219060a401602060405180830381865afa158015610d65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9a919061366f565b60007f00000000000000000000000000000000000000000000000000000000000000014614610dba57610bd6611e53565b507f44c82cb4ccff64b9902c54b1fdd974729a1bdd52c56f9fda8c82edf4170591ed90565b610de7611eed565b604080516060810182526001600160a01b03938416815293831660208501908152908401918252600f8054600181018255600091909152935160039094027f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802810180549585166001600160a01b031996871617905590517f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8038201805491909416941693909317909155517f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80490910155565b610ed383838360405180602001604052806000815250611654565b505050565b600f8181548110610ee857600080fd5b60009182526020909120600390910201805460018201546002909201546001600160a01b03918216935091169083565b610f20611eed565b6014805460ff19166001179055565b60006001600160a01b038316610f5857604051635461585f60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350600192915050565b6000610fcc600160ff1b83613646565b6000818152600b60205260409020549092506001600160a01b03169050610ff282611df7565b61100f576040516307ed98ed60e31b815260040160405180910390fd5b6001600160a01b0381166110365760405163c5723b5160e01b815260040160405180910390fd5b919050565b611043611eed565b6005541561108b5760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b60448201526064015b60405180910390fd5b611096306001611f1a565b60006110c27f0000000000000000000000000000000000000000000000000de0b6b3a76400008461368c565b601381905590506110d33082611f89565b306000908152600860209081526040808320737a250d5630b4cf539739df2c5dacb4c659f2488d84529091529020600019905581156112ad57737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561115e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611182919061366f565b6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111e3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611207919061366f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015611254573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611278919061366f565b60148054610100600160a81b0319166101006001600160a01b03938416810291909117918290556112ad929104166001611f1a565b60405163f305d71960e01b81523060048201526024810182905260006044820181905260648201523360848201524260a4820152737a250d5630b4cf539739df2c5dacb4c659f2488d9063f305d71990479060c40160606040518083038185885af1158015611320573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061134591906136a3565b50505060648161135591906136e7565b601355505050565b611365611eed565b61136f6000611fee565b565b6000818152600b60205260409020546001600160a01b031633146113a7576040516282b42960e81b815260040160405180910390fd5b600f5482106113e85760405162461bcd60e51b815260206004820152600d60248201526c0496e76616c696420736574757609c1b6044820152606401611082565b6000818152601060205260409020829055611403828261203e565b5050565b61140f611eed565b600554601355565b60145460ff166114735760405162461bcd60e51b815260206004820152602160248201527f506c65617365207761697420756e74696c206665617475726520656e61626c656044820152601960fa1b6064820152608401611082565b61147c8161211c565b50565b60048054610ad2906135f6565b6001600160a01b0382166114b35760405163ccea9e6f60e01b815260040160405180910390fd5b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006001600160a01b03831661154857604051634e46966960e11b815260040160405180910390fd5b610c9a338484612126565b6001600160a01b0381166000908152600c6020526040812054606091906001600160401b038111156115875761158761331a565b6040519080825280602002602001820160405280156115b0578160200160208202803683370190505b50905060005b6001600160a01b0384166000908152600c602052604090205481101561164d576001600160a01b0384166000908152600c6020526040902080548290811061160057611600613659565b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff1682828151811061163a5761163a613659565b60209081029190910101526001016115b6565b5092915050565b611665610b82600160ff1b84613646565b611682576040516307ed98ed60e31b815260040160405180910390fd5b61168d848484610c0d565b506001600160a01b0383163b158015906117265750604051630a85bd0160e11b808252906001600160a01b0385169063150b7a02906116d6903390899088908890600401613709565b6020604051808303816000875af11580156116f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117199190613746565b6001600160e01b03191614155b1561174457604051633da6393160e01b815260040160405180910390fd5b50505050565b611752611eed565b601161140382826137b1565b611766611eed565b6114038282611f1a565b6060601161177d836121d9565b60405160200161178e9291906138e1565b6040516020818303038152906040529050919050565b6117ac611eed565b6012805460ff19166001179055565b428410156117dc576040516305787bdf60e01b815260040160405180910390fd5b6117e585611df7565b15611803576040516303e7c1bd60e31b815260040160405180910390fd5b6001600160a01b03861661182a57604051635461585f60e01b815260040160405180910390fd5b60006001611836610d89565b6001600160a01b038a81166000818152600e602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa158015611942573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615806119775750876001600160a01b0316816001600160a01b031614155b1561199557604051632057875960e21b815260040160405180910390fd5b6001600160a01b0390811660009081526008602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b60006001600160a01b038416611a2757604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b038316611a4e57604051634e46966960e11b815260040160405180910390fd5b6001600160a01b03841660009081526008602090815260408083203384529091529020546000198114611aaa57611a858382613906565b6001600160a01b03861660009081526008602090815260408083203384529091529020555b611ab5858585612126565b95945050505050565b611acc600160ff1b82613646565b90506001600160a01b038316611af557604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b038216611b1c57604051634e46966960e11b815260040160405180910390fd5b6000818152600b60205260409020546001600160a01b03848116911614611b55576040516282b42960e81b815260040160405180910390fd5b336001600160a01b03841614801590611b9257506001600160a01b0383166000908152600a6020908152604080832033845290915290205460ff16155b8015611bb557506000818152600960205260409020546001600160a01b03163314155b15611bd2576040516282b42960e81b815260040160405180910390fd5b611bdb82610bdb565b15611bf957604051635ce7539760e01b815260040160405180910390fd5b611c2483837f0000000000000000000000000000000000000000000000000de0b6b3a764000061226b565b610ed3838383612327565b6000611c3f600160ff1b83613646565b6000818152600b60205260409020549092506001600160a01b0316338114801590611c8e57506001600160a01b0381166000908152600a6020908152604080832033845290915290205460ff16155b15611c9d576000915050610aa4565b600083815260096020526040902080546001600160a01b0319166001600160a01b038616179055611cd2600160ff1b84613906565b846001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45060019392505050565b611d24611eed565b6001600160a01b038116611d4e57604051631e4fbdf760e01b815260006004820152602401611082565b61147c81611fee565b60606000826001600160401b03811115611d7357611d7361331a565b604051908082528060200260200182016040528015611d9c578160200160208202803683370190505b509050835b611dab8486613646565b811015611def57611dbd600182612597565b61ffff1682611dcc8784613906565b81518110611ddc57611ddc613659565b6020908102919091010152600101611da1565b509392505050565b6000600160ff1b82118015610aa4575050600019141590565b54600f196001600160401b038083166010908102600160401b850483168203600160c01b8604841601600160801b90950483169091029390930192909203011690565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6003604051611e859190613919565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b6000546001600160a01b0316331461136f5760405163118cdaa760e01b8152336004820152602401611082565b6001600160a01b038216611f415760405163a41e3d3f60e01b815260040160405180910390fd5b8015611f5557611f5082612649565b611f5e565b611f5e8261267d565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6001600160a01b038216611fb057604051634e46966960e11b815260040160405180910390fd5b600160ff1b81600554611fc39190613646565b1115611fe25760405163303b682f60e01b815260040160405180910390fd5b610ed360008383612126565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000600f838154811061205357612053613659565b60009182526020918290206040805160608101825260039390930290910180546001600160a01b0390811680855260018301549091169484018590526002909101548383018190529151638a54c52f60e01b81526004810191909152602481019190915246604482015230606482015260848101859052909250638a54c52f9060a4016020604051808303816000875af1925050508015612111575060408051601f3d908101601f1916820190925261210e9181019061366f565b60015b15610ed35750505050565b61147c3382611f1a565b60125460009060ff1661213e5761213e836001611f1a565b6014546001600160a01b0384811661010090920416148015906121645750600554601354105b156121c657600061217484610aaa565b6013549091506121848483613646565b11156121c45760405162461bcd60e51b815260206004820152600f60248201526e546f6f206d616e7920746f6b656e7360881b6044820152606401611082565b505b6121d18484846126fd565b949350505050565b606060006121e683612a5f565b60010190506000816001600160401b038111156122055761220561331a565b6040519080825280601f01601f19166020018201604052801561222f576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461223957509392505050565b6001600160a01b03831661229657806005600082825461228b9190613646565b909155506122c49050565b6001600160a01b038316600090815260076020526040812080548392906122be908490613906565b90915550505b6001600160a01b03808316600081815260076020526040908190208054850190555190918516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061231a9085815260200190565b60405180910390a3505050565b6001600160a01b0383161561248e57600081815260096020908152604080832080546001600160a01b03191690556001600160a01b0386168352600c9091528120805461237690600190613906565b8154811061238657612386613659565b600091825260209091206010820401546123b491600f166002026101000a900461ffff16600160ff1b613646565b9050818114612439576000828152600b602052604081205460a01c6001600160a01b0386166000908152600c6020526040902080549192508391839081106123fe576123fe613659565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506124378282612b37565b505b6001600160a01b0384166000908152600c6020526040902080548061246057612460613925565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a02191690559055505b6001600160a01b03821615612534576000818152600b6020526040902080546001600160a01b0319166001600160a01b0384160190556001600160a01b0382166000818152600c60209081526040822080546001808201835582855292842060108204018054600f9092166002026101000a61ffff818102199093169288160291909117905592909152905461252f91839161252a9190613906565b612b37565b612544565b6000818152600b60205260408120555b612552600160ff1b82613906565b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006125a283611e10565b6125ad90601061368c565b82106125cc5760405163580821e760e01b815260040160405180910390fd5b610c9a600184016000601085046010808789546001600160401b03600160401b909104811692909106919091011681612607576126076136d1565b88549190046001600160401b03808316919091019290920182168352602083019390935260409091016000205491601091600160401b90910416850106612ba3565b6001600160a01b0381166000908152600c6020526040812054905b81811015610ed35761267583612bce565b600101612664565b60007f0000000000000000000000000000000000000000000000000de0b6b3a76400006126a983610aaa565b6126b391906136e7565b905060006126d6836001600160a01b03166000908152600c602052604090205490565b905060005b6126e58284613906565b811015611744576126f584612c72565b6001016126db565b60008061270985610aaa565b9050600061271685610aaa565b905061272386868661226b565b600061272e87610bdb565b9050600061273b87610bdb565b90508180156127475750805b612a515781156127f057600061277d7f0000000000000000000000000000000000000000000000000de0b6b3a7640000856136e7565b6001600160a01b0389166000908152600760205260409020546127c1907f0000000000000000000000000000000000000000000000000de0b6b3a7640000906136e7565b6127cb9190613906565b905060005b818110156127e9576127e189612c72565b6001016127d0565b5050612a51565b801561288c576001600160a01b03881660009081526007602052604081205461283a907f0000000000000000000000000000000000000000000000000de0b6b3a7640000906136e7565b6128647f0000000000000000000000000000000000000000000000000de0b6b3a7640000876136e7565b61286e9190613906565b905060005b818110156127e9576128848a612bce565b600101612873565b60006128b87f0000000000000000000000000000000000000000000000000de0b6b3a7640000886136e7565b905060005b8181101561295e576001600160a01b038a166000908152600c60205260408120546128ea90600190613906565b6001600160a01b038c166000908152600c60205260408120805492935090918390811061291957612919613659565b6000918252602090912060108204015461294791600f166002026101000a900461ffff16600160ff1b613646565b90506129548c8c83612327565b50506001016128bd565b50807f0000000000000000000000000000000000000000000000000de0b6b3a764000061298a8b610aaa565b61299491906136e7565b6129be7f0000000000000000000000000000000000000000000000000de0b6b3a7640000886136e7565b6129c89190613906565b11156129d7576129d789612bce565b80612a027f0000000000000000000000000000000000000000000000000de0b6b3a7640000866136e7565b7f0000000000000000000000000000000000000000000000000de0b6b3a7640000612a2c8b610aaa565b612a3691906136e7565b612a409190613906565b1115612a4f57612a4f88612c72565b505b506001979650505050505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310612a9e5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612aca576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612ae857662386f26fc10000830492506010015b6305f5e1008310612b00576305f5e100830492506008015b6127108310612b1457612710830492506004015b60648310612b26576064830492506002015b600a8310610aa45760010192915050565b6000828152600b60205260409020546bffffffffffffffffffffffff821115612b7357604051633f2cd0e360e21b815260040160405180910390fd5b6000928352600b60205260409092206001600160a01b039290921660a09190911b6001600160a01b031916019055565b6000612bb082601061393b565b6001600160401b0316612bc283612d90565b8416901c905092915050565b6001600160a01b038116612bf557604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0381166000908152600c602052604081208054612c1b90600190613906565b81548110612c2b57612c2b613659565b60009182526020909120601082040154612c5991600f166002026101000a900461ffff16600160ff1b613646565b9050612c6782600083612327565b611403600182612db2565b6001600160a01b038116612c9957604051634e46966960e11b815260040160405180910390fd5b6000612ca56001612ea2565b612ccc57612cb36001612ee4565b612cc59061ffff16600160ff1b613646565b9050612d4e565b600660008154612cdb9061395d565b90915550600654600101612d025760405163303b682f60e01b815260040160405180910390fd5b600654612d1390600160ff1b613646565b600f54909150600090612d2890600190613906565b60068054600090815260106020526040902082905554909150612d4c90829061203e565b505b6000818152600b60205260409020546001600160a01b03168015612d855760405163119b4fd360e11b815260040160405180910390fd5b610ed3818484612327565b6000612d9d82601061393b565b6001600160401b031661ffff901b9050919050565b81546001600160401b0380821691600160401b9004166000819003612ddd575060001901600f612de2565b600019015b83546001600160401b03838116600160801b90920416148015612e18575083546001600160401b03828116600160c01b90920416145b15612e3657604051638acb5f2760e01b815260040160405180910390fd5b6001600160401b0382166000908152600185016020526040902054612e5c908285612ff8565b6001600160401b03928316600081815260018701602052604090209190915584546fffffffffffffffffffffffffffffffff191617600160401b91909216021790915550565b8054600090600160c01b81046001600160401b03908116600160401b90920416148015610aa4575050546001600160401b03808216600160801b909204161490565b80546000906001600160401b03600160801b8204811691600160c01b81048216911682148015612f27575083546001600160401b03828116600160401b90920416145b15612f45576040516375e52f4f60e01b815260040160405180910390fd5b806001600160401b0316600003612f62575060001901600f612f67565b600019015b6001600160401b0382166000908152600185016020526040902054612f8c8183612ba3565b9350612f9a81836000612ff8565b6001600160401b03938416600081815260018801602052604090209190915585546fffffffffffffffffffffffffffffffff16600160801b9091026001600160c01b031617600160c01b929093169190910291909117909255919050565b600061300583601061393b565b6001600160401b03168261ffff16901b61301e84612d90565b1985166121d19190613646565b6001600160a01b038116811461147c57600080fd5b803560ff8116811461103657600080fd5b60008060008060008060a0878903121561306a57600080fd5b86359550602087013561307c8161302b565b94506040870135935060608701356001600160401b0381111561309e57600080fd5b8701601f810189136130af57600080fd5b80356001600160401b038111156130c557600080fd5b8960208284010111156130d757600080fd5b602091909101935091506130ed60808801613040565b90509295509295509295565b60005b838110156131145781810151838201526020016130fc565b50506000910152565b600081518084526131358160208601602086016130f9565b601f01601f19169290920160200192915050565b602081526000610c9a602083018461311d565b6001600160e01b03198116811461147c57600080fd5b60006020828403121561318457600080fd5b8135610c9a8161315c565b6000602082840312156131a157600080fd5b8135610c9a8161302b565b6000602082840312156131be57600080fd5b5035919050565b600080604083850312156131d857600080fd5b82356131e38161302b565b946020939093013593505050565b60008060006060848603121561320657600080fd5b83356132118161302b565b925060208401356132218161302b565b929592945050506040919091013590565b8035801515811461103657600080fd5b6000806040838503121561325557600080fd5b8235915061326560208401613232565b90509250929050565b6000806040838503121561328157600080fd5b50508035926020909101359150565b6000602082840312156132a257600080fd5b610c9a82613232565b600080604083850312156132be57600080fd5b82356132c98161302b565b915061326560208401613232565b602080825282518282018190526000918401906040840190835b8181101561330f5783518352602093840193909201916001016132f1565b509095945050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156133585761335861331a565b604052919050565b60006001600160401b038211156133795761337961331a565b50601f01601f191660200190565b600061339a61339584613360565b613330565b90508281528383830111156133ae57600080fd5b828260208301376000602084830101529392505050565b600080600080608085870312156133db57600080fd5b84356133e68161302b565b935060208501356133f68161302b565b92506040850135915060608501356001600160401b0381111561341857600080fd5b8501601f8101871361342957600080fd5b61343887823560208401613387565b91505092959194509250565b60006020828403121561345657600080fd5b81356001600160401b0381111561346c57600080fd5b8201601f8101841361347d57600080fd5b6121d184823560208401613387565b600080600080600080600060e0888a0312156134a757600080fd5b87356134b28161302b565b965060208801356134c28161302b565b955060408801359450606088013593506134de60808901613040565b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561350e57600080fd5b82356135198161302b565b915060208301356135298161302b565b809150509250929050565b6001600160a01b0386168152602081018590526080604082018190528101839052828460a0830137600060a08483010152600060a0601f19601f860116830101905060ff831660608301529695505050505050565b60006020828403121561359b57600080fd5b81516001600160401b038111156135b157600080fd5b8201601f810184136135c257600080fd5b80516135d061339582613360565b8181528560208385010111156135e557600080fd5b611ab58260208301602086016130f9565b600181811c9082168061360a57607f821691505b60208210810361362a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610aa457610aa4613630565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561368157600080fd5b8151610c9a8161302b565b8082028115828204841417610aa457610aa4613630565b6000806000606084860312156136b857600080fd5b5050815160208301516040909301519094929350919050565b634e487b7160e01b600052601260045260246000fd5b60008261370457634e487b7160e01b600052601260045260246000fd5b500490565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061373c9083018461311d565b9695505050505050565b60006020828403121561375857600080fd5b8151610c9a8161315c565b601f821115610ed357806000526020600020601f840160051c8101602085101561378a5750805b601f840160051c820191505b818110156137aa5760008155600101613796565b5050505050565b81516001600160401b038111156137ca576137ca61331a565b6137de816137d884546135f6565b84613763565b6020601f82116001811461381257600083156137fa5750848201515b600019600385901b1c1916600184901b1784556137aa565b600084815260208120601f198516915b828110156138425787850151825560209485019460019092019101613822565b50848210156138605786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b6000815461387c816135f6565b60018216801561389357600181146138a8576138d8565b60ff19831686528115158202860193506138d8565b84600052602060002060005b838110156138d0578154888201526001909101906020016138b4565b505081860193505b50505092915050565b60006138ed828561386f565b83516138fd8183602088016130f9565b01949350505050565b81810381811115610aa457610aa4613630565b6000610c9a828461386f565b634e487b7160e01b600052603160045260246000fd5b6001600160401b03818116838216029081169081811461164d5761164d613630565b60006001820161396f5761396f613630565b506001019056fea2646970667358221220ae0ff68d9a04806cac3e3f39af3d4961af591d99251684fe0a9fd052ad2aa25f64736f6c634300081a0033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000050350fa0561ebbe63d0bd78ffb1743dc0ee91b390000000000000000000000006da75d7c9aa56fc5bffafd84d6ea1c6b38ab69d4494e434550542e4255494c4400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006496e6365707400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006494e434550540000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Incept
Arg [1] : symbol_ (string): INCEPT
Arg [2] : decimals_ (uint8): 18
Arg [3] : registry_ (address): 0x50350Fa0561eBbe63D0bD78fFb1743DC0eE91b39
Arg [4] : implementation_ (address): 0x6dA75D7C9AA56Fc5bfFaFd84D6eA1c6b38ab69d4
Arg [5] : salt_ (bytes32): 0x494e434550542e4255494c440000000000000000000000000000000000000000

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000050350fa0561ebbe63d0bd78ffb1743dc0ee91b39
Arg [4] : 0000000000000000000000006da75d7c9aa56fc5bffafd84d6ea1c6b38ab69d4
Arg [5] : 494e434550542e4255494c440000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 496e636570740000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [9] : 494e434550540000000000000000000000000000000000000000000000000000


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.