ETH Price: $3,273.89 (+0.70%)
Gas: 1 Gwei

Token

MAJR ID (MAJR-ID)
 

Overview

Max Total Supply

1,646 MAJR-ID

Holders

102

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MAJR-ID
0x5e15d13a7525eaa829cd7ab3b5a07332e9f106f9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

MAJR DAO is the ultimate membership for the video community. It leverages web3 applications that complement both existing & new video infrastructure and marketplaces with blockchain technology. MAJR IDs are membership and utility NFTs for the MAJR DAO ecosystem.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MajrNFT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : MajrNFTReal.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/Pausable.sol";

import "./Splitter.sol";

contract MajrNFT is Splitter, ERC721A, Pausable {
  /// @notice Mint price of a Majr ID
  uint256 public price;

  /// @notice Base URI to get the metadata for each Majr ID
  string private tokenBaseURI;

  /// @notice URI to get the contract-level metadata
  string private contractMetadataURI;

  /// @notice An event emitted when the new price is set
  event NewPrice(uint256 price, uint256 timestamp);

  /// @notice An event emitted when the new base URI is set
  event NewBaseURI(string baseURI, uint256 timestamp);

  /// @notice An event emitted when the new contract metadata URI is set
  event NewContractMetadataURI(string contractMetadataURI, uint256 timestamp);

  /**
   * @notice Constructor
   * @param _name string memory
   * @param _symbol string memory
   * @param _price uint256
   * @param _splitAddresses address payable[] memory
   * @param _splitAmounts uint256[] memory
   * @param _referralAddresses address payable[] memory
   * @param _referralAmounts uint256[] memory 
   * @param _cap uint256
   * @param _tokenBaseURI string memory
   * @param _contractMetadataURI string memory
   */
  constructor(
    string memory _name,
    string memory _symbol,
    uint256 _price,

    address payable[] memory _splitAddresses,
    uint256[] memory _splitAmounts,
    address payable[] memory _referralAddresses,
    uint256[] memory _referralAmounts,
    uint256 _cap,

    string memory _tokenBaseURI,
    string memory _contractMetadataURI
  )
  Splitter(
    _splitAddresses,
    _splitAmounts,
    _referralAddresses,
    _referralAmounts,
    _cap
  )
  ERC721A(
    _name,
    _symbol
  )
  {
    price = _price;
    tokenBaseURI = _tokenBaseURI;
    contractMetadataURI = _contractMetadataURI;
  }

  receive() external payable {}

  /**
   * @notice Pauses the pausable functions inside the contract
   * @dev Only owner can call it
   */
  function pause() external onlyOwner {
    _pause();
  }

  /**
   * @notice Unpauses the pausable functions inside the contract
   * @dev Only owner can call it
   */
  function unpause() external onlyOwner {
    _unpause();
  }

  /**
   * @notice Updates the mint price of a Majr ID
   * @param _price uint256
   * @dev Only owner can call it and only when the contract is paused amd the price can't be zero
   */
  function setPrice(uint256 _price) external onlyOwner whenPaused {
    require(_price > 0, "MajrNFT: Mint price must be greater than zero.");

    price = _price;

    emit NewPrice(_price, block.timestamp);
  }

  /**
   * @notice Mints the desired amount of Majr IDs to the user calling the function and splits the mint fee to the split addresses (rewards, DAO treasury & company wallets)
   * @param quantity uint256
   * @dev Can only be called while the contract is not paused and user must send the exact value of ether that's required or the transaction will revert
   */
  function mint(uint256 quantity) external payable whenNotPaused {
    require(msg.value == price * quantity, 'MajrNFT: Must send the correct mint fee.');

    _safeMint(msg.sender, quantity);
    this.split{value: msg.value}();
  }

  /**
   * @notice Mints the desired amount of Majr IDs to the user calling the function and splits the mint fee to the referral addresses (rewards, DAO treasury, company & referrer wallets)
   * @param quantity uint256
   * @param referrer address payable
   * @dev Can only be called while the contract is not paused and user must send the exact value of ether that's required or the transaction will revert, and the referrer address cannot be the same as the minter address
   */
  function mintWithReferrer(uint256 quantity, address payable referrer) external payable whenNotPaused {
    require(msg.value == price * quantity, 'MajrNFT: Must send the correct mint fee.');
    require(msg.sender != referrer, 'MajrNFT: Cannot mint with yourself as the referrer.');

    _safeMint(msg.sender, quantity);
    this.referralSplit{value: msg.value}(referrer);
  }

  /**
   * @notice Burns the NFT with a specified ID (user must own the NFT of that ID)
   * @param _tokenId uint256
   * @dev Can only be called while the contract is not paused
   */
  function burn(uint256 _tokenId) external whenNotPaused {
    require(msg.sender == ownerOf(_tokenId), 'MajrNFT: You do not own this token.');

    _burn(_tokenId);
  }

  /**
   * @notice Returns true or false based on whether the specified token ID exists (i.e. it's minted by someone before and not burned afterwards)
   * @param _tokenId uint256
   * @return bool
   */
  function exists(uint256 _tokenId) external view returns (bool) {
    return _exists(_tokenId);
  }

  /**
   * @notice Returns an array of all token IDs owned by the user
   * @param user address
   * @return uint256[] memory
   * @dev This function shouldn't encounter the out-of-gas error up to a certain point. When the collection grows too big, this function should be replaced by the multiple calls of the tokensOfUserIn method
   */
  function tokensOfUser(address user) external view returns (uint256[] memory) {
    unchecked {
      uint256 tokenIdsLength = balanceOf(user);
      uint256[] memory tokenIds = new uint256[](tokenIdsLength);
      uint256 tokenIdsIndex;

      for (uint256 i = 0; tokenIdsIndex != tokenIdsLength; i++) {
        address owner;

        if (_exists(i)) {
          owner = ownerOf(i);
        }

        if (owner == user) {
          tokenIds[tokenIdsIndex++] = i;
        }
      }
      return tokenIds;
    }
  }

  /**
   * @notice Returns an array of all token IDs owned by the user in a specified range
   * @param user address
   * @param start uint256
   * @param stop uint256
   * @return uint256[] memory
   * @dev This function allows for tokens to be queried if the collection grows too big for a single call of the tokensOfUser method
   */
  function tokensOfUserIn(address user, uint256 start, uint256 stop) external view returns (uint256[] memory) {
    require (start >= 0 && start < stop, "MajrNFT: Invalid query range.");
    
    unchecked {
      uint256 tokenIdsMaxLength = balanceOf(user);
      uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);

      if (tokenIdsMaxLength == 0) {
        return tokenIds;
      }

      uint256 tokenIdsIndex;

      for (uint256 i = 0; i != stop && tokenIdsIndex != tokenIdsMaxLength; i++) {
        address owner;

        if (_exists(i)) {
          owner = ownerOf(i);
        }

        if (owner == user) {
          tokenIds[tokenIdsIndex++] = i;
        }
      }

      // Downsize the array to fit
      assembly {
        mstore(tokenIds, tokenIdsIndex)
      }
      return tokenIds;
    }
  }

  /**
   * @notice Returns the total number of tokens ever minted by the user
   * @param _user address
   * @return uint256
   */
  function numberMinted(address _user) public view returns (uint256) {
    return _numberMinted(_user);
  }

  /**
   * @notice Returns the total number of tokens ever burned by the user
   * @param _user address
   * @return uint256
   */
  function numberBurned(address _user) external view returns (uint256) {
    return _numberBurned(_user);
  }

  /**
   * @notice Returns the token metadata URI for a specified Majr ID
   * @param tokenId uint256
   * @return string memory
   */
  function tokenURI(uint256 tokenId) public view override returns (string memory) {
    return string(abi.encodePacked(tokenBaseURI,Strings.toString(tokenId)));
  }

  /**
   * @notice Returns the base URI for Majr ID metadata
   * @return string memory
   */
  function baseURI() external view returns (string memory) {
    return tokenBaseURI;
  }

  /**
   * @notice Sets the new base URI for the Majr IDs
   * @param _tokenBaseURI string calldata
   * @dev Only owner can call it
   */
  function setBaseURI(string calldata _tokenBaseURI) external onlyOwner {
    tokenBaseURI = _tokenBaseURI;

    emit NewBaseURI(_tokenBaseURI, block.timestamp);
  }

  /**
   * @notice Returns the contract-level metadata URI
   * @return string memory
   */ 
  function contractURI() external view returns (string memory) {
    return contractMetadataURI;
  }

  /**
   * @notice Sets the new contract URI for the Majr IDs
   * @param _contractMetadataURI string calldata
   * @dev Only owner can call it
   */
  function setContractURI(string calldata _contractMetadataURI) external onlyOwner {
    contractMetadataURI = _contractMetadataURI;

    emit NewContractMetadataURI(_contractMetadataURI, block.timestamp);
  }
}

File 2 of 8 : Splitter.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

import "@openzeppelin/contracts/access/Ownable.sol";

abstract contract Splitter is Ownable {
  /// @notice Addresses to which the split amounts will be sent (rewards, DAO treasury & company wallets)
  address payable[] public splitAddresses;

  /// @notice Amounts to be sent to each corresponding split address (expressed in basis points)
  uint256[] public splitAmounts;

  /// @notice Addresses to which the referral amounts will be sent (rewards, DAO treasury, company & referrer wallets)
  address payable[] public referralAddresses;

  /// @notice Amounts to be sent to each corresponding referral address (expressed in basis points)
  uint256[] public referralAmounts;

  /// @notice An adjustable cap for the length of the split addresses, split amounts, referral addresses and referral amounts arrays
  uint256 public cap;

  /// @notice An event emitted when ether gets sent to the split addresses (rewards pool, DAO treasury & company wallets)
  event Split(address payee, uint256 amount);

  /// @notice An event emitted when ether gets sent to the referrer's address
  event Referral(address payee, uint256 amount);

  /// @notice An event emitted when the split addresses and amounts are updated
  event SplitUpdated(address payable[] addresses, uint256[] amounts);

  /// @notice An event emitted when the referral addresses and amounts are updated
  event ReferralUpdated(address payable[] addresses, uint256[] amounts);

  /// @notice An event emitted when the cap is updated
  event CapUpdated(uint256 cap);

  /**
   * @notice Constructor
   * @param _splitAddresses address payable[] memory
   * @param _splitAmounts uint256[] memory
   * @param _referralAddresses address payable[] memory
   * @param _referralAmounts uint256[] memory 
   */
  constructor(
    address payable[] memory _splitAddresses,
    uint256[] memory _splitAmounts,
    address payable[] memory _referralAddresses,
    uint256[] memory _referralAmounts,
    uint256 _cap
  ) {
    cap = _cap;
    setSplit(_splitAddresses, _splitAmounts);
    setReferral(_referralAddresses, _referralAmounts);
  }

  /// @notice Sends the mint fee to the split addresses (rewards, DAO treasury & company wallets)
  function split() external payable {
    for(uint i = 0; i < splitAddresses.length; i++) {
      uint256 amount = msg.value * splitAmounts[i] / 10000;
      (bool sent, ) = splitAddresses[i].call{value: amount}("");
      require(sent, "Splitter: Couldn't send ether to you.");
      emit Split(splitAddresses[i], amount);
    }
  }

  /**
   * @notice Sends the mint fee to the referral addresses (rewards, DAO treasury, company & referrer wallets)
   * @param referrer address payable
   * @dev Referrer address can't be zero address
   */
  function referralSplit(address payable referrer) external payable {
    require(address(0) != referrer, 'Splitter: Invalid referrer address.');

    for(uint i = 0; i < referralAddresses.length; i++) {
      uint256 amount = msg.value * referralAmounts[i] / 10000;
      if(referralAddresses[i] == address(0)) {
        (bool sent, ) = referrer.call{value: amount}("");
        require(sent, "Splitter: Couldn't send ether to you.");
        emit Referral(referrer, amount);
      } else {
        (bool sent, ) = referralAddresses[i].call{value: amount}("");
        require(sent, "Splitter: Couldn't send ether to you.");
        emit Split(referralAddresses[i], amount);
      }
    }
  }

  /**
   * @notice Returns the split addresses
   * @return address payable[] memory
   */ 
  function getSplitAddresses() external view returns (address payable[] memory) {
    return splitAddresses;
  }

  /**
   * @notice Returns the split amounts (expressed in basis points)
    * @return uint256[] memory
   */ 
  function getSplitAmounts() external view returns (uint256[] memory) {
    return splitAmounts;
  }

  /**
   * @notice Sets the split addresses and amounts (expressed in basis points). The arrays must have the same length, both lengths must be less than 4, there can't be any zero addresses and split amounts must total 10000 (i.e. 100%)
   * @param _splitAddresses address payable[] memory
   * @param _splitAmounts uint256[] memory
   * @dev Only owner can call it
   */
  function setSplit(address payable[] memory _splitAddresses, uint256[] memory _splitAmounts) public onlyOwner {
    require(_splitAddresses.length < cap, "Splitter: _splitAddresses length must be less than the cap.");
    require(_splitAddresses.length == _splitAmounts.length, "Splitter: _splitAddresses and _splitAmounts must be the same length.");
    require(_getSum(_splitAmounts) == 10000, "Splitter: _splitAmounts must total 10000.");
    require(_checkForInvalidAddress(_splitAddresses), "Splitter: _splitAddresses contains an invalid address(0).");

    splitAddresses = _splitAddresses;
    splitAmounts = _splitAmounts;

    emit SplitUpdated(_splitAddresses, _splitAmounts);
  }

  /**
   * @notice Returns the referral addresses
   * @return address payable[] memory
   */ 
  function getReferralAddresses() external view returns(address payable[] memory) {
    return referralAddresses;
  }

  /**
   * @notice Returns the referral amounts (expressed in basis points)
   * @return uint256[] memory
   */
  function getReferralAmounts() external view returns(uint256[] memory) {
    return referralAmounts;
  }

  /**
   * @notice Sets the referral addresses and amounts (expressed in basis points). The arrays must have the same length, both lengths must be less than 5, there must be at least one zero address (it later gets replaced by the referrer's address) and referral amounts must total 10000 (i.e. 100%)
   * @param _referralAddresses address payable[] memory
   * @param _referralAmounts uint256[] memory
   * @dev Only owner can call it
   */
  function setReferral(address payable[] memory _referralAddresses, uint256[] memory _referralAmounts) public onlyOwner {
    require(_referralAddresses.length < cap + 1, "Splitter: _referralAddresses length must be less than the cap + 1.");
    require(_referralAddresses.length == _referralAmounts.length, "Splitter: _referralAddresses and _referralAmounts must be the same length.");
    require(_getSum(_referralAmounts) == 10000, "Splitter: _referralAmounts must total 10000.");
    require(_checkForReferralAddress(_referralAddresses), "Splitter: Must pass 0x0 address as one of the addresses in the array.");

    referralAddresses = _referralAddresses;
    referralAmounts = _referralAmounts;

    emit ReferralUpdated(_referralAddresses, _referralAmounts);
  }

  /**
   * @notice Sets the cap for the length of the split addresses, split amounts, referral addresses and referral amounts arrays
   * @param _cap uint256
   * @dev Only owner can call it
   */
  function setCap(uint256 _cap) external onlyOwner {
    require(_cap >= 4, "Splitter: Cap must be greater than or equal to 4.");

    cap = _cap;

    emit CapUpdated(_cap);
  }

  /**
   * @notice Returns whether the given array of addresses contains a referral address (0x0) or not
   * @param _referralAddresses address payable[] memory
   * @return bool
   */
  function _checkForReferralAddress(address payable[] memory _referralAddresses) private pure returns (bool) {
    bool valid = false;
    for(uint i = 0; i < _referralAddresses.length; i++) {
      if(_referralAddresses[i] == address(0)) {
        if(valid) {
          return false;
        }
        valid = true;
      }
    }
    return valid;
  }

  /**
   * @notice Returns whether the given array of addresses is a valid array of split addresses or not (i.e. it should not contain zero address)
   * @param _referralAddresses address payable[] memory
   * @return bool
   */
  function _checkForInvalidAddress(address payable[] memory _referralAddresses) private pure returns (bool) {
    bool valid = true;
    for(uint i = 0; i < _referralAddresses.length; i++) {
      if(_referralAddresses[i] == address(0)) {
        valid = false;
      }
    }
    return valid;
  }

  /**
   * @notice Returns sum of the given array of integer values
   * @param input uint256[] memory
   * @return uint256
   */
  function _getSum(uint256[] memory input) private pure returns(uint256) {
    uint256 sum = 0;

    for(uint i = 0; i < input.length; i++) {
      sum = sum + input[i];
    }

    return sum;
  }
}

File 3 of 8 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

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

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred.
     * This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred.
     * This includes minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 5 of 8 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 8 of 8 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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

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

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"address payable[]","name":"_splitAddresses","type":"address[]"},{"internalType":"uint256[]","name":"_splitAmounts","type":"uint256[]"},{"internalType":"address payable[]","name":"_referralAddresses","type":"address[]"},{"internalType":"uint256[]","name":"_referralAmounts","type":"uint256[]"},{"internalType":"uint256","name":"_cap","type":"uint256"},{"internalType":"string","name":"_tokenBaseURI","type":"string"},{"internalType":"string","name":"_contractMetadataURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"cap","type":"uint256"}],"name":"CapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"baseURI","type":"string"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"NewBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"contractMetadataURI","type":"string"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"NewContractMetadataURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"NewPrice","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"payee","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Referral","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address payable[]","name":"addresses","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"ReferralUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"payee","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Split","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address payable[]","name":"addresses","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"SplitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReferralAddresses","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReferralAmounts","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSplitAddresses","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSplitAmounts","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address payable","name":"referrer","type":"address"}],"name":"mintWithReferrer","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"numberBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"referralAddresses","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"referralAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"referrer","type":"address"}],"name":"referralSplit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"setCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractMetadataURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable[]","name":"_referralAddresses","type":"address[]"},{"internalType":"uint256[]","name":"_referralAmounts","type":"uint256[]"}],"name":"setReferral","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable[]","name":"_splitAddresses","type":"address[]"},{"internalType":"uint256[]","name":"_splitAmounts","type":"uint256[]"}],"name":"setSplit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"split","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"splitAddresses","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"splitAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"tokensOfUser","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfUserIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040516200726838038062007268833981810160405281019062000037919062000c9c565b898988888888886200005e620000526200012060201b60201c565b6200012860201b60201c565b80600581905550620000778585620001ec60201b60201c565b620000898383620003a660201b60201c565b505050505081600890816200009f9190620010cb565b508060099081620000b19190620010cb565b50620000c26200056e60201b60201c565b60068190555050506000600e60006101000a81548160ff02191690831515021790555087600f819055508160109081620000fd9190620010cb565b5080601190816200010f9190620010cb565b505050505050505050505062001a4a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001fc6200057360201b60201c565b60055482511062000244576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200023b9062001239565b60405180910390fd5b80518251146200028b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028290620012f7565b60405180910390fd5b6127106200029f826200060460201b60201c565b14620002e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d9906200138f565b60405180910390fd5b620002f3826200066560201b60201c565b62000335576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032c9062001427565b60405180910390fd5b81600190805190602001906200034d929190620007b8565b5080600290805190602001906200036692919062000847565b507f52c438e94731786bccc25689d9a4d4e7d1d4abb74052370637e208305327a81182826040516200039a929190620015e5565b60405180910390a15050565b620003b66200057360201b60201c565b6001600554620003c791906200164f565b8251106200040c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004039062001726565b60405180910390fd5b805182511462000453576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200044a90620017e4565b60405180910390fd5b61271062000467826200060460201b60201c565b14620004aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004a1906200187c565b60405180910390fd5b620004bb82620006f060201b60201c565b620004fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f4906200193a565b60405180910390fd5b816003908051906020019062000515929190620007b8565b5080600490805190602001906200052e92919062000847565b507f66b199a4992e94a960c6ea1b49c2a1d0801de626a2372518a23f1a7259c1c5b1828260405162000562929190620015e5565b60405180910390a15050565b600090565b620005836200012060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005a96200078f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000602576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005f990620019ac565b60405180910390fd5b565b6000806000905060005b83518110156200065b578381815181106200062e576200062d620019ce565b5b6020026020010151826200064391906200164f565b915080806200065290620019fd565b9150506200060e565b5080915050919050565b6000806001905060005b8351811015620006e657600073ffffffffffffffffffffffffffffffffffffffff16848281518110620006a757620006a6620019ce565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603620006d057600091505b8080620006dd90620019fd565b9150506200066f565b5080915050919050565b6000806000905060005b83518110156200078457600073ffffffffffffffffffffffffffffffffffffffff16848281518110620007325762000731620019ce565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16036200076e57811562000769576000925050506200078a565b600191505b80806200077b90620019fd565b915050620006fa565b50809150505b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805482825590600052602060002090810192821562000834579160200282015b82811115620008335782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190620007d9565b5b50905062000843919062000899565b5090565b82805482825590600052602060002090810192821562000886579160200282015b828111156200088557825182559160200191906001019062000868565b5b50905062000895919062000899565b5090565b5b80821115620008b45760008160009055506001016200089a565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200092182620008d6565b810181811067ffffffffffffffff82111715620009435762000942620008e7565b5b80604052505050565b600062000958620008b8565b905062000966828262000916565b919050565b600067ffffffffffffffff821115620009895762000988620008e7565b5b6200099482620008d6565b9050602081019050919050565b60005b83811015620009c1578082015181840152602081019050620009a4565b60008484015250505050565b6000620009e4620009de846200096b565b6200094c565b90508281526020810184848401111562000a035762000a02620008d1565b5b62000a10848285620009a1565b509392505050565b600082601f83011262000a305762000a2f620008cc565b5b815162000a42848260208601620009cd565b91505092915050565b6000819050919050565b62000a608162000a4b565b811462000a6c57600080fd5b50565b60008151905062000a808162000a55565b92915050565b600067ffffffffffffffff82111562000aa45762000aa3620008e7565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ae78262000aba565b9050919050565b62000af98162000ada565b811462000b0557600080fd5b50565b60008151905062000b198162000aee565b92915050565b600062000b3662000b308462000a86565b6200094c565b9050808382526020820190506020840283018581111562000b5c5762000b5b62000ab5565b5b835b8181101562000b89578062000b74888262000b08565b84526020840193505060208101905062000b5e565b5050509392505050565b600082601f83011262000bab5762000baa620008cc565b5b815162000bbd84826020860162000b1f565b91505092915050565b600067ffffffffffffffff82111562000be45762000be3620008e7565b5b602082029050602081019050919050565b600062000c0c62000c068462000bc6565b6200094c565b9050808382526020820190506020840283018581111562000c325762000c3162000ab5565b5b835b8181101562000c5f578062000c4a888262000a6f565b84526020840193505060208101905062000c34565b5050509392505050565b600082601f83011262000c815762000c80620008cc565b5b815162000c9384826020860162000bf5565b91505092915050565b6000806000806000806000806000806101408b8d03121562000cc35762000cc2620008c2565b5b60008b015167ffffffffffffffff81111562000ce45762000ce3620008c7565b5b62000cf28d828e0162000a18565b9a505060208b015167ffffffffffffffff81111562000d165762000d15620008c7565b5b62000d248d828e0162000a18565b995050604062000d378d828e0162000a6f565b98505060608b015167ffffffffffffffff81111562000d5b5762000d5a620008c7565b5b62000d698d828e0162000b93565b97505060808b015167ffffffffffffffff81111562000d8d5762000d8c620008c7565b5b62000d9b8d828e0162000c69565b96505060a08b015167ffffffffffffffff81111562000dbf5762000dbe620008c7565b5b62000dcd8d828e0162000b93565b95505060c08b015167ffffffffffffffff81111562000df15762000df0620008c7565b5b62000dff8d828e0162000c69565b94505060e062000e128d828e0162000a6f565b9350506101008b015167ffffffffffffffff81111562000e375762000e36620008c7565b5b62000e458d828e0162000a18565b9250506101208b015167ffffffffffffffff81111562000e6a5762000e69620008c7565b5b62000e788d828e0162000a18565b9150509295989b9194979a5092959850565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000edd57607f821691505b60208210810362000ef35762000ef262000e95565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000f5d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000f1e565b62000f69868362000f1e565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000fac62000fa662000fa08462000a4b565b62000f81565b62000a4b565b9050919050565b6000819050919050565b62000fc88362000f8b565b62000fe062000fd78262000fb3565b84845462000f2b565b825550505050565b600090565b62000ff762000fe8565b6200100481848462000fbd565b505050565b5b818110156200102c576200102060008262000fed565b6001810190506200100a565b5050565b601f8211156200107b57620010458162000ef9565b620010508462000f0e565b8101602085101562001060578190505b620010786200106f8562000f0e565b83018262001009565b50505b505050565b600082821c905092915050565b6000620010a06000198460080262001080565b1980831691505092915050565b6000620010bb83836200108d565b9150826002028217905092915050565b620010d68262000e8a565b67ffffffffffffffff811115620010f257620010f1620008e7565b5b620010fe825462000ec4565b6200110b82828562001030565b600060209050601f8311600181146200114357600084156200112e578287015190505b6200113a8582620010ad565b865550620011aa565b601f198416620011538662000ef9565b60005b828110156200117d5784890151825560018201915060208501945060208101905062001156565b868310156200119d578489015162001199601f8916826200108d565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f53706c69747465723a205f73706c6974416464726573736573206c656e67746860008201527f206d757374206265206c657373207468616e20746865206361702e0000000000602082015250565b600062001221603b83620011b2565b91506200122e82620011c3565b604082019050919050565b60006020820190508181036000830152620012548162001212565b9050919050565b7f53706c69747465723a205f73706c697441646472657373657320616e64205f7360008201527f706c6974416d6f756e7473206d757374206265207468652073616d65206c656e60208201527f6774682e00000000000000000000000000000000000000000000000000000000604082015250565b6000620012df604483620011b2565b9150620012ec826200125b565b606082019050919050565b600060208201905081810360008301526200131281620012d0565b9050919050565b7f53706c69747465723a205f73706c6974416d6f756e7473206d75737420746f7460008201527f616c2031303030302e0000000000000000000000000000000000000000000000602082015250565b600062001377602983620011b2565b9150620013848262001319565b604082019050919050565b60006020820190508181036000830152620013aa8162001368565b9050919050565b7f53706c69747465723a205f73706c697441646472657373657320636f6e74616960008201527f6e7320616e20696e76616c696420616464726573732830292e00000000000000602082015250565b60006200140f603983620011b2565b91506200141c82620013b1565b604082019050919050565b60006020820190508181036000830152620014428162001400565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b620014808162000ada565b82525050565b600062001494838362001475565b60208301905092915050565b6000602082019050919050565b6000620014ba8262001449565b620014c6818562001454565b9350620014d38362001465565b8060005b838110156200150a578151620014ee888262001486565b9750620014fb83620014a0565b925050600181019050620014d7565b5085935050505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6200154e8162000a4b565b82525050565b600062001562838362001543565b60208301905092915050565b6000602082019050919050565b6000620015888262001517565b62001594818562001522565b9350620015a18362001533565b8060005b83811015620015d8578151620015bc888262001554565b9750620015c9836200156e565b925050600181019050620015a5565b5085935050505092915050565b60006040820190508181036000830152620016018185620014ad565b905081810360208301526200161781846200157b565b90509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200165c8262000a4b565b9150620016698362000a4b565b925082820190508082111562001684576200168362001620565b5b92915050565b7f53706c69747465723a205f726566657272616c416464726573736573206c656e60008201527f677468206d757374206265206c657373207468616e2074686520636170202b2060208201527f312e000000000000000000000000000000000000000000000000000000000000604082015250565b60006200170e604283620011b2565b91506200171b826200168a565b606082019050919050565b600060208201905081810360008301526200174181620016ff565b9050919050565b7f53706c69747465723a205f726566657272616c41646472657373657320616e6460008201527f205f726566657272616c416d6f756e7473206d7573742062652074686520736160208201527f6d65206c656e6774682e00000000000000000000000000000000000000000000604082015250565b6000620017cc604a83620011b2565b9150620017d98262001748565b606082019050919050565b60006020820190508181036000830152620017ff81620017bd565b9050919050565b7f53706c69747465723a205f726566657272616c416d6f756e7473206d7573742060008201527f746f74616c2031303030302e0000000000000000000000000000000000000000602082015250565b600062001864602c83620011b2565b9150620018718262001806565b604082019050919050565b60006020820190508181036000830152620018978162001855565b9050919050565b7f53706c69747465723a204d75737420706173732030783020616464726573732060008201527f6173206f6e65206f66207468652061646472657373657320696e20746865206160208201527f727261792e000000000000000000000000000000000000000000000000000000604082015250565b600062001922604583620011b2565b91506200192f826200189e565b606082019050919050565b60006020820190508181036000830152620019558162001913565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001994602083620011b2565b9150620019a1826200195c565b602082019050919050565b60006020820190508181036000830152620019c78162001985565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600062001a0a8262000a4b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362001a3f5762001a3e62001620565b5b600182019050919050565b61580e8062001a5a6000396000f3fe6080604052600436106102975760003560e01c8063715018a61161015a578063a22cb465116100c1578063cc5db68a1161007a578063cc5db68a14610a1a578063dc33e68114610a45578063e8a3d48514610a82578063e985e9c514610aad578063f2fde38b14610aea578063f765417614610b135761029e565b8063a22cb465146108fc578063a342f30814610925578063ac246ee71461094e578063b88d4fde14610977578063c4cc2d12146109a0578063c87b56dd146109dd5761029e565b8063938e3d7b11610113578063938e3d7b146107f9578063953a090b1461082257806395d89b411461084d5780639c2973cb14610878578063a035b1fe146108b5578063a0712d68146108e05761029e565b8063715018a614610730578063721cf6181461074757806375a9eb39146107635780638456cb591461078e5780638da5cb5b146107a557806391b7f5ed146107d05761029e565b806342966c68116101fe5780635c975abb116101b75780635c975abb146105e657806361b55118146106115780636352211e1461064e5780636c0360eb1461068b5780636ddf106f146106b657806370a08231146106f35761029e565b806342966c68146104d557806347786d37146104fe5780634aad9676146105275780634f558e79146105645780634faf6897146105a157806355f804b3146105bd5761029e565b806323b872dd1161025057806323b872dd146103d95780632478d63914610402578063339d00ba1461043f578063355274ea1461046a5780633f4ba83a1461049557806342842e0e146104ac5761029e565b806301ffc9a7146102a357806306fdde03146102e0578063081812fc1461030b578063095ea7b314610348578063139f94fd1461037157806318160ddd146103ae5761029e565b3661029e57005b600080fd5b3480156102af57600080fd5b506102ca60048036038101906102c5919061397e565b610b1d565b6040516102d791906139c6565b60405180910390f35b3480156102ec57600080fd5b506102f5610baf565b6040516103029190613a71565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190613ac9565b610c41565b60405161033f9190613b37565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190613b7e565b610cbd565b005b34801561037d57600080fd5b5061039860048036038101906103939190613ac9565b610dfe565b6040516103a59190613bdf565b60405180910390f35b3480156103ba57600080fd5b506103c3610e3d565b6040516103d09190613c09565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190613c24565b610e54565b005b34801561040e57600080fd5b5061042960048036038101906104249190613c77565b611176565b6040516104369190613c09565b60405180910390f35b34801561044b57600080fd5b50610454611188565b6040516104619190613d62565b60405180910390f35b34801561047657600080fd5b5061047f6111e0565b60405161048c9190613c09565b60405180910390f35b3480156104a157600080fd5b506104aa6111e6565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190613c24565b6111f8565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190613ac9565b611218565b005b34801561050a57600080fd5b5061052560048036038101906105209190613ac9565b6112a2565b005b34801561053357600080fd5b5061054e60048036038101906105499190613d84565b61132f565b60405161055b9190613d62565b60405180910390f35b34801561057057600080fd5b5061058b60048036038101906105869190613ac9565b61149f565b60405161059891906139c6565b60405180910390f35b6105bb60048036038101906105b69190613e03565b6114b1565b005b3480156105c957600080fd5b506105e460048036038101906105df9190613e95565b611843565b005b3480156105f257600080fd5b506105fb61189c565b60405161060891906139c6565b60405180910390f35b34801561061d57600080fd5b5061063860048036038101906106339190613c77565b6118b3565b6040516106459190613d62565b60405180910390f35b34801561065a57600080fd5b5061067560048036038101906106709190613ac9565b6119ae565b6040516106829190613b37565b60405180910390f35b34801561069757600080fd5b506106a06119c0565b6040516106ad9190613a71565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d89190613ac9565b611a52565b6040516106ea9190613c09565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190613c77565b611a76565b6040516107279190613c09565b60405180910390f35b34801561073c57600080fd5b50610745611b2e565b005b610761600480360381019061075c9190613ee2565b611b42565b005b34801561076f57600080fd5b50610778611c81565b6040516107859190613d62565b60405180910390f35b34801561079a57600080fd5b506107a3611cd9565b005b3480156107b157600080fd5b506107ba611ceb565b6040516107c79190613b37565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f29190613ac9565b611d14565b005b34801561080557600080fd5b50610820600480360381019061081b9190613e95565b611daa565b005b34801561082e57600080fd5b50610837611e03565b6040516108449190613fe0565b60405180910390f35b34801561085957600080fd5b50610862611e91565b60405161086f9190613a71565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a9190613ac9565b611f23565b6040516108ac9190613bdf565b60405180910390f35b3480156108c157600080fd5b506108ca611f62565b6040516108d79190613c09565b60405180910390f35b6108fa60048036038101906108f59190613ac9565b611f68565b005b34801561090857600080fd5b50610923600480360381019061091e919061402e565b61202d565b005b34801561093157600080fd5b5061094c6004803603810190610947919061426f565b6121a4565b005b34801561095a57600080fd5b506109756004803603810190610970919061426f565b612340565b005b34801561098357600080fd5b5061099e6004803603810190610999919061439c565b6124d0565b005b3480156109ac57600080fd5b506109c760048036038101906109c29190613ac9565b612543565b6040516109d49190613c09565b60405180910390f35b3480156109e957600080fd5b50610a0460048036038101906109ff9190613ac9565b612567565b604051610a119190613a71565b60405180910390f35b348015610a2657600080fd5b50610a2f61259b565b604051610a3c9190613fe0565b60405180910390f35b348015610a5157600080fd5b50610a6c6004803603810190610a679190613c77565b612629565b604051610a799190613c09565b60405180910390f35b348015610a8e57600080fd5b50610a9761263b565b604051610aa49190613a71565b60405180910390f35b348015610ab957600080fd5b50610ad46004803603810190610acf919061441f565b6126cd565b604051610ae191906139c6565b60405180910390f35b348015610af657600080fd5b50610b116004803603810190610b0c9190613c77565b612761565b005b610b1b6127e4565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ba85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060088054610bbe9061448e565b80601f0160208091040260200160405190810160405280929190818152602001828054610bea9061448e565b8015610c375780601f10610c0c57610100808354040283529160200191610c37565b820191906000526020600020905b815481529060010190602001808311610c1a57829003601f168201915b5050505050905090565b6000610c4c826129a8565b610c82576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cc8826119ae565b90508073ffffffffffffffffffffffffffffffffffffffff16610ce9612a07565b73ffffffffffffffffffffffffffffffffffffffff1614610d4c57610d1581610d10612a07565b6126cd565b610d4b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b82600c600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60038181548110610e0e57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610e47612a0f565b6007546006540303905090565b6000610e5f82612a14565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ec6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ed284612ae0565b91509150610ee88187610ee3612a07565b612b02565b610f3457610efd86610ef8612a07565b6126cd565b610f33576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610f9a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fa78686866001612b46565b8015610fb257600082555b600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506110808561105c888887612b4c565b7c020000000000000000000000000000000000000000000000000000000017612b74565b600a60008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111065760006001850190506000600a600083815260200190815260200160002054036111045760065481146111035783600a6000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461116e8686866001612b9f565b505050505050565b600061118182612ba5565b9050919050565b606060048054806020026020016040519081016040528092919081815260200182805480156111d657602002820191906000526020600020905b8154815260200190600101908083116111c2575b5050505050905090565b60055481565b6111ee612bfc565b6111f6612c7a565b565b611213838383604051806020016040528060008152506124d0565b505050565b611220612cdd565b611229816119ae565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d90614531565b60405180910390fd5b61129f81612d27565b50565b6112aa612bfc565b60048110156112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e5906145c3565b60405180910390fd5b806005819055507f3c8eb7c49d332f4c1e4d92a27cda93c31cc9452f7a408e0c6109fcddbc9946ea816040516113249190613c09565b60405180910390a150565b60606000831015801561134157508183105b611380576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113779061462f565b60405180910390fd5b600061138b85611a76565b905060008167ffffffffffffffff8111156113a9576113a861406e565b5b6040519080825280602002602001820160405280156113d75781602001602082028036833780820191505090505b509050600082036113ec578092505050611498565b600080600090505b8581141580156114045750838214155b1561148d576000611414826129a8565b1561142557611422826119ae565b90505b8873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361147f57818484806001019550815181106114725761147161464f565b5b6020026020010181815250505b5080806001019150506113f4565b508082528193505050505b9392505050565b60006114aa826129a8565b9050919050565b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff1603611520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611517906146f0565b60405180910390fd5b60005b60038054905081101561183f576000612710600483815481106115495761154861464f565b5b90600052602060002001543461155f919061473f565b61156991906147b0565b9050600073ffffffffffffffffffffffffffffffffffffffff16600383815481106115975761159661464f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036116c85760008373ffffffffffffffffffffffffffffffffffffffff168260405161160390614812565b60006040518083038185875af1925050503d8060008114611640576040519150601f19603f3d011682016040523d82523d6000602084013e611645565b606091505b5050905080611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090614899565b60405180910390fd5b7f5db31c63b6c985d138b0b2896458c45ecf94b259da29b7623bdef92b5853d0cd84836040516116ba929190614918565b60405180910390a15061182b565b6000600383815481106116de576116dd61464f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161172c90614812565b60006040518083038185875af1925050503d8060008114611769576040519150601f19603f3d011682016040523d82523d6000602084013e61176e565b606091505b50509050806117b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a990614899565b60405180910390fd5b7fe1665329182bc1dab50c9b04ea6bd37107b73ed7c585951d808b02cd9b659627600384815481106117e7576117e661464f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683604051611821929190614918565b60405180910390a1505b50808061183790614941565b915050611523565b5050565b61184b612bfc565b81816010918261185c929190614b36565b507fd587678e7c411598e9880645446de8d95a60b00aea16c7b8938cb3eef1a93dac82824260405161189093929190614c33565b60405180910390a15050565b6000600e60009054906101000a900460ff16905090565b606060006118c083611a76565b905060008167ffffffffffffffff8111156118de576118dd61406e565b5b60405190808252806020026020018201604052801561190c5781602001602082028036833780820191505090505b509050600080600090505b8382146119a2576000611929826129a8565b1561193a57611937826119ae565b90505b8673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361199457818484806001019550815181106119875761198661464f565b5b6020026020010181815250505b508080600101915050611917565b50819350505050919050565b60006119b982612a14565b9050919050565b6060601080546119cf9061448e565b80601f01602080910402602001604051908101604052809291908181526020018280546119fb9061448e565b8015611a485780601f10611a1d57610100808354040283529160200191611a48565b820191906000526020600020905b815481529060010190602001808311611a2b57829003601f168201915b5050505050905090565b60028181548110611a6257600080fd5b906000526020600020016000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611add576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611b36612bfc565b611b406000612d35565b565b611b4a612cdd565b81600f54611b58919061473f565b3414611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9090614cd7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfe90614d69565b60405180910390fd5b611c113383612df9565b3073ffffffffffffffffffffffffffffffffffffffff16634faf689734836040518363ffffffff1660e01b8152600401611c4b9190613bdf565b6000604051808303818588803b158015611c6457600080fd5b505af1158015611c78573d6000803e3d6000fd5b50505050505050565b60606002805480602002602001604051908101604052809291908181526020018280548015611ccf57602002820191906000526020600020905b815481526020019060010190808311611cbb575b5050505050905090565b611ce1612bfc565b611ce9612e17565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d1c612bfc565b611d24612e7a565b60008111611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e90614dfb565b60405180910390fd5b80600f819055507fb9362b96e28efbb7a7e63bb4a97faf9924ec0394635feff8588a6ae2a5f784fe8142604051611d9f929190614e1b565b60405180910390a150565b611db2612bfc565b818160119182611dc3929190614b36565b507f7f29f752fe1f0da3fae46246ab3335629ae4aeed5905e1906f3dfbe7ad23db20828242604051611df793929190614c33565b60405180910390a15050565b60606001805480602002602001604051908101604052809291908181526020018280548015611e8757602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611e3d575b5050505050905090565b606060098054611ea09061448e565b80601f0160208091040260200160405190810160405280929190818152602001828054611ecc9061448e565b8015611f195780601f10611eee57610100808354040283529160200191611f19565b820191906000526020600020905b815481529060010190602001808311611efc57829003601f168201915b5050505050905090565b60018181548110611f3357600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b611f70612cdd565b80600f54611f7e919061473f565b3414611fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb690614cd7565b60405180910390fd5b611fc93382612df9565b3073ffffffffffffffffffffffffffffffffffffffff1663f7654176346040518263ffffffff1660e01b81526004016000604051808303818588803b15801561201157600080fd5b505af1158015612025573d6000803e3d6000fd5b505050505050565b612035612a07565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612099576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d60006120a6612a07565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612153612a07565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161219891906139c6565b60405180910390a35050565b6121ac612bfc565b60016005546121bb9190614e44565b8251106121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f490614f10565b60405180910390fd5b8051825114612241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223890614fc8565b60405180910390fd5b61271061224d82612ec3565b1461228d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122849061505a565b60405180910390fd5b61229682612f1b565b6122d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc90615112565b60405180910390fd5b81600390805190602001906122eb92919061381e565b5080600490805190602001906123029291906138a8565b507f66b199a4992e94a960c6ea1b49c2a1d0801de626a2372518a23f1a7259c1c5b18282604051612334929190615132565b60405180910390a15050565b612348612bfc565b60055482511061238d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612384906151db565b60405180910390fd5b80518251146123d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c890615293565b60405180910390fd5b6127106123dd82612ec3565b1461241d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241490615325565b60405180910390fd5b61242682612fb0565b612465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245c906153b7565b60405180910390fd5b816001908051906020019061247b92919061381e565b5080600290805190602001906124929291906138a8565b507f52c438e94731786bccc25689d9a4d4e7d1d4abb74052370637e208305327a81182826040516124c4929190615132565b60405180910390a15050565b6124db848484610e54565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461253d5761250684848484613033565b61253c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6004818154811061255357600080fd5b906000526020600020016000915090505481565b6060601061257483613183565b604051602001612585929190615496565b6040516020818303038152906040529050919050565b6060600380548060200260200160405190810160405280929190818152602001828054801561261f57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116125d5575b5050505050905090565b6000612634826132e3565b9050919050565b60606011805461264a9061448e565b80601f01602080910402602001604051908101604052809291908181526020018280546126769061448e565b80156126c35780601f10612698576101008083540402835291602001916126c3565b820191906000526020600020905b8154815290600101906020018083116126a657829003601f168201915b5050505050905090565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612769612bfc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cf9061552c565b60405180910390fd5b6127e181612d35565b50565b60005b6001805490508110156129a55760006127106002838154811061280d5761280c61464f565b5b906000526020600020015434612823919061473f565b61282d91906147b0565b90506000600183815481106128455761284461464f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161289390614812565b60006040518083038185875af1925050503d80600081146128d0576040519150601f19603f3d011682016040523d82523d6000602084013e6128d5565b606091505b5050905080612919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291090614899565b60405180910390fd5b7fe1665329182bc1dab50c9b04ea6bd37107b73ed7c585951d808b02cd9b6596276001848154811061294e5761294d61464f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683604051612988929190614918565b60405180910390a15050808061299d90614941565b9150506127e7565b50565b6000816129b3612a0f565b111580156129c2575060065482105b8015612a00575060007c0100000000000000000000000000000000000000000000000000000000600a60008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080612a23612a0f565b11612aa957600654811015612aa8576000600a600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612aa6575b60008103612a9c57600a600083600190039350838152602001908152602001600020549050612a72565b8092505050612adb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600c90508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612b6386868461333a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600067ffffffffffffffff6080600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612c04613343565b73ffffffffffffffffffffffffffffffffffffffff16612c22611ceb565b73ffffffffffffffffffffffffffffffffffffffff1614612c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6f90615598565b60405180910390fd5b565b612c82612e7a565b6000600e60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612cc6613343565b604051612cd39190613b37565b60405180910390a1565b612ce561189c565b15612d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1c90615604565b60405180910390fd5b565b612d3281600061334b565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e1382826040518060200160405280600081525061359d565b5050565b612e1f612cdd565b6001600e60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612e63613343565b604051612e709190613b37565b60405180910390a1565b612e8261189c565b612ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb890615670565b60405180910390fd5b565b6000806000905060005b8351811015612f1157838181518110612ee957612ee861464f565b5b602002602001015182612efc9190614e44565b91508080612f0990614941565b915050612ecd565b5080915050919050565b6000806000905060005b8351811015612fa557600073ffffffffffffffffffffffffffffffffffffffff16848281518110612f5957612f5861464f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603612f92578115612f8d57600092505050612fab565b600191505b8080612f9d90614941565b915050612f25565b50809150505b919050565b6000806001905060005b835181101561302957600073ffffffffffffffffffffffffffffffffffffffff16848281518110612fee57612fed61464f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff160361301657600091505b808061302190614941565b915050612fba565b5080915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613059612a07565b8786866040518563ffffffff1660e01b815260040161307b94939291906156e5565b6020604051808303816000875af19250505080156130b757506040513d601f19601f820116820180604052508101906130b49190615746565b60015b613130573d80600081146130e7576040519150601f19603f3d011682016040523d82523d6000602084013e6130ec565b606091505b506000815103613128576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036131ca576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132de565b600082905060005b600082146131fc5780806131e590614941565b915050600a826131f591906147b0565b91506131d2565b60008167ffffffffffffffff8111156132185761321761406e565b5b6040519080825280601f01601f19166020018201604052801561324a5781602001600182028036833780820191505090505b5090505b600085146132d7576001826132639190615773565b9150600a8561327291906157a7565b603061327e9190614e44565b60f81b8183815181106132945761329361464f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132d091906147b0565b945061324e565b8093505050505b919050565b600067ffffffffffffffff6040600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600033905090565b600061335683612a14565b9050600081905060008061336986612ae0565b9150915084156133d2576133858184613380612a07565b612b02565b6133d15761339a83613395612a07565b6126cd565b6133d0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6133e0836000886001612b46565b80156133eb57600082555b600160806001901b03600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506134938361345085600088612b4c565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612b74565b600a60008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036135195760006001870190506000600a600083815260200190815260200160002054036135175760065481146135165784600a6000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613583836000886001612b9f565b600760008154809291906001019190505550505050505050565b6135a7838361363b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146136365760006006549050600083820390505b6135e86000868380600101945086613033565b61361e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106135d557816006541461363357600080fd5b50505b505050565b60006006549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036136a8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036136e2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6136ef6000848385612b46565b600160406001901b178202600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613766836137576000866000612b4c565b6137608561380e565b17612b74565b600a6000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061378a578060068190555050506138096000848385612b9f565b505050565b60006001821460e11b9050919050565b828054828255906000526020600020908101928215613897579160200282015b828111156138965782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061383e565b5b5090506138a491906138f5565b5090565b8280548282559060005260206000209081019282156138e4579160200282015b828111156138e35782518255916020019190600101906138c8565b5b5090506138f191906138f5565b5090565b5b8082111561390e5760008160009055506001016138f6565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61395b81613926565b811461396657600080fd5b50565b60008135905061397881613952565b92915050565b6000602082840312156139945761399361391c565b5b60006139a284828501613969565b91505092915050565b60008115159050919050565b6139c0816139ab565b82525050565b60006020820190506139db60008301846139b7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a1b578082015181840152602081019050613a00565b60008484015250505050565b6000601f19601f8301169050919050565b6000613a43826139e1565b613a4d81856139ec565b9350613a5d8185602086016139fd565b613a6681613a27565b840191505092915050565b60006020820190508181036000830152613a8b8184613a38565b905092915050565b6000819050919050565b613aa681613a93565b8114613ab157600080fd5b50565b600081359050613ac381613a9d565b92915050565b600060208284031215613adf57613ade61391c565b5b6000613aed84828501613ab4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b2182613af6565b9050919050565b613b3181613b16565b82525050565b6000602082019050613b4c6000830184613b28565b92915050565b613b5b81613b16565b8114613b6657600080fd5b50565b600081359050613b7881613b52565b92915050565b60008060408385031215613b9557613b9461391c565b5b6000613ba385828601613b69565b9250506020613bb485828601613ab4565b9150509250929050565b6000613bc982613af6565b9050919050565b613bd981613bbe565b82525050565b6000602082019050613bf46000830184613bd0565b92915050565b613c0381613a93565b82525050565b6000602082019050613c1e6000830184613bfa565b92915050565b600080600060608486031215613c3d57613c3c61391c565b5b6000613c4b86828701613b69565b9350506020613c5c86828701613b69565b9250506040613c6d86828701613ab4565b9150509250925092565b600060208284031215613c8d57613c8c61391c565b5b6000613c9b84828501613b69565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613cd981613a93565b82525050565b6000613ceb8383613cd0565b60208301905092915050565b6000602082019050919050565b6000613d0f82613ca4565b613d198185613caf565b9350613d2483613cc0565b8060005b83811015613d55578151613d3c8882613cdf565b9750613d4783613cf7565b925050600181019050613d28565b5085935050505092915050565b60006020820190508181036000830152613d7c8184613d04565b905092915050565b600080600060608486031215613d9d57613d9c61391c565b5b6000613dab86828701613b69565b9350506020613dbc86828701613ab4565b9250506040613dcd86828701613ab4565b9150509250925092565b613de081613bbe565b8114613deb57600080fd5b50565b600081359050613dfd81613dd7565b92915050565b600060208284031215613e1957613e1861391c565b5b6000613e2784828501613dee565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613e5557613e54613e30565b5b8235905067ffffffffffffffff811115613e7257613e71613e35565b5b602083019150836001820283011115613e8e57613e8d613e3a565b5b9250929050565b60008060208385031215613eac57613eab61391c565b5b600083013567ffffffffffffffff811115613eca57613ec9613921565b5b613ed685828601613e3f565b92509250509250929050565b60008060408385031215613ef957613ef861391c565b5b6000613f0785828601613ab4565b9250506020613f1885828601613dee565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613f5781613bbe565b82525050565b6000613f698383613f4e565b60208301905092915050565b6000602082019050919050565b6000613f8d82613f22565b613f978185613f2d565b9350613fa283613f3e565b8060005b83811015613fd3578151613fba8882613f5d565b9750613fc583613f75565b925050600181019050613fa6565b5085935050505092915050565b60006020820190508181036000830152613ffa8184613f82565b905092915050565b61400b816139ab565b811461401657600080fd5b50565b60008135905061402881614002565b92915050565b600080604083850312156140455761404461391c565b5b600061405385828601613b69565b925050602061406485828601614019565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6140a682613a27565b810181811067ffffffffffffffff821117156140c5576140c461406e565b5b80604052505050565b60006140d8613912565b90506140e4828261409d565b919050565b600067ffffffffffffffff8211156141045761410361406e565b5b602082029050602081019050919050565b6000614128614123846140e9565b6140ce565b9050808382526020820190506020840283018581111561414b5761414a613e3a565b5b835b8181101561417457806141608882613dee565b84526020840193505060208101905061414d565b5050509392505050565b600082601f83011261419357614192613e30565b5b81356141a3848260208601614115565b91505092915050565b600067ffffffffffffffff8211156141c7576141c661406e565b5b602082029050602081019050919050565b60006141eb6141e6846141ac565b6140ce565b9050808382526020820190506020840283018581111561420e5761420d613e3a565b5b835b8181101561423757806142238882613ab4565b845260208401935050602081019050614210565b5050509392505050565b600082601f83011261425657614255613e30565b5b81356142668482602086016141d8565b91505092915050565b600080604083850312156142865761428561391c565b5b600083013567ffffffffffffffff8111156142a4576142a3613921565b5b6142b08582860161417e565b925050602083013567ffffffffffffffff8111156142d1576142d0613921565b5b6142dd85828601614241565b9150509250929050565b600080fd5b600067ffffffffffffffff8211156143075761430661406e565b5b61431082613a27565b9050602081019050919050565b82818337600083830152505050565b600061433f61433a846142ec565b6140ce565b90508281526020810184848401111561435b5761435a6142e7565b5b61436684828561431d565b509392505050565b600082601f83011261438357614382613e30565b5b813561439384826020860161432c565b91505092915050565b600080600080608085870312156143b6576143b561391c565b5b60006143c487828801613b69565b94505060206143d587828801613b69565b93505060406143e687828801613ab4565b925050606085013567ffffffffffffffff81111561440757614406613921565b5b6144138782880161436e565b91505092959194509250565b600080604083850312156144365761443561391c565b5b600061444485828601613b69565b925050602061445585828601613b69565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144a657607f821691505b6020821081036144b9576144b861445f565b5b50919050565b7f4d616a724e46543a20596f7520646f206e6f74206f776e207468697320746f6b60008201527f656e2e0000000000000000000000000000000000000000000000000000000000602082015250565b600061451b6023836139ec565b9150614526826144bf565b604082019050919050565b6000602082019050818103600083015261454a8161450e565b9050919050565b7f53706c69747465723a20436170206d757374206265206772656174657220746860008201527f616e206f7220657175616c20746f20342e000000000000000000000000000000602082015250565b60006145ad6031836139ec565b91506145b882614551565b604082019050919050565b600060208201905081810360008301526145dc816145a0565b9050919050565b7f4d616a724e46543a20496e76616c69642071756572792072616e67652e000000600082015250565b6000614619601d836139ec565b9150614624826145e3565b602082019050919050565b600060208201905081810360008301526146488161460c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f53706c69747465723a20496e76616c696420726566657272657220616464726560008201527f73732e0000000000000000000000000000000000000000000000000000000000602082015250565b60006146da6023836139ec565b91506146e58261467e565b604082019050919050565b60006020820190508181036000830152614709816146cd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061474a82613a93565b915061475583613a93565b925082820261476381613a93565b9150828204841483151761477a57614779614710565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147bb82613a93565b91506147c683613a93565b9250826147d6576147d5614781565b5b828204905092915050565b600081905092915050565b50565b60006147fc6000836147e1565b9150614807826147ec565b600082019050919050565b600061481d826147ef565b9150819050919050565b7f53706c69747465723a20436f756c646e27742073656e6420657468657220746f60008201527f20796f752e000000000000000000000000000000000000000000000000000000602082015250565b60006148836025836139ec565b915061488e82614827565b604082019050919050565b600060208201905081810360008301526148b281614876565b9050919050565b6000819050919050565b60006148de6148d96148d484613af6565b6148b9565b613af6565b9050919050565b60006148f0826148c3565b9050919050565b6000614902826148e5565b9050919050565b614912816148f7565b82525050565b600060408201905061492d6000830185614909565b61493a6020830184613bfa565b9392505050565b600061494c82613a93565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361497e5761497d614710565b5b600182019050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026149f67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826149b9565b614a0086836149b9565b95508019841693508086168417925050509392505050565b6000614a33614a2e614a2984613a93565b6148b9565b613a93565b9050919050565b6000819050919050565b614a4d83614a18565b614a61614a5982614a3a565b8484546149c6565b825550505050565b600090565b614a76614a69565b614a81818484614a44565b505050565b5b81811015614aa557614a9a600082614a6e565b600181019050614a87565b5050565b601f821115614aea57614abb81614994565b614ac4846149a9565b81016020851015614ad3578190505b614ae7614adf856149a9565b830182614a86565b50505b505050565b600082821c905092915050565b6000614b0d60001984600802614aef565b1980831691505092915050565b6000614b268383614afc565b9150826002028217905092915050565b614b408383614989565b67ffffffffffffffff811115614b5957614b5861406e565b5b614b63825461448e565b614b6e828285614aa9565b6000601f831160018114614b9d5760008415614b8b578287013590505b614b958582614b1a565b865550614bfd565b601f198416614bab86614994565b60005b82811015614bd357848901358255600182019150602085019450602081019050614bae565b86831015614bf05784890135614bec601f891682614afc565b8355505b6001600288020188555050505b50505050505050565b6000614c1283856139ec565b9350614c1f83858461431d565b614c2883613a27565b840190509392505050565b60006040820190508181036000830152614c4e818587614c06565b9050614c5d6020830184613bfa565b949350505050565b7f4d616a724e46543a204d7573742073656e642074686520636f7272656374206d60008201527f696e74206665652e000000000000000000000000000000000000000000000000602082015250565b6000614cc16028836139ec565b9150614ccc82614c65565b604082019050919050565b60006020820190508181036000830152614cf081614cb4565b9050919050565b7f4d616a724e46543a2043616e6e6f74206d696e74207769746820796f7572736560008201527f6c66206173207468652072656665727265722e00000000000000000000000000602082015250565b6000614d536033836139ec565b9150614d5e82614cf7565b604082019050919050565b60006020820190508181036000830152614d8281614d46565b9050919050565b7f4d616a724e46543a204d696e74207072696365206d757374206265206772656160008201527f746572207468616e207a65726f2e000000000000000000000000000000000000602082015250565b6000614de5602e836139ec565b9150614df082614d89565b604082019050919050565b60006020820190508181036000830152614e1481614dd8565b9050919050565b6000604082019050614e306000830185613bfa565b614e3d6020830184613bfa565b9392505050565b6000614e4f82613a93565b9150614e5a83613a93565b9250828201905080821115614e7257614e71614710565b5b92915050565b7f53706c69747465723a205f726566657272616c416464726573736573206c656e60008201527f677468206d757374206265206c657373207468616e2074686520636170202b2060208201527f312e000000000000000000000000000000000000000000000000000000000000604082015250565b6000614efa6042836139ec565b9150614f0582614e78565b606082019050919050565b60006020820190508181036000830152614f2981614eed565b9050919050565b7f53706c69747465723a205f726566657272616c41646472657373657320616e6460008201527f205f726566657272616c416d6f756e7473206d7573742062652074686520736160208201527f6d65206c656e6774682e00000000000000000000000000000000000000000000604082015250565b6000614fb2604a836139ec565b9150614fbd82614f30565b606082019050919050565b60006020820190508181036000830152614fe181614fa5565b9050919050565b7f53706c69747465723a205f726566657272616c416d6f756e7473206d7573742060008201527f746f74616c2031303030302e0000000000000000000000000000000000000000602082015250565b6000615044602c836139ec565b915061504f82614fe8565b604082019050919050565b6000602082019050818103600083015261507381615037565b9050919050565b7f53706c69747465723a204d75737420706173732030783020616464726573732060008201527f6173206f6e65206f66207468652061646472657373657320696e20746865206160208201527f727261792e000000000000000000000000000000000000000000000000000000604082015250565b60006150fc6045836139ec565b91506151078261507a565b606082019050919050565b6000602082019050818103600083015261512b816150ef565b9050919050565b6000604082019050818103600083015261514c8185613f82565b905081810360208301526151608184613d04565b90509392505050565b7f53706c69747465723a205f73706c6974416464726573736573206c656e67746860008201527f206d757374206265206c657373207468616e20746865206361702e0000000000602082015250565b60006151c5603b836139ec565b91506151d082615169565b604082019050919050565b600060208201905081810360008301526151f4816151b8565b9050919050565b7f53706c69747465723a205f73706c697441646472657373657320616e64205f7360008201527f706c6974416d6f756e7473206d757374206265207468652073616d65206c656e60208201527f6774682e00000000000000000000000000000000000000000000000000000000604082015250565b600061527d6044836139ec565b9150615288826151fb565b606082019050919050565b600060208201905081810360008301526152ac81615270565b9050919050565b7f53706c69747465723a205f73706c6974416d6f756e7473206d75737420746f7460008201527f616c2031303030302e0000000000000000000000000000000000000000000000602082015250565b600061530f6029836139ec565b915061531a826152b3565b604082019050919050565b6000602082019050818103600083015261533e81615302565b9050919050565b7f53706c69747465723a205f73706c697441646472657373657320636f6e74616960008201527f6e7320616e20696e76616c696420616464726573732830292e00000000000000602082015250565b60006153a16039836139ec565b91506153ac82615345565b604082019050919050565b600060208201905081810360008301526153d081615394565b9050919050565b600081905092915050565b600081546153ef8161448e565b6153f981866153d7565b9450600182166000811461541457600181146154295761545c565b60ff198316865281151582028601935061545c565b61543285614994565b60005b8381101561545457815481890152600182019150602081019050615435565b838801955050505b50505092915050565b6000615470826139e1565b61547a81856153d7565b935061548a8185602086016139fd565b80840191505092915050565b60006154a282856153e2565b91506154ae8284615465565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006155166026836139ec565b9150615521826154ba565b604082019050919050565b6000602082019050818103600083015261554581615509565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006155826020836139ec565b915061558d8261554c565b602082019050919050565b600060208201905081810360008301526155b181615575565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006155ee6010836139ec565b91506155f9826155b8565b602082019050919050565b6000602082019050818103600083015261561d816155e1565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061565a6014836139ec565b915061566582615624565b602082019050919050565b600060208201905081810360008301526156898161564d565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006156b782615690565b6156c1818561569b565b93506156d18185602086016139fd565b6156da81613a27565b840191505092915050565b60006080820190506156fa6000830187613b28565b6157076020830186613b28565b6157146040830185613bfa565b818103606083015261572681846156ac565b905095945050505050565b60008151905061574081613952565b92915050565b60006020828403121561575c5761575b61391c565b5b600061576a84828501615731565b91505092915050565b600061577e82613a93565b915061578983613a93565b92508282039050818111156157a1576157a0614710565b5b92915050565b60006157b282613a93565b91506157bd83613a93565b9250826157cd576157cc614781565b5b82820690509291505056fea2646970667358221220d65ac1d76009b2e4eda33e08a467f3b36d9b04e3e798995f7ac15c8263180fe764736f6c6343000811003300000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002c0000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000000074d414a522049440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074d414a522d49440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000003db03dc40b4c53ddf2f764431db35164b874db0c00000000000000000000000045bcdd95497ca6efd10846db5758c7c285be400600000000000000000000000025b7eb42316b8ecb6de1db55261c7f6a7182147c00000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000001b5800000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000000040000000000000000000000003db03dc40b4c53ddf2f764431db35164b874db0c00000000000000000000000045bcdd95497ca6efd10846db5758c7c285be400600000000000000000000000025b7eb42316b8ecb6de1db55261c7f6a7182147c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000001b5800000000000000000000000000000000000000000000000000000000000005dc00000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6170692e6e6d732e6465762e6d616a722e696f2f6d616a725f69642f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f6170692e6e6d732e6465762e6d616a722e696f2f6d616a725f69640000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102975760003560e01c8063715018a61161015a578063a22cb465116100c1578063cc5db68a1161007a578063cc5db68a14610a1a578063dc33e68114610a45578063e8a3d48514610a82578063e985e9c514610aad578063f2fde38b14610aea578063f765417614610b135761029e565b8063a22cb465146108fc578063a342f30814610925578063ac246ee71461094e578063b88d4fde14610977578063c4cc2d12146109a0578063c87b56dd146109dd5761029e565b8063938e3d7b11610113578063938e3d7b146107f9578063953a090b1461082257806395d89b411461084d5780639c2973cb14610878578063a035b1fe146108b5578063a0712d68146108e05761029e565b8063715018a614610730578063721cf6181461074757806375a9eb39146107635780638456cb591461078e5780638da5cb5b146107a557806391b7f5ed146107d05761029e565b806342966c68116101fe5780635c975abb116101b75780635c975abb146105e657806361b55118146106115780636352211e1461064e5780636c0360eb1461068b5780636ddf106f146106b657806370a08231146106f35761029e565b806342966c68146104d557806347786d37146104fe5780634aad9676146105275780634f558e79146105645780634faf6897146105a157806355f804b3146105bd5761029e565b806323b872dd1161025057806323b872dd146103d95780632478d63914610402578063339d00ba1461043f578063355274ea1461046a5780633f4ba83a1461049557806342842e0e146104ac5761029e565b806301ffc9a7146102a357806306fdde03146102e0578063081812fc1461030b578063095ea7b314610348578063139f94fd1461037157806318160ddd146103ae5761029e565b3661029e57005b600080fd5b3480156102af57600080fd5b506102ca60048036038101906102c5919061397e565b610b1d565b6040516102d791906139c6565b60405180910390f35b3480156102ec57600080fd5b506102f5610baf565b6040516103029190613a71565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190613ac9565b610c41565b60405161033f9190613b37565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190613b7e565b610cbd565b005b34801561037d57600080fd5b5061039860048036038101906103939190613ac9565b610dfe565b6040516103a59190613bdf565b60405180910390f35b3480156103ba57600080fd5b506103c3610e3d565b6040516103d09190613c09565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190613c24565b610e54565b005b34801561040e57600080fd5b5061042960048036038101906104249190613c77565b611176565b6040516104369190613c09565b60405180910390f35b34801561044b57600080fd5b50610454611188565b6040516104619190613d62565b60405180910390f35b34801561047657600080fd5b5061047f6111e0565b60405161048c9190613c09565b60405180910390f35b3480156104a157600080fd5b506104aa6111e6565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190613c24565b6111f8565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190613ac9565b611218565b005b34801561050a57600080fd5b5061052560048036038101906105209190613ac9565b6112a2565b005b34801561053357600080fd5b5061054e60048036038101906105499190613d84565b61132f565b60405161055b9190613d62565b60405180910390f35b34801561057057600080fd5b5061058b60048036038101906105869190613ac9565b61149f565b60405161059891906139c6565b60405180910390f35b6105bb60048036038101906105b69190613e03565b6114b1565b005b3480156105c957600080fd5b506105e460048036038101906105df9190613e95565b611843565b005b3480156105f257600080fd5b506105fb61189c565b60405161060891906139c6565b60405180910390f35b34801561061d57600080fd5b5061063860048036038101906106339190613c77565b6118b3565b6040516106459190613d62565b60405180910390f35b34801561065a57600080fd5b5061067560048036038101906106709190613ac9565b6119ae565b6040516106829190613b37565b60405180910390f35b34801561069757600080fd5b506106a06119c0565b6040516106ad9190613a71565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d89190613ac9565b611a52565b6040516106ea9190613c09565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190613c77565b611a76565b6040516107279190613c09565b60405180910390f35b34801561073c57600080fd5b50610745611b2e565b005b610761600480360381019061075c9190613ee2565b611b42565b005b34801561076f57600080fd5b50610778611c81565b6040516107859190613d62565b60405180910390f35b34801561079a57600080fd5b506107a3611cd9565b005b3480156107b157600080fd5b506107ba611ceb565b6040516107c79190613b37565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f29190613ac9565b611d14565b005b34801561080557600080fd5b50610820600480360381019061081b9190613e95565b611daa565b005b34801561082e57600080fd5b50610837611e03565b6040516108449190613fe0565b60405180910390f35b34801561085957600080fd5b50610862611e91565b60405161086f9190613a71565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a9190613ac9565b611f23565b6040516108ac9190613bdf565b60405180910390f35b3480156108c157600080fd5b506108ca611f62565b6040516108d79190613c09565b60405180910390f35b6108fa60048036038101906108f59190613ac9565b611f68565b005b34801561090857600080fd5b50610923600480360381019061091e919061402e565b61202d565b005b34801561093157600080fd5b5061094c6004803603810190610947919061426f565b6121a4565b005b34801561095a57600080fd5b506109756004803603810190610970919061426f565b612340565b005b34801561098357600080fd5b5061099e6004803603810190610999919061439c565b6124d0565b005b3480156109ac57600080fd5b506109c760048036038101906109c29190613ac9565b612543565b6040516109d49190613c09565b60405180910390f35b3480156109e957600080fd5b50610a0460048036038101906109ff9190613ac9565b612567565b604051610a119190613a71565b60405180910390f35b348015610a2657600080fd5b50610a2f61259b565b604051610a3c9190613fe0565b60405180910390f35b348015610a5157600080fd5b50610a6c6004803603810190610a679190613c77565b612629565b604051610a799190613c09565b60405180910390f35b348015610a8e57600080fd5b50610a9761263b565b604051610aa49190613a71565b60405180910390f35b348015610ab957600080fd5b50610ad46004803603810190610acf919061441f565b6126cd565b604051610ae191906139c6565b60405180910390f35b348015610af657600080fd5b50610b116004803603810190610b0c9190613c77565b612761565b005b610b1b6127e4565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ba85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060088054610bbe9061448e565b80601f0160208091040260200160405190810160405280929190818152602001828054610bea9061448e565b8015610c375780601f10610c0c57610100808354040283529160200191610c37565b820191906000526020600020905b815481529060010190602001808311610c1a57829003601f168201915b5050505050905090565b6000610c4c826129a8565b610c82576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cc8826119ae565b90508073ffffffffffffffffffffffffffffffffffffffff16610ce9612a07565b73ffffffffffffffffffffffffffffffffffffffff1614610d4c57610d1581610d10612a07565b6126cd565b610d4b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b82600c600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60038181548110610e0e57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610e47612a0f565b6007546006540303905090565b6000610e5f82612a14565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ec6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ed284612ae0565b91509150610ee88187610ee3612a07565b612b02565b610f3457610efd86610ef8612a07565b6126cd565b610f33576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610f9a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fa78686866001612b46565b8015610fb257600082555b600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506110808561105c888887612b4c565b7c020000000000000000000000000000000000000000000000000000000017612b74565b600a60008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111065760006001850190506000600a600083815260200190815260200160002054036111045760065481146111035783600a6000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461116e8686866001612b9f565b505050505050565b600061118182612ba5565b9050919050565b606060048054806020026020016040519081016040528092919081815260200182805480156111d657602002820191906000526020600020905b8154815260200190600101908083116111c2575b5050505050905090565b60055481565b6111ee612bfc565b6111f6612c7a565b565b611213838383604051806020016040528060008152506124d0565b505050565b611220612cdd565b611229816119ae565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d90614531565b60405180910390fd5b61129f81612d27565b50565b6112aa612bfc565b60048110156112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e5906145c3565b60405180910390fd5b806005819055507f3c8eb7c49d332f4c1e4d92a27cda93c31cc9452f7a408e0c6109fcddbc9946ea816040516113249190613c09565b60405180910390a150565b60606000831015801561134157508183105b611380576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113779061462f565b60405180910390fd5b600061138b85611a76565b905060008167ffffffffffffffff8111156113a9576113a861406e565b5b6040519080825280602002602001820160405280156113d75781602001602082028036833780820191505090505b509050600082036113ec578092505050611498565b600080600090505b8581141580156114045750838214155b1561148d576000611414826129a8565b1561142557611422826119ae565b90505b8873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361147f57818484806001019550815181106114725761147161464f565b5b6020026020010181815250505b5080806001019150506113f4565b508082528193505050505b9392505050565b60006114aa826129a8565b9050919050565b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff1603611520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611517906146f0565b60405180910390fd5b60005b60038054905081101561183f576000612710600483815481106115495761154861464f565b5b90600052602060002001543461155f919061473f565b61156991906147b0565b9050600073ffffffffffffffffffffffffffffffffffffffff16600383815481106115975761159661464f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036116c85760008373ffffffffffffffffffffffffffffffffffffffff168260405161160390614812565b60006040518083038185875af1925050503d8060008114611640576040519150601f19603f3d011682016040523d82523d6000602084013e611645565b606091505b5050905080611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090614899565b60405180910390fd5b7f5db31c63b6c985d138b0b2896458c45ecf94b259da29b7623bdef92b5853d0cd84836040516116ba929190614918565b60405180910390a15061182b565b6000600383815481106116de576116dd61464f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161172c90614812565b60006040518083038185875af1925050503d8060008114611769576040519150601f19603f3d011682016040523d82523d6000602084013e61176e565b606091505b50509050806117b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a990614899565b60405180910390fd5b7fe1665329182bc1dab50c9b04ea6bd37107b73ed7c585951d808b02cd9b659627600384815481106117e7576117e661464f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683604051611821929190614918565b60405180910390a1505b50808061183790614941565b915050611523565b5050565b61184b612bfc565b81816010918261185c929190614b36565b507fd587678e7c411598e9880645446de8d95a60b00aea16c7b8938cb3eef1a93dac82824260405161189093929190614c33565b60405180910390a15050565b6000600e60009054906101000a900460ff16905090565b606060006118c083611a76565b905060008167ffffffffffffffff8111156118de576118dd61406e565b5b60405190808252806020026020018201604052801561190c5781602001602082028036833780820191505090505b509050600080600090505b8382146119a2576000611929826129a8565b1561193a57611937826119ae565b90505b8673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361199457818484806001019550815181106119875761198661464f565b5b6020026020010181815250505b508080600101915050611917565b50819350505050919050565b60006119b982612a14565b9050919050565b6060601080546119cf9061448e565b80601f01602080910402602001604051908101604052809291908181526020018280546119fb9061448e565b8015611a485780601f10611a1d57610100808354040283529160200191611a48565b820191906000526020600020905b815481529060010190602001808311611a2b57829003601f168201915b5050505050905090565b60028181548110611a6257600080fd5b906000526020600020016000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611add576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611b36612bfc565b611b406000612d35565b565b611b4a612cdd565b81600f54611b58919061473f565b3414611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9090614cd7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfe90614d69565b60405180910390fd5b611c113383612df9565b3073ffffffffffffffffffffffffffffffffffffffff16634faf689734836040518363ffffffff1660e01b8152600401611c4b9190613bdf565b6000604051808303818588803b158015611c6457600080fd5b505af1158015611c78573d6000803e3d6000fd5b50505050505050565b60606002805480602002602001604051908101604052809291908181526020018280548015611ccf57602002820191906000526020600020905b815481526020019060010190808311611cbb575b5050505050905090565b611ce1612bfc565b611ce9612e17565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d1c612bfc565b611d24612e7a565b60008111611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e90614dfb565b60405180910390fd5b80600f819055507fb9362b96e28efbb7a7e63bb4a97faf9924ec0394635feff8588a6ae2a5f784fe8142604051611d9f929190614e1b565b60405180910390a150565b611db2612bfc565b818160119182611dc3929190614b36565b507f7f29f752fe1f0da3fae46246ab3335629ae4aeed5905e1906f3dfbe7ad23db20828242604051611df793929190614c33565b60405180910390a15050565b60606001805480602002602001604051908101604052809291908181526020018280548015611e8757602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611e3d575b5050505050905090565b606060098054611ea09061448e565b80601f0160208091040260200160405190810160405280929190818152602001828054611ecc9061448e565b8015611f195780601f10611eee57610100808354040283529160200191611f19565b820191906000526020600020905b815481529060010190602001808311611efc57829003601f168201915b5050505050905090565b60018181548110611f3357600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b611f70612cdd565b80600f54611f7e919061473f565b3414611fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb690614cd7565b60405180910390fd5b611fc93382612df9565b3073ffffffffffffffffffffffffffffffffffffffff1663f7654176346040518263ffffffff1660e01b81526004016000604051808303818588803b15801561201157600080fd5b505af1158015612025573d6000803e3d6000fd5b505050505050565b612035612a07565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612099576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d60006120a6612a07565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612153612a07565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161219891906139c6565b60405180910390a35050565b6121ac612bfc565b60016005546121bb9190614e44565b8251106121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f490614f10565b60405180910390fd5b8051825114612241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223890614fc8565b60405180910390fd5b61271061224d82612ec3565b1461228d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122849061505a565b60405180910390fd5b61229682612f1b565b6122d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc90615112565b60405180910390fd5b81600390805190602001906122eb92919061381e565b5080600490805190602001906123029291906138a8565b507f66b199a4992e94a960c6ea1b49c2a1d0801de626a2372518a23f1a7259c1c5b18282604051612334929190615132565b60405180910390a15050565b612348612bfc565b60055482511061238d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612384906151db565b60405180910390fd5b80518251146123d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c890615293565b60405180910390fd5b6127106123dd82612ec3565b1461241d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241490615325565b60405180910390fd5b61242682612fb0565b612465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245c906153b7565b60405180910390fd5b816001908051906020019061247b92919061381e565b5080600290805190602001906124929291906138a8565b507f52c438e94731786bccc25689d9a4d4e7d1d4abb74052370637e208305327a81182826040516124c4929190615132565b60405180910390a15050565b6124db848484610e54565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461253d5761250684848484613033565b61253c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6004818154811061255357600080fd5b906000526020600020016000915090505481565b6060601061257483613183565b604051602001612585929190615496565b6040516020818303038152906040529050919050565b6060600380548060200260200160405190810160405280929190818152602001828054801561261f57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116125d5575b5050505050905090565b6000612634826132e3565b9050919050565b60606011805461264a9061448e565b80601f01602080910402602001604051908101604052809291908181526020018280546126769061448e565b80156126c35780601f10612698576101008083540402835291602001916126c3565b820191906000526020600020905b8154815290600101906020018083116126a657829003601f168201915b5050505050905090565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612769612bfc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cf9061552c565b60405180910390fd5b6127e181612d35565b50565b60005b6001805490508110156129a55760006127106002838154811061280d5761280c61464f565b5b906000526020600020015434612823919061473f565b61282d91906147b0565b90506000600183815481106128455761284461464f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161289390614812565b60006040518083038185875af1925050503d80600081146128d0576040519150601f19603f3d011682016040523d82523d6000602084013e6128d5565b606091505b5050905080612919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291090614899565b60405180910390fd5b7fe1665329182bc1dab50c9b04ea6bd37107b73ed7c585951d808b02cd9b6596276001848154811061294e5761294d61464f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683604051612988929190614918565b60405180910390a15050808061299d90614941565b9150506127e7565b50565b6000816129b3612a0f565b111580156129c2575060065482105b8015612a00575060007c0100000000000000000000000000000000000000000000000000000000600a60008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080612a23612a0f565b11612aa957600654811015612aa8576000600a600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612aa6575b60008103612a9c57600a600083600190039350838152602001908152602001600020549050612a72565b8092505050612adb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600c90508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612b6386868461333a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600067ffffffffffffffff6080600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612c04613343565b73ffffffffffffffffffffffffffffffffffffffff16612c22611ceb565b73ffffffffffffffffffffffffffffffffffffffff1614612c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6f90615598565b60405180910390fd5b565b612c82612e7a565b6000600e60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612cc6613343565b604051612cd39190613b37565b60405180910390a1565b612ce561189c565b15612d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1c90615604565b60405180910390fd5b565b612d3281600061334b565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e1382826040518060200160405280600081525061359d565b5050565b612e1f612cdd565b6001600e60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612e63613343565b604051612e709190613b37565b60405180910390a1565b612e8261189c565b612ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb890615670565b60405180910390fd5b565b6000806000905060005b8351811015612f1157838181518110612ee957612ee861464f565b5b602002602001015182612efc9190614e44565b91508080612f0990614941565b915050612ecd565b5080915050919050565b6000806000905060005b8351811015612fa557600073ffffffffffffffffffffffffffffffffffffffff16848281518110612f5957612f5861464f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603612f92578115612f8d57600092505050612fab565b600191505b8080612f9d90614941565b915050612f25565b50809150505b919050565b6000806001905060005b835181101561302957600073ffffffffffffffffffffffffffffffffffffffff16848281518110612fee57612fed61464f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff160361301657600091505b808061302190614941565b915050612fba565b5080915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613059612a07565b8786866040518563ffffffff1660e01b815260040161307b94939291906156e5565b6020604051808303816000875af19250505080156130b757506040513d601f19601f820116820180604052508101906130b49190615746565b60015b613130573d80600081146130e7576040519150601f19603f3d011682016040523d82523d6000602084013e6130ec565b606091505b506000815103613128576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036131ca576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132de565b600082905060005b600082146131fc5780806131e590614941565b915050600a826131f591906147b0565b91506131d2565b60008167ffffffffffffffff8111156132185761321761406e565b5b6040519080825280601f01601f19166020018201604052801561324a5781602001600182028036833780820191505090505b5090505b600085146132d7576001826132639190615773565b9150600a8561327291906157a7565b603061327e9190614e44565b60f81b8183815181106132945761329361464f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132d091906147b0565b945061324e565b8093505050505b919050565b600067ffffffffffffffff6040600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600033905090565b600061335683612a14565b9050600081905060008061336986612ae0565b9150915084156133d2576133858184613380612a07565b612b02565b6133d15761339a83613395612a07565b6126cd565b6133d0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6133e0836000886001612b46565b80156133eb57600082555b600160806001901b03600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506134938361345085600088612b4c565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612b74565b600a60008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036135195760006001870190506000600a600083815260200190815260200160002054036135175760065481146135165784600a6000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613583836000886001612b9f565b600760008154809291906001019190505550505050505050565b6135a7838361363b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146136365760006006549050600083820390505b6135e86000868380600101945086613033565b61361e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106135d557816006541461363357600080fd5b50505b505050565b60006006549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036136a8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036136e2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6136ef6000848385612b46565b600160406001901b178202600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613766836137576000866000612b4c565b6137608561380e565b17612b74565b600a6000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061378a578060068190555050506138096000848385612b9f565b505050565b60006001821460e11b9050919050565b828054828255906000526020600020908101928215613897579160200282015b828111156138965782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061383e565b5b5090506138a491906138f5565b5090565b8280548282559060005260206000209081019282156138e4579160200282015b828111156138e35782518255916020019190600101906138c8565b5b5090506138f191906138f5565b5090565b5b8082111561390e5760008160009055506001016138f6565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61395b81613926565b811461396657600080fd5b50565b60008135905061397881613952565b92915050565b6000602082840312156139945761399361391c565b5b60006139a284828501613969565b91505092915050565b60008115159050919050565b6139c0816139ab565b82525050565b60006020820190506139db60008301846139b7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a1b578082015181840152602081019050613a00565b60008484015250505050565b6000601f19601f8301169050919050565b6000613a43826139e1565b613a4d81856139ec565b9350613a5d8185602086016139fd565b613a6681613a27565b840191505092915050565b60006020820190508181036000830152613a8b8184613a38565b905092915050565b6000819050919050565b613aa681613a93565b8114613ab157600080fd5b50565b600081359050613ac381613a9d565b92915050565b600060208284031215613adf57613ade61391c565b5b6000613aed84828501613ab4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b2182613af6565b9050919050565b613b3181613b16565b82525050565b6000602082019050613b4c6000830184613b28565b92915050565b613b5b81613b16565b8114613b6657600080fd5b50565b600081359050613b7881613b52565b92915050565b60008060408385031215613b9557613b9461391c565b5b6000613ba385828601613b69565b9250506020613bb485828601613ab4565b9150509250929050565b6000613bc982613af6565b9050919050565b613bd981613bbe565b82525050565b6000602082019050613bf46000830184613bd0565b92915050565b613c0381613a93565b82525050565b6000602082019050613c1e6000830184613bfa565b92915050565b600080600060608486031215613c3d57613c3c61391c565b5b6000613c4b86828701613b69565b9350506020613c5c86828701613b69565b9250506040613c6d86828701613ab4565b9150509250925092565b600060208284031215613c8d57613c8c61391c565b5b6000613c9b84828501613b69565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613cd981613a93565b82525050565b6000613ceb8383613cd0565b60208301905092915050565b6000602082019050919050565b6000613d0f82613ca4565b613d198185613caf565b9350613d2483613cc0565b8060005b83811015613d55578151613d3c8882613cdf565b9750613d4783613cf7565b925050600181019050613d28565b5085935050505092915050565b60006020820190508181036000830152613d7c8184613d04565b905092915050565b600080600060608486031215613d9d57613d9c61391c565b5b6000613dab86828701613b69565b9350506020613dbc86828701613ab4565b9250506040613dcd86828701613ab4565b9150509250925092565b613de081613bbe565b8114613deb57600080fd5b50565b600081359050613dfd81613dd7565b92915050565b600060208284031215613e1957613e1861391c565b5b6000613e2784828501613dee565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613e5557613e54613e30565b5b8235905067ffffffffffffffff811115613e7257613e71613e35565b5b602083019150836001820283011115613e8e57613e8d613e3a565b5b9250929050565b60008060208385031215613eac57613eab61391c565b5b600083013567ffffffffffffffff811115613eca57613ec9613921565b5b613ed685828601613e3f565b92509250509250929050565b60008060408385031215613ef957613ef861391c565b5b6000613f0785828601613ab4565b9250506020613f1885828601613dee565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613f5781613bbe565b82525050565b6000613f698383613f4e565b60208301905092915050565b6000602082019050919050565b6000613f8d82613f22565b613f978185613f2d565b9350613fa283613f3e565b8060005b83811015613fd3578151613fba8882613f5d565b9750613fc583613f75565b925050600181019050613fa6565b5085935050505092915050565b60006020820190508181036000830152613ffa8184613f82565b905092915050565b61400b816139ab565b811461401657600080fd5b50565b60008135905061402881614002565b92915050565b600080604083850312156140455761404461391c565b5b600061405385828601613b69565b925050602061406485828601614019565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6140a682613a27565b810181811067ffffffffffffffff821117156140c5576140c461406e565b5b80604052505050565b60006140d8613912565b90506140e4828261409d565b919050565b600067ffffffffffffffff8211156141045761410361406e565b5b602082029050602081019050919050565b6000614128614123846140e9565b6140ce565b9050808382526020820190506020840283018581111561414b5761414a613e3a565b5b835b8181101561417457806141608882613dee565b84526020840193505060208101905061414d565b5050509392505050565b600082601f83011261419357614192613e30565b5b81356141a3848260208601614115565b91505092915050565b600067ffffffffffffffff8211156141c7576141c661406e565b5b602082029050602081019050919050565b60006141eb6141e6846141ac565b6140ce565b9050808382526020820190506020840283018581111561420e5761420d613e3a565b5b835b8181101561423757806142238882613ab4565b845260208401935050602081019050614210565b5050509392505050565b600082601f83011261425657614255613e30565b5b81356142668482602086016141d8565b91505092915050565b600080604083850312156142865761428561391c565b5b600083013567ffffffffffffffff8111156142a4576142a3613921565b5b6142b08582860161417e565b925050602083013567ffffffffffffffff8111156142d1576142d0613921565b5b6142dd85828601614241565b9150509250929050565b600080fd5b600067ffffffffffffffff8211156143075761430661406e565b5b61431082613a27565b9050602081019050919050565b82818337600083830152505050565b600061433f61433a846142ec565b6140ce565b90508281526020810184848401111561435b5761435a6142e7565b5b61436684828561431d565b509392505050565b600082601f83011261438357614382613e30565b5b813561439384826020860161432c565b91505092915050565b600080600080608085870312156143b6576143b561391c565b5b60006143c487828801613b69565b94505060206143d587828801613b69565b93505060406143e687828801613ab4565b925050606085013567ffffffffffffffff81111561440757614406613921565b5b6144138782880161436e565b91505092959194509250565b600080604083850312156144365761443561391c565b5b600061444485828601613b69565b925050602061445585828601613b69565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144a657607f821691505b6020821081036144b9576144b861445f565b5b50919050565b7f4d616a724e46543a20596f7520646f206e6f74206f776e207468697320746f6b60008201527f656e2e0000000000000000000000000000000000000000000000000000000000602082015250565b600061451b6023836139ec565b9150614526826144bf565b604082019050919050565b6000602082019050818103600083015261454a8161450e565b9050919050565b7f53706c69747465723a20436170206d757374206265206772656174657220746860008201527f616e206f7220657175616c20746f20342e000000000000000000000000000000602082015250565b60006145ad6031836139ec565b91506145b882614551565b604082019050919050565b600060208201905081810360008301526145dc816145a0565b9050919050565b7f4d616a724e46543a20496e76616c69642071756572792072616e67652e000000600082015250565b6000614619601d836139ec565b9150614624826145e3565b602082019050919050565b600060208201905081810360008301526146488161460c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f53706c69747465723a20496e76616c696420726566657272657220616464726560008201527f73732e0000000000000000000000000000000000000000000000000000000000602082015250565b60006146da6023836139ec565b91506146e58261467e565b604082019050919050565b60006020820190508181036000830152614709816146cd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061474a82613a93565b915061475583613a93565b925082820261476381613a93565b9150828204841483151761477a57614779614710565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147bb82613a93565b91506147c683613a93565b9250826147d6576147d5614781565b5b828204905092915050565b600081905092915050565b50565b60006147fc6000836147e1565b9150614807826147ec565b600082019050919050565b600061481d826147ef565b9150819050919050565b7f53706c69747465723a20436f756c646e27742073656e6420657468657220746f60008201527f20796f752e000000000000000000000000000000000000000000000000000000602082015250565b60006148836025836139ec565b915061488e82614827565b604082019050919050565b600060208201905081810360008301526148b281614876565b9050919050565b6000819050919050565b60006148de6148d96148d484613af6565b6148b9565b613af6565b9050919050565b60006148f0826148c3565b9050919050565b6000614902826148e5565b9050919050565b614912816148f7565b82525050565b600060408201905061492d6000830185614909565b61493a6020830184613bfa565b9392505050565b600061494c82613a93565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361497e5761497d614710565b5b600182019050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026149f67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826149b9565b614a0086836149b9565b95508019841693508086168417925050509392505050565b6000614a33614a2e614a2984613a93565b6148b9565b613a93565b9050919050565b6000819050919050565b614a4d83614a18565b614a61614a5982614a3a565b8484546149c6565b825550505050565b600090565b614a76614a69565b614a81818484614a44565b505050565b5b81811015614aa557614a9a600082614a6e565b600181019050614a87565b5050565b601f821115614aea57614abb81614994565b614ac4846149a9565b81016020851015614ad3578190505b614ae7614adf856149a9565b830182614a86565b50505b505050565b600082821c905092915050565b6000614b0d60001984600802614aef565b1980831691505092915050565b6000614b268383614afc565b9150826002028217905092915050565b614b408383614989565b67ffffffffffffffff811115614b5957614b5861406e565b5b614b63825461448e565b614b6e828285614aa9565b6000601f831160018114614b9d5760008415614b8b578287013590505b614b958582614b1a565b865550614bfd565b601f198416614bab86614994565b60005b82811015614bd357848901358255600182019150602085019450602081019050614bae565b86831015614bf05784890135614bec601f891682614afc565b8355505b6001600288020188555050505b50505050505050565b6000614c1283856139ec565b9350614c1f83858461431d565b614c2883613a27565b840190509392505050565b60006040820190508181036000830152614c4e818587614c06565b9050614c5d6020830184613bfa565b949350505050565b7f4d616a724e46543a204d7573742073656e642074686520636f7272656374206d60008201527f696e74206665652e000000000000000000000000000000000000000000000000602082015250565b6000614cc16028836139ec565b9150614ccc82614c65565b604082019050919050565b60006020820190508181036000830152614cf081614cb4565b9050919050565b7f4d616a724e46543a2043616e6e6f74206d696e74207769746820796f7572736560008201527f6c66206173207468652072656665727265722e00000000000000000000000000602082015250565b6000614d536033836139ec565b9150614d5e82614cf7565b604082019050919050565b60006020820190508181036000830152614d8281614d46565b9050919050565b7f4d616a724e46543a204d696e74207072696365206d757374206265206772656160008201527f746572207468616e207a65726f2e000000000000000000000000000000000000602082015250565b6000614de5602e836139ec565b9150614df082614d89565b604082019050919050565b60006020820190508181036000830152614e1481614dd8565b9050919050565b6000604082019050614e306000830185613bfa565b614e3d6020830184613bfa565b9392505050565b6000614e4f82613a93565b9150614e5a83613a93565b9250828201905080821115614e7257614e71614710565b5b92915050565b7f53706c69747465723a205f726566657272616c416464726573736573206c656e60008201527f677468206d757374206265206c657373207468616e2074686520636170202b2060208201527f312e000000000000000000000000000000000000000000000000000000000000604082015250565b6000614efa6042836139ec565b9150614f0582614e78565b606082019050919050565b60006020820190508181036000830152614f2981614eed565b9050919050565b7f53706c69747465723a205f726566657272616c41646472657373657320616e6460008201527f205f726566657272616c416d6f756e7473206d7573742062652074686520736160208201527f6d65206c656e6774682e00000000000000000000000000000000000000000000604082015250565b6000614fb2604a836139ec565b9150614fbd82614f30565b606082019050919050565b60006020820190508181036000830152614fe181614fa5565b9050919050565b7f53706c69747465723a205f726566657272616c416d6f756e7473206d7573742060008201527f746f74616c2031303030302e0000000000000000000000000000000000000000602082015250565b6000615044602c836139ec565b915061504f82614fe8565b604082019050919050565b6000602082019050818103600083015261507381615037565b9050919050565b7f53706c69747465723a204d75737420706173732030783020616464726573732060008201527f6173206f6e65206f66207468652061646472657373657320696e20746865206160208201527f727261792e000000000000000000000000000000000000000000000000000000604082015250565b60006150fc6045836139ec565b91506151078261507a565b606082019050919050565b6000602082019050818103600083015261512b816150ef565b9050919050565b6000604082019050818103600083015261514c8185613f82565b905081810360208301526151608184613d04565b90509392505050565b7f53706c69747465723a205f73706c6974416464726573736573206c656e67746860008201527f206d757374206265206c657373207468616e20746865206361702e0000000000602082015250565b60006151c5603b836139ec565b91506151d082615169565b604082019050919050565b600060208201905081810360008301526151f4816151b8565b9050919050565b7f53706c69747465723a205f73706c697441646472657373657320616e64205f7360008201527f706c6974416d6f756e7473206d757374206265207468652073616d65206c656e60208201527f6774682e00000000000000000000000000000000000000000000000000000000604082015250565b600061527d6044836139ec565b9150615288826151fb565b606082019050919050565b600060208201905081810360008301526152ac81615270565b9050919050565b7f53706c69747465723a205f73706c6974416d6f756e7473206d75737420746f7460008201527f616c2031303030302e0000000000000000000000000000000000000000000000602082015250565b600061530f6029836139ec565b915061531a826152b3565b604082019050919050565b6000602082019050818103600083015261533e81615302565b9050919050565b7f53706c69747465723a205f73706c697441646472657373657320636f6e74616960008201527f6e7320616e20696e76616c696420616464726573732830292e00000000000000602082015250565b60006153a16039836139ec565b91506153ac82615345565b604082019050919050565b600060208201905081810360008301526153d081615394565b9050919050565b600081905092915050565b600081546153ef8161448e565b6153f981866153d7565b9450600182166000811461541457600181146154295761545c565b60ff198316865281151582028601935061545c565b61543285614994565b60005b8381101561545457815481890152600182019150602081019050615435565b838801955050505b50505092915050565b6000615470826139e1565b61547a81856153d7565b935061548a8185602086016139fd565b80840191505092915050565b60006154a282856153e2565b91506154ae8284615465565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006155166026836139ec565b9150615521826154ba565b604082019050919050565b6000602082019050818103600083015261554581615509565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006155826020836139ec565b915061558d8261554c565b602082019050919050565b600060208201905081810360008301526155b181615575565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006155ee6010836139ec565b91506155f9826155b8565b602082019050919050565b6000602082019050818103600083015261561d816155e1565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061565a6014836139ec565b915061566582615624565b602082019050919050565b600060208201905081810360008301526156898161564d565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006156b782615690565b6156c1818561569b565b93506156d18185602086016139fd565b6156da81613a27565b840191505092915050565b60006080820190506156fa6000830187613b28565b6157076020830186613b28565b6157146040830185613bfa565b818103606083015261572681846156ac565b905095945050505050565b60008151905061574081613952565b92915050565b60006020828403121561575c5761575b61391c565b5b600061576a84828501615731565b91505092915050565b600061577e82613a93565b915061578983613a93565b92508282039050818111156157a1576157a0614710565b5b92915050565b60006157b282613a93565b91506157bd83613a93565b9250826157cd576157cc614781565b5b82820690509291505056fea2646970667358221220d65ac1d76009b2e4eda33e08a467f3b36d9b04e3e798995f7ac15c8263180fe764736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002c0000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000000074d414a522049440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074d414a522d49440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000003db03dc40b4c53ddf2f764431db35164b874db0c00000000000000000000000045bcdd95497ca6efd10846db5758c7c285be400600000000000000000000000025b7eb42316b8ecb6de1db55261c7f6a7182147c00000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000001b5800000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000000040000000000000000000000003db03dc40b4c53ddf2f764431db35164b874db0c00000000000000000000000045bcdd95497ca6efd10846db5758c7c285be400600000000000000000000000025b7eb42316b8ecb6de1db55261c7f6a7182147c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000001b5800000000000000000000000000000000000000000000000000000000000005dc00000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6170692e6e6d732e6465762e6d616a722e696f2f6d616a725f69642f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f6170692e6e6d732e6465762e6d616a722e696f2f6d616a725f69640000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MAJR ID
Arg [1] : _symbol (string): MAJR-ID
Arg [2] : _price (uint256): 10000000000000000
Arg [3] : _splitAddresses (address[]): 0x3Db03dc40b4C53Ddf2F764431dB35164B874db0C,0x45BCdD95497Ca6Efd10846Db5758C7c285bE4006,0x25b7Eb42316b8EcB6de1db55261c7f6A7182147C
Arg [4] : _splitAmounts (uint256[]): 7000,2000,1000
Arg [5] : _referralAddresses (address[]): 0x3Db03dc40b4C53Ddf2F764431dB35164B874db0C,0x45BCdD95497Ca6Efd10846Db5758C7c285bE4006,0x25b7Eb42316b8EcB6de1db55261c7f6A7182147C,0x0000000000000000000000000000000000000000
Arg [6] : _referralAmounts (uint256[]): 7000,1500,1000,500
Arg [7] : _cap (uint256): 4
Arg [8] : _tokenBaseURI (string): https://api.nms.dev.majr.io/majr_id/
Arg [9] : _contractMetadataURI (string): https://api.nms.dev.majr.io/majr_id

-----Encoded View---------------
38 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [5] : 00000000000000000000000000000000000000000000000000000000000002c0
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000360
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000400
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000460
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [11] : 4d414a5220494400000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [13] : 4d414a522d494400000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [15] : 0000000000000000000000003db03dc40b4c53ddf2f764431db35164b874db0c
Arg [16] : 00000000000000000000000045bcdd95497ca6efd10846db5758c7c285be4006
Arg [17] : 00000000000000000000000025b7eb42316b8ecb6de1db55261c7f6a7182147c
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [19] : 0000000000000000000000000000000000000000000000000000000000001b58
Arg [20] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [21] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [23] : 0000000000000000000000003db03dc40b4c53ddf2f764431db35164b874db0c
Arg [24] : 00000000000000000000000045bcdd95497ca6efd10846db5758c7c285be4006
Arg [25] : 00000000000000000000000025b7eb42316b8ecb6de1db55261c7f6a7182147c
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [27] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [28] : 0000000000000000000000000000000000000000000000000000000000001b58
Arg [29] : 00000000000000000000000000000000000000000000000000000000000005dc
Arg [30] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [31] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [32] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [33] : 68747470733a2f2f6170692e6e6d732e6465762e6d616a722e696f2f6d616a72
Arg [34] : 5f69642f00000000000000000000000000000000000000000000000000000000
Arg [35] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [36] : 68747470733a2f2f6170692e6e6d732e6465762e6d616a722e696f2f6d616a72
Arg [37] : 5f69640000000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.