Arbitrum Sepolia Testnet

Token

EllerianHeroes (EllerianHeroes)
ERC-721

Overview

Max Total Supply

0 EllerianHeroes

Holders

3

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-
Balance
0 EllerianHeroes
0x0000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
EllerianHero

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
istanbul EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

pragma solidity ^0.8.0;
//SPDX-License-Identifier: UNLICENSED

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./interfaces/IEllerianHeroUpgradeable.sol";
import "./interfaces/IVRFHelper.sol";
import "./interfaces/IHeroBridge.sol";

// Interface for Whitelist Verifier using Merkle Tree
contract IWhitelistVerifier {
  function verify(bytes32 leaf, bytes32[] memory proof) external view returns (bool) {}
} 

contract ITokenUriHelper {
  function GetTokenUri(uint256 _tokenId) external view returns (string memory) {}
  function GetClassName(uint256 _class) external view returns (string memory) {}
}




/** 
 * Tales of Elleria
*/
contract EllerianHero is ERC721 {


  uint256 private currentSupply;  // Keeps track of the current supply.
  bool private globalMintOpened;  // Can minting happen?

  // Variables to make the pre-sales go smoothly. 
  // Mint will be locked on deployment, and needs to be manually enabled by the owner.
  mapping (address => bool) private isWhitelisted;
  mapping (address => uint256) private presalesMinted;
  bool private requiresWhitelist;
  bool private presalesMintOpened;
  uint256 private mintCostInWEI;
  uint256 private maximumMintable;
  uint256 private maximumMintsPerWallet;

  // We define the initial minimum stats for minting.
  // Caters for different 'banners', for expansion, and for different options in the future.
  uint256[][] private minStats = [
  [0, 0, 0, 0, 0, 0],
  [20, 1, 10, 1, 1, 1],
  [10, 20, 1, 1, 1, 1],
  [1, 1, 1, 1, 20, 10],
  [20, 10, 1, 1, 1, 1]];

  // We define the initial maximum stats for minting.
  // Maximum stats cannot be adjusted after a class is added.
  uint256[][] private maxStats = [
  [0, 0, 0, 0, 0, 0],
  [100, 75, 90, 80, 50, 50],
  [90, 100, 75, 50, 50, 80],
  [50, 80, 50, 75, 100, 90],
  [100, 90, 75, 50, 50, 80]];

  // Keeps track of the main and secondary stats for each class.
  uint256[] private mainStatIndex = [ 0, 0, 1, 4, 0 ];
  uint256[] private subStatIndex = [ 0, 2, 0, 5, 1 ];

  // Keeps track of the possibilities of minting each class,
  // Can be adjusted for each banner during minting events, after presales, etc.
  // or to introduce legendary characters, exclusive banners, etc.
  uint256[][] private classPossibilities = [[0, 2500, 5000, 7500, 10000], 
  [0, 7000, 8000, 9000, 10000], [0, 1000, 2000, 3000, 10000]];

  uint256[] private maximumMintsForClass = [0, 0, 0, 0, 0]; // Allows certain classes to have a maximum mint cap for rarity.
  mapping(uint256 => uint256) private currentMintsForClass; // Keeps track of the number of mints.

  // Keeps track of admin addresses.
  mapping (address => bool) private _approvedAddresses;

  address private ownerAddress;             // The contract owner's address.
  address private tokenMinterAddress;       // Reference to the NFT's minting logic.

  IEllerianHeroUpgradeable upgradeableAbi;  // Reference to the NFT's upgrade logic.
  IVRFHelper vrfAbi;                        // Reference to the Randomizer.
  IWhitelistVerifier verifierAbi;           // Reference to the Whitelist
  ITokenUriHelper uriAbi;                   // Reference to the tokenUri handler.
  IHeroBridge bridgeAbi;                    // Reference to the ERC721 bridge.

  constructor() 
    ERC721("EllerianHeroes", "EllerianHeroes") {
      ownerAddress = msg.sender;
    }
    
    function _onlyOwner() private view {
      require(msg.sender == ownerAddress, "O");
    }

    modifier onlyOwner() {
      _onlyOwner();
      _;
    }


  /**
    * Returns the number of global remaining mints.
    */
  function GetRemainingMints() external view returns (uint256) {
    return maximumMintable - currentSupply;
  }

  /**
    * Returns the number of remaining wallet mints.
  */
  function GetRemainingPresalesMints() external view returns (uint256) {
    if ( presalesMinted[msg.sender] >= maximumMintsPerWallet)
      return 0;
      
    return maximumMintsPerWallet - presalesMinted[msg.sender];
  }
  
  /*
  * Custom tokenURI to allow for customisability.
  * Returns imageUri, 
  * str, agi, vit, end, int, wil, 
  * totalAttr, class name, summonedTime,
  * level
  * 
  */
  function tokenURI(uint256 tokenId) public view override returns (string memory) {
    return uriAbi.GetTokenUri(tokenId);
  }

  /**
    * Allows the ownership of the contract to be transferred to a safer multi-sig wallet once deployed.
    */ 
  function TransferOwnership(address _newOwner) external onlyOwner {
    require(_newOwner != address(0));
    ownerAddress = _newOwner;
  }

  /**
    * Allows presales minting variables to be adjusted.
    */
  function SetMintable(bool _presalesOpened, uint256 _newMintCostInWEI, uint256 _maxMints,  bool _requireWhitelist, uint256 _max) external onlyOwner {
    presalesMintOpened = _presalesOpened;
    requiresWhitelist = _requireWhitelist;
    mintCostInWEI = _newMintCostInWEI;
    maximumMintable = _max;
    maximumMintsPerWallet = _maxMints;
    globalMintOpened = false; // Locks the mint in case of accidents. To be manually enabled again.
  }

  /**
    * Allows the owner to add new classes. 
    * When a new class is added, minting will automatically be locked.
    */
  function AddNewClass(uint256[6] memory _new_class_min, uint256[6] memory _new_class_max, uint256 _main_stat, uint256 _sub_stat, uint256[][] memory _classPossibilities, uint256[] memory _maximumClassMints) external onlyOwner {
    minStats.push(_new_class_min);
    maxStats.push(_new_class_max);
    mainStatIndex.push(_main_stat);
    subStatIndex.push(_sub_stat);
    UpdateClassPossibilities(_classPossibilities, _maximumClassMints);
    globalMintOpened = false; // Locks the mint in case of accidents. Remember to re-open!
  }

  /*
   * Allows the owner to block or allow minting.
   */
  function SetGlobalMint(bool _allow) external onlyOwner {
    globalMintOpened = _allow;
  }

  /*
   * Allows the owner to modify the possibilities for getting different classes, as well as impose a limit on different classes.
   *  Classes 1-4 (the OG ones) are exempted from the limit.
   */
  function UpdateClassPossibilities(uint256[][] memory _classPossibilities, uint256[] memory _maximumClassMint) public onlyOwner {
    for (uint256 i = 0; i < _classPossibilities.length; i++) {
      require(_classPossibilities[i].length == maxStats.length, "12");
    }
    
    require(_maximumClassMint.length == maxStats.length, "12");
    classPossibilities = _classPossibilities;
    maximumMintsForClass = _maximumClassMint;
  }
 
  /*
   * Allows the owner to modify minimum stats for different events if necessary.
   */
  function SetRandomStatMinimums(uint256[][] memory _newMinStats) external onlyOwner {
    require(minStats.length == _newMinStats.length);
    minStats = _newMinStats;
  }

  /*
   * Link with other contracts necessary for this to function.
   */
  function SetAddresses(address _upgradeableAddr, address _tokenMinterAddr, address _vrfAddr, address _verifierAddr, address _uriAddr) external onlyOwner {
    tokenMinterAddress = _tokenMinterAddr;

    upgradeableAbi = IEllerianHeroUpgradeable(_upgradeableAddr);
    vrfAbi = IVRFHelper(_vrfAddr);
    verifierAbi = IWhitelistVerifier(_verifierAddr);
    uriAbi = ITokenUriHelper(_uriAddr);
  }

  /**
    * Allows approval of certain contracts
    * for transfers. (bridge, marketplace, staking)
    */
  function SetApprovedAddress(address _address, bool _allowed) public onlyOwner {
      _approvedAddresses[_address] = _allowed;
  }   

  /**
  *  Allows batch minting of Heroes! (for presales only).
  */
  function mintPresales (address _owner, uint256 _amount, uint256 _variant, bytes32[] memory _proof) public payable {
      require (currentSupply + _amount < maximumMintable + 1, "8");
      require (tx.origin == msg.sender, "9");
      require (msg.sender == _owner, "9");
      require (globalMintOpened, "20");
      require (presalesMintOpened, "11");
      require (presalesMinted[msg.sender] + _amount < maximumMintsPerWallet + 1, "39");
      require (msg.value == mintCostInWEI * _amount, "19");

      if (requiresWhitelist) {
        require (verifierAbi.verify(keccak256(abi.encode(_owner)), _proof), "13");
      }
      
      presalesMinted[msg.sender] += _amount;

      for (uint256 a = 0; a < _amount; a++) {
          uint256 id = currentSupply;
          _safeMint(msg.sender, id);
          _processMintedToken(id, _variant);
      }
  }

  /**
  * Allows the minting of NFTs using tokens.
  * This function must be called by a delegated minter contract.
  */
  function mintUsingToken(address _recipient, uint256 _amount, uint256 _variant) public {
    require (currentSupply + _amount < maximumMintable + 1, "8");
    require(tokenMinterAddress == msg.sender, "15");
    require (globalMintOpened, "20");

    for (uint256 a = 0; a < _amount; a++) {
          uint256 id = currentSupply;
          _safeMint(_recipient, id);
          _processMintedToken(id, _variant);
    }
  }
  
  /*
  * Allows the owner to airdrop NFTs for distributions/rewards/team.
  * Cannot airdrop exceeding maximum supply!
  */ 
  function airdrop (address _to, uint256 _amount, uint256 _variant) public onlyOwner {
    require( currentSupply + _amount < maximumMintable + 1, "8");
    for (uint256 a = 0; a < _amount; a++) {
        uint256 id = currentSupply;
        _safeMint(_to, id);
        _processMintedToken(id, _variant);
    }
  }

  function safeTransferFrom (address _from, address _to, uint256 _tokenId) public override {
    safeTransferFrom(_from, _to, _tokenId, "");
  }

  /* 
   * Do not allow transfers to non approved addresses.
   */
  function safeTransferFrom (address _from, address _to, uint256 _tokenId, bytes memory _data) public override {
    require(_isApprovedOrOwner(_msgSender(), _tokenId), "SFF");
    require(!upgradeableAbi.IsStaked(_tokenId), "41");

    if (_approvedAddresses[_from] || _approvedAddresses[_to]) {
    } else if (_to != address(0)) {
      // Reset experience for non-exempted addresses.
      upgradeableAbi.ResetHeroExperience(_tokenId, 0);
    }

    _safeTransfer(_from, _to, _tokenId, _data);
  }

   function _beforeTokenTransfer(
        address _from,
        address _to,
        uint256 _tokenId
    ) internal override {
        super._beforeTokenTransfer(_from, _to, _tokenId);

        require(!upgradeableAbi.IsStaked(_tokenId), "41");
    }

  /* 
   * Allows burning and approval check for heroes.
   */
  function burn (uint256 _tokenId, bool _isBurnt) public {
    require(_isApprovedOrOwner(_msgSender(), _tokenId), "22");
    if (_isBurnt) {
      _burn(_tokenId);
    }
  }

  /* 
   * Allows the withdrawal of presale funds into the owner's wallet.
   * For fund allocation, refer to the whitepaper.
   */
  function withdraw() public onlyOwner {
    (bool success, ) = (msg.sender).call{value:address(this).balance}("");
    require(success, "2");
  }

  /* 
   * Internal function to generate stats. 
   * Owner must have enabled global minting.
   */
  function _processMintedToken(uint256 id, uint256 _variant) internal {

    uint256 randomClass = _getClass(id, _variant); // Base Classes = 1: Warrior, 2: Assassin, 3: Mage, 4: Ranger
    if (randomClass > 4 && (currentMintsForClass[randomClass] > maximumMintsForClass[randomClass])) {
      randomClass = (vrfAbi.GetVRF(id) % 4) + 1; 
    }

    uint256[6] memory placeholderStats = [uint256(0), 0, 0, 0, 0, 0];

    for (uint256 b = 0; b < 6; b++) {
      placeholderStats[b] = (vrfAbi.GetVRF(id * randomClass * b) % (maxStats[randomClass][b] - minStats[randomClass][b] + 1)) + minStats[randomClass][b];
    }
    
    upgradeableAbi.initHero(id, placeholderStats[0], placeholderStats[1], placeholderStats[2],
    placeholderStats[3],placeholderStats[4],placeholderStats[5],
    placeholderStats[0] + placeholderStats[1] + placeholderStats[2] + placeholderStats[3] + placeholderStats[4] + placeholderStats[5],
    randomClass);

    ++currentSupply;
    ++currentMintsForClass[randomClass];
  }

  /* 
   * Random function to allow weighted randomness for classes.
   * Will kick in when legendary/rare characters are introduced further into the game.
   */
  function _getClass(uint256 _seed, uint256 _variant) internal view returns (uint256) {
    uint256 classRandom = vrfAbi.GetVRF(_seed) % 10000;
    for (uint256 i = 0; i < classPossibilities[_variant].length; i++) {
      if (classRandom < classPossibilities[_variant][i])
        return i;
      }

      return classPossibilities[_variant].length - 1;
  }
}

pragma solidity ^0.8.0;
//SPDX-License-Identifier: MIT

// Interface for the randomizer.
contract IVRFHelper {
    function GetVRF(uint256) external view returns (uint256) {}
}

pragma solidity ^0.8.0;
//SPDX-License-Identifier: UNLICENSED

// Interface for Elleria's Heroes.
contract IHeroBridge {
  function GetOwnerOfTokenId(uint256 _tokenId) external view returns (address) {}
}

pragma solidity ^0.8.0;
//SPDX-License-Identifier: MIT

// Interface for upgradeable logic.
contract IEllerianHeroUpgradeable {

    function GetHeroDetails(uint256 _tokenId) external view returns (uint256[9] memory) {}
    function GetHeroClass(uint256 _tokenId) external view returns (uint256) {}
    function GetHeroLevel(uint256 _tokenId) external view returns (uint256) {}
    function GetHeroName(uint256 _tokenId) external view returns (string memory) {}
    function GetHeroExperience(uint256 _tokenId) external view returns (uint256[2] memory) {}
    function GetAttributeRarity(uint256 _tokenId) external view returns (uint256) {}

    function GetUpgradeCost(uint256 _level) external view returns (uint256[2] memory) {}
    function GetUpgradeCostFromTokenId(uint256 _tokenId) public view returns (uint256[2] memory) {}

    function ResetHeroExperience(uint256 _tokenId, uint256 _exp) external {}
    function UpdateHeroExperience(uint256 _tokenId, uint256 _exp) external {}

    function SetHeroLevel (uint256 _tokenId, uint256 _level) external {}
    function SetNameChangeFee(uint256 _feeInWEI) external {}
    function SetHeroName(uint256 _tokenId, string memory _name) public {}

    function SynchronizeHero (bytes memory _signature, uint256[] memory _data) external {}
    function IsStaked(uint256 _tokenId) external view returns (bool) {}
    function Stake(uint256 _tokenId) external {}
    function Unstake(uint256 _tokenId) external {}

    function initHero(uint256 _tokenId, uint256 _str, uint256 _agi, uint256 _vit, uint256 _end, uint256 _intel, uint256 _will, uint256 _total, uint256 _class) external {}

    function AttemptHeroUpgrade(address sender, uint256 tokenId, uint256 goldAmountInEther, uint256 tokenAmountInEther) public {}
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256[6]","name":"_new_class_min","type":"uint256[6]"},{"internalType":"uint256[6]","name":"_new_class_max","type":"uint256[6]"},{"internalType":"uint256","name":"_main_stat","type":"uint256"},{"internalType":"uint256","name":"_sub_stat","type":"uint256"},{"internalType":"uint256[][]","name":"_classPossibilities","type":"uint256[][]"},{"internalType":"uint256[]","name":"_maximumClassMints","type":"uint256[]"}],"name":"AddNewClass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"GetRemainingMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GetRemainingPresalesMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_upgradeableAddr","type":"address"},{"internalType":"address","name":"_tokenMinterAddr","type":"address"},{"internalType":"address","name":"_vrfAddr","type":"address"},{"internalType":"address","name":"_verifierAddr","type":"address"},{"internalType":"address","name":"_uriAddr","type":"address"}],"name":"SetAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_allowed","type":"bool"}],"name":"SetApprovedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_allow","type":"bool"}],"name":"SetGlobalMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_presalesOpened","type":"bool"},{"internalType":"uint256","name":"_newMintCostInWEI","type":"uint256"},{"internalType":"uint256","name":"_maxMints","type":"uint256"},{"internalType":"bool","name":"_requireWhitelist","type":"bool"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"SetMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[][]","name":"_newMinStats","type":"uint256[][]"}],"name":"SetRandomStatMinimums","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"TransferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[][]","name":"_classPossibilities","type":"uint256[][]"},{"internalType":"uint256[]","name":"_maximumClassMint","type":"uint256[]"}],"name":"UpdateClassPossibilities","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_variant","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_isBurnt","type":"bool"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_variant","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintPresales","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_variant","type":"uint256"}],"name":"mintUsingToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060a001604052806040518060c00160405280600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff1681525081526020016040518060c00160405280601460ff168152602001600160ff168152602001600a60ff168152602001600160ff168152602001600160ff168152602001600160ff1681525081526020016040518060c00160405280600a60ff168152602001601460ff168152602001600160ff168152602001600160ff168152602001600160ff168152602001600160ff1681525081526020016040518060c00160405280600160ff168152602001600160ff168152602001600160ff168152602001600160ff168152602001601460ff168152602001600a60ff1681525081526020016040518060c00160405280601460ff168152602001600a60ff168152602001600160ff168152602001600160ff168152602001600160ff168152602001600160ff16815250815250600e90600562000191929190620005e8565b506040518060a001604052806040518060c00160405280600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff1681525081526020016040518060c00160405280606460ff168152602001604b60ff168152602001605a60ff168152602001605060ff168152602001603260ff168152602001603260ff1681525081526020016040518060c00160405280605a60ff168152602001606460ff168152602001604b60ff168152602001603260ff168152602001603260ff168152602001605060ff1681525081526020016040518060c00160405280603260ff168152602001605060ff168152602001603260ff168152602001604b60ff168152602001606460ff168152602001605a60ff1681525081526020016040518060c00160405280606460ff168152602001605a60ff168152602001604b60ff168152602001603260ff168152602001603260ff168152602001605060ff16815250815250600f9060056200031f929190620005e8565b506040518060a00160405280600060ff168152602001600060ff168152602001600160ff168152602001600460ff168152602001600060ff1681525060109060056200036d9291906200064a565b506040518060a00160405280600060ff168152602001600260ff168152602001600060ff168152602001600560ff168152602001600160ff168152506011906005620003bb9291906200064a565b5060405180606001604052806040518060a00160405280600061ffff1681526020016109c461ffff16815260200161138861ffff168152602001611d4c61ffff16815260200161271061ffff1681525081526020016040518060a00160405280600061ffff168152602001611b5861ffff168152602001611f4061ffff16815260200161232861ffff16815260200161271061ffff1681525081526020016040518060a00160405280600061ffff1681526020016103e861ffff1681526020016107d061ffff168152602001610bb861ffff16815260200161271061ffff168152508152506012906003620004b2929190620006a1565b506040518060a00160405280600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152506013906005620005009291906200064a565b503480156200050e57600080fd5b506040518060400160405280600e81526020017f456c6c657269616e4865726f65730000000000000000000000000000000000008152506040518060400160405280600e81526020017f456c6c657269616e4865726f657300000000000000000000000000000000000081525081600090816200058c919062000a96565b5080600190816200059e919062000a96565b50505033601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000b7d565b82805482825590600052602060002090810192821562000637579160200282015b8281111562000636578251829060066200062592919062000703565b509160200191906001019062000609565b5b5090506200064691906200075a565b5090565b8280548282559060005260206000209081019282156200068e579160200282015b828111156200068d578251829060ff169055916020019190600101906200066b565b5b5090506200069d919062000782565b5090565b828054828255906000526020600020908101928215620006f0579160200282015b82811115620006ef57825182906005620006de929190620007a1565b5091602001919060010190620006c2565b5b509050620006ff91906200075a565b5090565b82805482825590600052602060002090810192821562000747579160200282015b8281111562000746578251829060ff1690559160200191906001019062000724565b5b50905062000756919062000782565b5090565b5b808211156200077e5760008181620007749190620007f9565b506001016200075b565b5090565b5b808211156200079d57600081600090555060010162000783565b5090565b828054828255906000526020600020908101928215620007e6579160200282015b82811115620007e5578251829061ffff16905591602001919060010190620007c2565b5b509050620007f5919062000782565b5090565b508054600082559060005260206000209081019062000819919062000782565b50565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200089e57607f821691505b602082108103620008b457620008b362000856565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200091e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008df565b6200092a8683620008df565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000977620009716200096b8462000942565b6200094c565b62000942565b9050919050565b6000819050919050565b620009938362000956565b620009ab620009a2826200097e565b848454620008ec565b825550505050565b600090565b620009c2620009b3565b620009cf81848462000988565b505050565b5b81811015620009f757620009eb600082620009b8565b600181019050620009d5565b5050565b601f82111562000a465762000a1081620008ba565b62000a1b84620008cf565b8101602085101562000a2b578190505b62000a4362000a3a85620008cf565b830182620009d4565b50505b505050565b600082821c905092915050565b600062000a6b6000198460080262000a4b565b1980831691505092915050565b600062000a86838362000a58565b9150826002028217905092915050565b62000aa1826200081c565b67ffffffffffffffff81111562000abd5762000abc62000827565b5b62000ac9825462000885565b62000ad6828285620009fb565b600060209050601f83116001811462000b0e576000841562000af9578287015190505b62000b05858262000a78565b86555062000b75565b601f19841662000b1e86620008ba565b60005b8281101562000b485784890151825560018201915060208501945060208101905062000b21565b8683101562000b68578489015162000b64601f89168262000a58565b8355505b6001600288020188555050505b505050505050565b6151b88062000b8d6000396000f3fe6080604052600436106101b75760003560e01c806395d89b41116100ec578063cfaaa2661161008a578063e285e8a311610064578063e285e8a3146105e1578063e74853f31461060a578063e82f51f714610633578063e985e9c51461065c576101b7565b8063cfaaa26614610566578063d99306881461058f578063e1bc2967146105b8576101b7565b8063a22cb465116100c6578063a22cb465146104ac578063b88d4fde146104d5578063c0a7f647146104fe578063c87b56dd14610529576101b7565b806395d89b411461042f5780639fac68cb1461045a578063a10c70a214610483576101b7565b806335940852116101595780635904e236116101335780635904e236146103705780636352211e1461038c57806370a08231146103c95780638f5e0c4f14610406576101b7565b806335940852146103075780633ccfd60b1461033057806342842e0e14610347576101b7565b8063095ea7b311610195578063095ea7b3146102615780630d56e6881461028a57806312ee4668146102b357806323b872dd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906132e8565b610699565b6040516101f09190613330565b60405180910390f35b34801561020557600080fd5b5061020e61077b565b60405161021b91906133db565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190613433565b61080d565b60405161025891906134a1565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906134e8565b610853565b005b34801561029657600080fd5b506102b160048036038101906102ac9190613751565b61096a565b005b3480156102bf57600080fd5b506102c861099e565b6040516102d591906137a9565b60405180910390f35b3480156102ea57600080fd5b50610305600480360381019061030091906137c4565b610a44565b005b34801561031357600080fd5b5061032e600480360381019061032991906138c8565b610aa4565b005b34801561033c57600080fd5b50610345610b99565b005b34801561035357600080fd5b5061036e600480360381019061036991906137c4565b610c50565b005b61038a60048036038101906103859190613a8b565b610c70565b005b34801561039857600080fd5b506103b360048036038101906103ae9190613433565b6110da565b6040516103c091906134a1565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb9190613b0e565b61118b565b6040516103fd91906137a9565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190613b3b565b611242565b005b34801561043b57600080fd5b506104446113b8565b60405161045191906133db565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c9190613bba565b61144a565b005b34801561048f57600080fd5b506104aa60048036038101906104a59190613bfa565b6114ae565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190613c75565b611602565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190613d6a565b611618565b005b34801561050a57600080fd5b506105136118c1565b60405161052091906137a9565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b9190613433565b6118d8565b60405161055d91906133db565b60405180910390f35b34801561057257600080fd5b5061058d60048036038101906105889190613b0e565b611982565b005b34801561059b57600080fd5b506105b660048036038101906105b19190613ded565b611a07565b005b3480156105c457600080fd5b506105df60048036038101906105da9190613b3b565b611a7a565b005b3480156105ed57600080fd5b5061060860048036038101906106039190613c75565b611b19565b005b34801561061657600080fd5b50610631600480360381019061062c9190613e68565b611b7c565b005b34801561063f57600080fd5b5061065a60048036038101906106559190613ee0565b611c7a565b005b34801561066857600080fd5b50610683600480360381019061067e9190613f0d565b611c9f565b6040516106909190613330565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610774575061077382611d33565b5b9050919050565b60606000805461078a90613f7c565b80601f01602080910402602001604051908101604052809291908181526020018280546107b690613f7c565b80156108035780601f106107d857610100808354040283529160200191610803565b820191906000526020600020905b8154815290600101906020018083116107e657829003601f168201915b5050505050905090565b600061081882611d9d565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085e826110da565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c59061401f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108ed611de8565b73ffffffffffffffffffffffffffffffffffffffff16148061091c575061091b81610916611de8565b611c9f565b5b61095b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610952906140b1565b60405180910390fd5b6109658383611df0565b505050565b610972611ea9565b8051600e805490501461098457600080fd5b80600e908051906020019061099a929190613120565b5050565b6000600d54600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106109f15760009050610a41565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54610a3e9190614100565b90505b90565b610a55610a4f611de8565b82611f3b565b610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b906141a6565b60405180910390fd5b610a9f838383611fd0565b505050565b610aac611ea9565b600e8690806001815401808255809150506001900390600052602060002001600090919091909150906006610ae2929190613180565b50600f8590806001815401808255809150506001900390600052602060002001600090919091909150906006610b19929190613180565b5060108490806001815401808255809150506001900390600052602060002001600090919091909150556011839080600181540180825580915050600190039060005260206000200160009091909190915055610b768282611b7c565b6000600760006101000a81548160ff021916908315150217905550505050505050565b610ba1611ea9565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610bc7906141f7565b60006040518083038185875af1925050503d8060008114610c04576040519150601f19603f3d011682016040523d82523d6000602084013e610c09565b606091505b5050905080610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4490614258565b60405180910390fd5b50565b610c6b83838360405180602001604052806000815250611618565b505050565b6001600c54610c7f9190614278565b83600654610c8d9190614278565b10610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc4906142f8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290614364565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da090614364565b60405180910390fd5b600760009054906101000a900460ff16610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def906143d0565b60405180910390fd5b600a60019054906101000a900460ff16610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e9061443c565b60405180910390fd5b6001600d54610e569190614278565b83600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ea19190614278565b10610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed8906144a8565b60405180910390fd5b82600b54610eef91906144c8565b3414610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790614556565b60405180910390fd5b600a60009054906101000a900460ff161561104957601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636df4d24185604051602001610f9491906134a1565b60405160208183030381529060405280519060200120836040518363ffffffff1660e01b8152600401610fc8929190614643565b602060405180830381865afa158015610fe5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110099190614688565b611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90614701565b60405180910390fd5b5b82600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110989190614278565b9250508190555060005b838110156110d357600060065490506110bb3382612236565b6110c58185612254565b5080806001019150506110a2565b5050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611182576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111799061476d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f2906147ff565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6001600c546112519190614278565b8260065461125f9190614278565b1061129f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611296906142f8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461132f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113269061486b565b60405180910390fd5b600760009054906101000a900460ff1661137e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611375906143d0565b60405180910390fd5b60005b828110156113b2576000600654905061139a8582612236565b6113a48184612254565b508080600101915050611381565b50505050565b6060600180546113c790613f7c565b80601f01602080910402602001604051908101604052809291908181526020018280546113f390613f7c565b80156114405780601f1061141557610100808354040283529160200191611440565b820191906000526020600020905b81548152906001019060200180831161142357829003601f168201915b5050505050905090565b61145b611455611de8565b83611f3b565b61149a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611491906148d7565b60405180910390fd5b80156114aa576114a98261278f565b5b5050565b6114b6611ea9565b83601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b61161461160d611de8565b83836128ac565b5050565b611629611623611de8565b83611f3b565b611668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165f90614943565b60405180910390fd5b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166397ca1042836040518263ffffffff1660e01b81526004016116c391906137a9565b602060405180830381865afa1580156116e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117049190614688565b15611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b906149af565b60405180910390fd5b601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806117e55750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6118af57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146118ae57601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636897fbe88360006040518363ffffffff1660e01b815260040161187b929190614a14565b600060405180830381600087803b15801561189557600080fd5b505af11580156118a9573d6000803e3d6000fd5b505050505b5b6118bb84848484612a18565b50505050565b6000600654600c546118d39190614100565b905090565b6060601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e5ec00fa836040518263ffffffff1660e01b815260040161193591906137a9565b600060405180830381865afa158015611952573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061197b9190614ade565b9050919050565b61198a611ea9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119c357600080fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611a0f611ea9565b84600a60016101000a81548160ff02191690831515021790555081600a60006101000a81548160ff02191690831515021790555083600b8190555080600c8190555082600d819055506000600760006101000a81548160ff0219169083151502179055505050505050565b611a82611ea9565b6001600c54611a919190614278565b82600654611a9f9190614278565b10611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad6906142f8565b60405180910390fd5b60005b82811015611b135760006006549050611afb8582612236565b611b058184612254565b508080600101915050611ae2565b50505050565b611b21611ea9565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611b84611ea9565b60005b8251811015611bff57600f80549050838281518110611ba957611ba8614b27565b5b60200260200101515114611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990614ba2565b60405180910390fd5b8080600101915050611b87565b50600f80549050815114611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f90614ba2565b60405180910390fd5b8160129080519060200190611c5e929190613120565b508060139080519060200190611c759291906131cd565b505050565b611c82611ea9565b80600760006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611da681612a74565b611de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddc9061476d565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e63836110da565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3090614c0e565b60405180910390fd5b565b600080611f47836110da565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f895750611f888185611c9f565b5b80611fc757508373ffffffffffffffffffffffffffffffffffffffff16611faf8461080d565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ff0826110da565b73ffffffffffffffffffffffffffffffffffffffff1614612046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d90614ca0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ac90614d32565b60405180910390fd5b6120c0838383612ae0565b6120cb600082611df0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461211b9190614100565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121729190614278565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612231838383612bcc565b505050565b612250828260405180602001604052806000815250612bd1565b5050565b60006122608383612c2c565b90506004811180156122a257506013818154811061228157612280614b27565b5b90600052602060002001546014600083815260200190815260200160002054115b1561235e5760016004601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e59606f4866040518263ffffffff1660e01b815260040161230691906137a9565b602060405180830381865afa158015612323573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123479190614d67565b6123519190614dc3565b61235b9190614278565b90505b60006040518060c0016040528060008152602001600081526020016000815260200160008152602001600081526020016000815250905060005b600681101561255757600e83815481106123b5576123b4614b27565b5b9060005260206000200181815481106123d1576123d0614b27565b5b90600052602060002001546001600e85815481106123f2576123f1614b27565b5b90600052602060002001838154811061240e5761240d614b27565b5b9060005260206000200154600f868154811061242d5761242c614b27565b5b90600052602060002001848154811061244957612448614b27565b5b906000526020600020015461245e9190614100565b6124689190614278565b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e59606f484878a6124b391906144c8565b6124bd91906144c8565b6040518263ffffffff1660e01b81526004016124d991906137a9565b602060405180830381865afa1580156124f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061251a9190614d67565b6125249190614dc3565b61252e9190614278565b82826006811061254157612540614b27565b5b6020020181815250508080600101915050612398565b50601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166332eb9f8685836000600681106125ab576125aa614b27565b5b6020020151846001600681106125c4576125c3614b27565b5b6020020151856002600681106125dd576125dc614b27565b5b6020020151866003600681106125f6576125f5614b27565b5b60200201518760046006811061260f5761260e614b27565b5b60200201518860056006811061262857612627614b27565b5b60200201518960056006811061264157612640614b27565b5b60200201518a60046006811061265a57612659614b27565b5b60200201518b60036006811061267357612672614b27565b5b60200201518c60026006811061268c5761268b614b27565b5b60200201518d6001600681106126a5576126a4614b27565b5b60200201518e6000600681106126be576126bd614b27565b5b60200201516126cd9190614278565b6126d79190614278565b6126e19190614278565b6126eb9190614278565b6126f59190614278565b8b6040518a63ffffffff1660e01b815260040161271a99989796959493929190614df4565b600060405180830381600087803b15801561273457600080fd5b505af1158015612748573d6000803e3d6000fd5b5050505060066000815461275b90614e81565b91905081905550601460008381526020019081526020016000206000815461278290614e81565b9190508190555050505050565b600061279a826110da565b90506127a881600084612ae0565b6127b3600083611df0565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128039190614100565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128a881600084612bcc565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361291a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291190614f15565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612a0b9190613330565b60405180910390a3505050565b612a23848484611fd0565b612a2f84848484612d98565b612a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6590614fa7565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b612aeb838383612f1f565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166397ca1042826040518263ffffffff1660e01b8152600401612b4691906137a9565b602060405180830381865afa158015612b63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b879190614688565b15612bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbe906149af565b60405180910390fd5b505050565b505050565b612bdb8383612f24565b612be86000848484612d98565b612c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1e90614fa7565b60405180910390fd5b505050565b600080612710601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e59606f4866040518263ffffffff1660e01b8152600401612c8d91906137a9565b602060405180830381865afa158015612caa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cce9190614d67565b612cd89190614dc3565b905060005b60128481548110612cf157612cf0614b27565b5b9060005260206000200180549050811015612d5f5760128481548110612d1a57612d19614b27565b5b906000526020600020018181548110612d3657612d35614b27565b5b9060005260206000200154821015612d52578092505050612d92565b8080600101915050612cdd565b50600160128481548110612d7657612d75614b27565b5b9060005260206000200180549050612d8e9190614100565b9150505b92915050565b6000612db98473ffffffffffffffffffffffffffffffffffffffff166130fd565b15612f12578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612de2611de8565b8786866040518563ffffffff1660e01b8152600401612e04949392919061501c565b6020604051808303816000875af1925050508015612e4057506040513d601f19601f82011682018060405250810190612e3d919061507d565b60015b612ec2573d8060008114612e70576040519150601f19603f3d011682016040523d82523d6000602084013e612e75565b606091505b506000815103612eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb190614fa7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f17565b600190505b949350505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8a906150f6565b60405180910390fd5b612f9c81612a74565b15612fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd390615162565b60405180910390fd5b612fe860008383612ae0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130389190614278565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130f960008383612bcc565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805482825590600052602060002090810192821561316f579160200282015b8281111561316e57825182908051906020019061315e9291906131cd565b5091602001919060010190613140565b5b50905061317c919061321a565b5090565b8280548282559060005260206000209081019282156131bc579160200282015b828111156131bb5782518255916020019190600101906131a0565b5b5090506131c9919061323e565b5090565b828054828255906000526020600020908101928215613209579160200282015b828111156132085782518255916020019190600101906131ed565b5b509050613216919061323e565b5090565b5b8082111561323a5760008181613231919061325b565b5060010161321b565b5090565b5b8082111561325757600081600090555060010161323f565b5090565b5080546000825590600052602060002090810190613279919061323e565b50565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132c581613290565b81146132d057600080fd5b50565b6000813590506132e2816132bc565b92915050565b6000602082840312156132fe576132fd613286565b5b600061330c848285016132d3565b91505092915050565b60008115159050919050565b61332a81613315565b82525050565b60006020820190506133456000830184613321565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561338557808201518184015260208101905061336a565b60008484015250505050565b6000601f19601f8301169050919050565b60006133ad8261334b565b6133b78185613356565b93506133c7818560208601613367565b6133d081613391565b840191505092915050565b600060208201905081810360008301526133f581846133a2565b905092915050565b6000819050919050565b613410816133fd565b811461341b57600080fd5b50565b60008135905061342d81613407565b92915050565b60006020828403121561344957613448613286565b5b60006134578482850161341e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061348b82613460565b9050919050565b61349b81613480565b82525050565b60006020820190506134b66000830184613492565b92915050565b6134c581613480565b81146134d057600080fd5b50565b6000813590506134e2816134bc565b92915050565b600080604083850312156134ff576134fe613286565b5b600061350d858286016134d3565b925050602061351e8582860161341e565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61356582613391565b810181811067ffffffffffffffff821117156135845761358361352d565b5b80604052505050565b600061359761327c565b90506135a3828261355c565b919050565b600067ffffffffffffffff8211156135c3576135c261352d565b5b602082029050602081019050919050565b600080fd5b600067ffffffffffffffff8211156135f4576135f361352d565b5b602082029050602081019050919050565b6000613618613613846135d9565b61358d565b9050808382526020820190506020840283018581111561363b5761363a6135d4565b5b835b818110156136645780613650888261341e565b84526020840193505060208101905061363d565b5050509392505050565b600082601f83011261368357613682613528565b5b8135613693848260208601613605565b91505092915050565b60006136af6136aa846135a8565b61358d565b905080838252602082019050602084028301858111156136d2576136d16135d4565b5b835b8181101561371957803567ffffffffffffffff8111156136f7576136f6613528565b5b808601613704898261366e565b855260208501945050506020810190506136d4565b5050509392505050565b600082601f83011261373857613737613528565b5b813561374884826020860161369c565b91505092915050565b60006020828403121561376757613766613286565b5b600082013567ffffffffffffffff8111156137855761378461328b565b5b61379184828501613723565b91505092915050565b6137a3816133fd565b82525050565b60006020820190506137be600083018461379a565b92915050565b6000806000606084860312156137dd576137dc613286565b5b60006137eb868287016134d3565b93505060206137fc868287016134d3565b925050604061380d8682870161341e565b9150509250925092565b600067ffffffffffffffff8211156138325761383161352d565b5b602082029050919050565b600061385061384b84613817565b61358d565b9050806020840283018581111561386a576138696135d4565b5b835b81811015613893578061387f888261341e565b84526020840193505060208101905061386c565b5050509392505050565b600082601f8301126138b2576138b1613528565b5b60066138bf84828561383d565b91505092915050565b60008060008060008061020087890312156138e6576138e5613286565b5b60006138f489828a0161389d565b96505060c061390589828a0161389d565b95505061018061391789828a0161341e565b9450506101a061392989828a0161341e565b9350506101c087013567ffffffffffffffff81111561394b5761394a61328b565b5b61395789828a01613723565b9250506101e087013567ffffffffffffffff8111156139795761397861328b565b5b61398589828a0161366e565b9150509295509295509295565b600067ffffffffffffffff8211156139ad576139ac61352d565b5b602082029050602081019050919050565b6000819050919050565b6139d1816139be565b81146139dc57600080fd5b50565b6000813590506139ee816139c8565b92915050565b6000613a07613a0284613992565b61358d565b90508083825260208201905060208402830185811115613a2a57613a296135d4565b5b835b81811015613a535780613a3f88826139df565b845260208401935050602081019050613a2c565b5050509392505050565b600082601f830112613a7257613a71613528565b5b8135613a828482602086016139f4565b91505092915050565b60008060008060808587031215613aa557613aa4613286565b5b6000613ab3878288016134d3565b9450506020613ac48782880161341e565b9350506040613ad58782880161341e565b925050606085013567ffffffffffffffff811115613af657613af561328b565b5b613b0287828801613a5d565b91505092959194509250565b600060208284031215613b2457613b23613286565b5b6000613b32848285016134d3565b91505092915050565b600080600060608486031215613b5457613b53613286565b5b6000613b62868287016134d3565b9350506020613b738682870161341e565b9250506040613b848682870161341e565b9150509250925092565b613b9781613315565b8114613ba257600080fd5b50565b600081359050613bb481613b8e565b92915050565b60008060408385031215613bd157613bd0613286565b5b6000613bdf8582860161341e565b9250506020613bf085828601613ba5565b9150509250929050565b600080600080600060a08688031215613c1657613c15613286565b5b6000613c24888289016134d3565b9550506020613c35888289016134d3565b9450506040613c46888289016134d3565b9350506060613c57888289016134d3565b9250506080613c68888289016134d3565b9150509295509295909350565b60008060408385031215613c8c57613c8b613286565b5b6000613c9a858286016134d3565b9250506020613cab85828601613ba5565b9150509250929050565b600080fd5b600067ffffffffffffffff821115613cd557613cd461352d565b5b613cde82613391565b9050602081019050919050565b82818337600083830152505050565b6000613d0d613d0884613cba565b61358d565b905082815260208101848484011115613d2957613d28613cb5565b5b613d34848285613ceb565b509392505050565b600082601f830112613d5157613d50613528565b5b8135613d61848260208601613cfa565b91505092915050565b60008060008060808587031215613d8457613d83613286565b5b6000613d92878288016134d3565b9450506020613da3878288016134d3565b9350506040613db48782880161341e565b925050606085013567ffffffffffffffff811115613dd557613dd461328b565b5b613de187828801613d3c565b91505092959194509250565b600080600080600060a08688031215613e0957613e08613286565b5b6000613e1788828901613ba5565b9550506020613e288882890161341e565b9450506040613e398882890161341e565b9350506060613e4a88828901613ba5565b9250506080613e5b8882890161341e565b9150509295509295909350565b60008060408385031215613e7f57613e7e613286565b5b600083013567ffffffffffffffff811115613e9d57613e9c61328b565b5b613ea985828601613723565b925050602083013567ffffffffffffffff811115613eca57613ec961328b565b5b613ed68582860161366e565b9150509250929050565b600060208284031215613ef657613ef5613286565b5b6000613f0484828501613ba5565b91505092915050565b60008060408385031215613f2457613f23613286565b5b6000613f32858286016134d3565b9250506020613f43858286016134d3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f9457607f821691505b602082108103613fa757613fa6613f4d565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614009602183613356565b915061401482613fad565b604082019050919050565b6000602082019050818103600083015261403881613ffc565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b600061409b603e83613356565b91506140a68261403f565b604082019050919050565b600060208201905081810360008301526140ca8161408e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061410b826133fd565b9150614116836133fd565b925082820390508181111561412e5761412d6140d1565b5b92915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000614190602e83613356565b915061419b82614134565b604082019050919050565b600060208201905081810360008301526141bf81614183565b9050919050565b600081905092915050565b50565b60006141e16000836141c6565b91506141ec826141d1565b600082019050919050565b6000614202826141d4565b9150819050919050565b7f3200000000000000000000000000000000000000000000000000000000000000600082015250565b6000614242600183613356565b915061424d8261420c565b602082019050919050565b6000602082019050818103600083015261427181614235565b9050919050565b6000614283826133fd565b915061428e836133fd565b92508282019050808211156142a6576142a56140d1565b5b92915050565b7f3800000000000000000000000000000000000000000000000000000000000000600082015250565b60006142e2600183613356565b91506142ed826142ac565b602082019050919050565b60006020820190508181036000830152614311816142d5565b9050919050565b7f3900000000000000000000000000000000000000000000000000000000000000600082015250565b600061434e600183613356565b915061435982614318565b602082019050919050565b6000602082019050818103600083015261437d81614341565b9050919050565b7f3230000000000000000000000000000000000000000000000000000000000000600082015250565b60006143ba600283613356565b91506143c582614384565b602082019050919050565b600060208201905081810360008301526143e9816143ad565b9050919050565b7f3131000000000000000000000000000000000000000000000000000000000000600082015250565b6000614426600283613356565b9150614431826143f0565b602082019050919050565b6000602082019050818103600083015261445581614419565b9050919050565b7f3339000000000000000000000000000000000000000000000000000000000000600082015250565b6000614492600283613356565b915061449d8261445c565b602082019050919050565b600060208201905081810360008301526144c181614485565b9050919050565b60006144d3826133fd565b91506144de836133fd565b92508282026144ec816133fd565b91508282048414831517614503576145026140d1565b5b5092915050565b7f3139000000000000000000000000000000000000000000000000000000000000600082015250565b6000614540600283613356565b915061454b8261450a565b602082019050919050565b6000602082019050818103600083015261456f81614533565b9050919050565b61457f816139be565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6145ba816139be565b82525050565b60006145cc83836145b1565b60208301905092915050565b6000602082019050919050565b60006145f082614585565b6145fa8185614590565b9350614605836145a1565b8060005b8381101561463657815161461d88826145c0565b9750614628836145d8565b925050600181019050614609565b5085935050505092915050565b60006040820190506146586000830185614576565b818103602083015261466a81846145e5565b90509392505050565b60008151905061468281613b8e565b92915050565b60006020828403121561469e5761469d613286565b5b60006146ac84828501614673565b91505092915050565b7f3133000000000000000000000000000000000000000000000000000000000000600082015250565b60006146eb600283613356565b91506146f6826146b5565b602082019050919050565b6000602082019050818103600083015261471a816146de565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614757601883613356565b915061476282614721565b602082019050919050565b600060208201905081810360008301526147868161474a565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006147e9602983613356565b91506147f48261478d565b604082019050919050565b60006020820190508181036000830152614818816147dc565b9050919050565b7f3135000000000000000000000000000000000000000000000000000000000000600082015250565b6000614855600283613356565b91506148608261481f565b602082019050919050565b6000602082019050818103600083015261488481614848565b9050919050565b7f3232000000000000000000000000000000000000000000000000000000000000600082015250565b60006148c1600283613356565b91506148cc8261488b565b602082019050919050565b600060208201905081810360008301526148f0816148b4565b9050919050565b7f5346460000000000000000000000000000000000000000000000000000000000600082015250565b600061492d600383613356565b9150614938826148f7565b602082019050919050565b6000602082019050818103600083015261495c81614920565b9050919050565b7f3431000000000000000000000000000000000000000000000000000000000000600082015250565b6000614999600283613356565b91506149a482614963565b602082019050919050565b600060208201905081810360008301526149c88161498c565b9050919050565b6000819050919050565b6000819050919050565b60006149fe6149f96149f4846149cf565b6149d9565b6133fd565b9050919050565b614a0e816149e3565b82525050565b6000604082019050614a29600083018561379a565b614a366020830184614a05565b9392505050565b600067ffffffffffffffff821115614a5857614a5761352d565b5b614a6182613391565b9050602081019050919050565b6000614a81614a7c84614a3d565b61358d565b905082815260208101848484011115614a9d57614a9c613cb5565b5b614aa8848285613367565b509392505050565b600082601f830112614ac557614ac4613528565b5b8151614ad5848260208601614a6e565b91505092915050565b600060208284031215614af457614af3613286565b5b600082015167ffffffffffffffff811115614b1257614b1161328b565b5b614b1e84828501614ab0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f3132000000000000000000000000000000000000000000000000000000000000600082015250565b6000614b8c600283613356565b9150614b9782614b56565b602082019050919050565b60006020820190508181036000830152614bbb81614b7f565b9050919050565b7f4f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614bf8600183613356565b9150614c0382614bc2565b602082019050919050565b60006020820190508181036000830152614c2781614beb565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614c8a602583613356565b9150614c9582614c2e565b604082019050919050565b60006020820190508181036000830152614cb981614c7d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d1c602483613356565b9150614d2782614cc0565b604082019050919050565b60006020820190508181036000830152614d4b81614d0f565b9050919050565b600081519050614d6181613407565b92915050565b600060208284031215614d7d57614d7c613286565b5b6000614d8b84828501614d52565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614dce826133fd565b9150614dd9836133fd565b925082614de957614de8614d94565b5b828206905092915050565b600061012082019050614e0a600083018c61379a565b614e17602083018b61379a565b614e24604083018a61379a565b614e31606083018961379a565b614e3e608083018861379a565b614e4b60a083018761379a565b614e5860c083018661379a565b614e6560e083018561379a565b614e7361010083018461379a565b9a9950505050505050505050565b6000614e8c826133fd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614ebe57614ebd6140d1565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614eff601983613356565b9150614f0a82614ec9565b602082019050919050565b60006020820190508181036000830152614f2e81614ef2565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614f91603283613356565b9150614f9c82614f35565b604082019050919050565b60006020820190508181036000830152614fc081614f84565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614fee82614fc7565b614ff88185614fd2565b9350615008818560208601613367565b61501181613391565b840191505092915050565b60006080820190506150316000830187613492565b61503e6020830186613492565b61504b604083018561379a565b818103606083015261505d8184614fe3565b905095945050505050565b600081519050615077816132bc565b92915050565b60006020828403121561509357615092613286565b5b60006150a184828501615068565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006150e0602083613356565b91506150eb826150aa565b602082019050919050565b6000602082019050818103600083015261510f816150d3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061514c601c83613356565b915061515782615116565b602082019050919050565b6000602082019050818103600083015261517b8161513f565b905091905056fea2646970667358221220ebc78d2962a07a8df807a81583c809b1394628c6f6bc21d96a2e940a633155a564736f6c63430008170033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806395d89b41116100ec578063cfaaa2661161008a578063e285e8a311610064578063e285e8a3146105e1578063e74853f31461060a578063e82f51f714610633578063e985e9c51461065c576101b7565b8063cfaaa26614610566578063d99306881461058f578063e1bc2967146105b8576101b7565b8063a22cb465116100c6578063a22cb465146104ac578063b88d4fde146104d5578063c0a7f647146104fe578063c87b56dd14610529576101b7565b806395d89b411461042f5780639fac68cb1461045a578063a10c70a214610483576101b7565b806335940852116101595780635904e236116101335780635904e236146103705780636352211e1461038c57806370a08231146103c95780638f5e0c4f14610406576101b7565b806335940852146103075780633ccfd60b1461033057806342842e0e14610347576101b7565b8063095ea7b311610195578063095ea7b3146102615780630d56e6881461028a57806312ee4668146102b357806323b872dd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906132e8565b610699565b6040516101f09190613330565b60405180910390f35b34801561020557600080fd5b5061020e61077b565b60405161021b91906133db565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190613433565b61080d565b60405161025891906134a1565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906134e8565b610853565b005b34801561029657600080fd5b506102b160048036038101906102ac9190613751565b61096a565b005b3480156102bf57600080fd5b506102c861099e565b6040516102d591906137a9565b60405180910390f35b3480156102ea57600080fd5b50610305600480360381019061030091906137c4565b610a44565b005b34801561031357600080fd5b5061032e600480360381019061032991906138c8565b610aa4565b005b34801561033c57600080fd5b50610345610b99565b005b34801561035357600080fd5b5061036e600480360381019061036991906137c4565b610c50565b005b61038a60048036038101906103859190613a8b565b610c70565b005b34801561039857600080fd5b506103b360048036038101906103ae9190613433565b6110da565b6040516103c091906134a1565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb9190613b0e565b61118b565b6040516103fd91906137a9565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190613b3b565b611242565b005b34801561043b57600080fd5b506104446113b8565b60405161045191906133db565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c9190613bba565b61144a565b005b34801561048f57600080fd5b506104aa60048036038101906104a59190613bfa565b6114ae565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190613c75565b611602565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190613d6a565b611618565b005b34801561050a57600080fd5b506105136118c1565b60405161052091906137a9565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b9190613433565b6118d8565b60405161055d91906133db565b60405180910390f35b34801561057257600080fd5b5061058d60048036038101906105889190613b0e565b611982565b005b34801561059b57600080fd5b506105b660048036038101906105b19190613ded565b611a07565b005b3480156105c457600080fd5b506105df60048036038101906105da9190613b3b565b611a7a565b005b3480156105ed57600080fd5b5061060860048036038101906106039190613c75565b611b19565b005b34801561061657600080fd5b50610631600480360381019061062c9190613e68565b611b7c565b005b34801561063f57600080fd5b5061065a60048036038101906106559190613ee0565b611c7a565b005b34801561066857600080fd5b50610683600480360381019061067e9190613f0d565b611c9f565b6040516106909190613330565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610774575061077382611d33565b5b9050919050565b60606000805461078a90613f7c565b80601f01602080910402602001604051908101604052809291908181526020018280546107b690613f7c565b80156108035780601f106107d857610100808354040283529160200191610803565b820191906000526020600020905b8154815290600101906020018083116107e657829003601f168201915b5050505050905090565b600061081882611d9d565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085e826110da565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c59061401f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108ed611de8565b73ffffffffffffffffffffffffffffffffffffffff16148061091c575061091b81610916611de8565b611c9f565b5b61095b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610952906140b1565b60405180910390fd5b6109658383611df0565b505050565b610972611ea9565b8051600e805490501461098457600080fd5b80600e908051906020019061099a929190613120565b5050565b6000600d54600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106109f15760009050610a41565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54610a3e9190614100565b90505b90565b610a55610a4f611de8565b82611f3b565b610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b906141a6565b60405180910390fd5b610a9f838383611fd0565b505050565b610aac611ea9565b600e8690806001815401808255809150506001900390600052602060002001600090919091909150906006610ae2929190613180565b50600f8590806001815401808255809150506001900390600052602060002001600090919091909150906006610b19929190613180565b5060108490806001815401808255809150506001900390600052602060002001600090919091909150556011839080600181540180825580915050600190039060005260206000200160009091909190915055610b768282611b7c565b6000600760006101000a81548160ff021916908315150217905550505050505050565b610ba1611ea9565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610bc7906141f7565b60006040518083038185875af1925050503d8060008114610c04576040519150601f19603f3d011682016040523d82523d6000602084013e610c09565b606091505b5050905080610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4490614258565b60405180910390fd5b50565b610c6b83838360405180602001604052806000815250611618565b505050565b6001600c54610c7f9190614278565b83600654610c8d9190614278565b10610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc4906142f8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290614364565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da090614364565b60405180910390fd5b600760009054906101000a900460ff16610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def906143d0565b60405180910390fd5b600a60019054906101000a900460ff16610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e9061443c565b60405180910390fd5b6001600d54610e569190614278565b83600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ea19190614278565b10610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed8906144a8565b60405180910390fd5b82600b54610eef91906144c8565b3414610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790614556565b60405180910390fd5b600a60009054906101000a900460ff161561104957601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636df4d24185604051602001610f9491906134a1565b60405160208183030381529060405280519060200120836040518363ffffffff1660e01b8152600401610fc8929190614643565b602060405180830381865afa158015610fe5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110099190614688565b611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90614701565b60405180910390fd5b5b82600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110989190614278565b9250508190555060005b838110156110d357600060065490506110bb3382612236565b6110c58185612254565b5080806001019150506110a2565b5050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611182576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111799061476d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f2906147ff565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6001600c546112519190614278565b8260065461125f9190614278565b1061129f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611296906142f8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461132f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113269061486b565b60405180910390fd5b600760009054906101000a900460ff1661137e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611375906143d0565b60405180910390fd5b60005b828110156113b2576000600654905061139a8582612236565b6113a48184612254565b508080600101915050611381565b50505050565b6060600180546113c790613f7c565b80601f01602080910402602001604051908101604052809291908181526020018280546113f390613f7c565b80156114405780601f1061141557610100808354040283529160200191611440565b820191906000526020600020905b81548152906001019060200180831161142357829003601f168201915b5050505050905090565b61145b611455611de8565b83611f3b565b61149a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611491906148d7565b60405180910390fd5b80156114aa576114a98261278f565b5b5050565b6114b6611ea9565b83601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b61161461160d611de8565b83836128ac565b5050565b611629611623611de8565b83611f3b565b611668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165f90614943565b60405180910390fd5b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166397ca1042836040518263ffffffff1660e01b81526004016116c391906137a9565b602060405180830381865afa1580156116e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117049190614688565b15611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b906149af565b60405180910390fd5b601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806117e55750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6118af57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146118ae57601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636897fbe88360006040518363ffffffff1660e01b815260040161187b929190614a14565b600060405180830381600087803b15801561189557600080fd5b505af11580156118a9573d6000803e3d6000fd5b505050505b5b6118bb84848484612a18565b50505050565b6000600654600c546118d39190614100565b905090565b6060601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e5ec00fa836040518263ffffffff1660e01b815260040161193591906137a9565b600060405180830381865afa158015611952573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061197b9190614ade565b9050919050565b61198a611ea9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119c357600080fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611a0f611ea9565b84600a60016101000a81548160ff02191690831515021790555081600a60006101000a81548160ff02191690831515021790555083600b8190555080600c8190555082600d819055506000600760006101000a81548160ff0219169083151502179055505050505050565b611a82611ea9565b6001600c54611a919190614278565b82600654611a9f9190614278565b10611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad6906142f8565b60405180910390fd5b60005b82811015611b135760006006549050611afb8582612236565b611b058184612254565b508080600101915050611ae2565b50505050565b611b21611ea9565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611b84611ea9565b60005b8251811015611bff57600f80549050838281518110611ba957611ba8614b27565b5b60200260200101515114611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990614ba2565b60405180910390fd5b8080600101915050611b87565b50600f80549050815114611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f90614ba2565b60405180910390fd5b8160129080519060200190611c5e929190613120565b508060139080519060200190611c759291906131cd565b505050565b611c82611ea9565b80600760006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611da681612a74565b611de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddc9061476d565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e63836110da565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3090614c0e565b60405180910390fd5b565b600080611f47836110da565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f895750611f888185611c9f565b5b80611fc757508373ffffffffffffffffffffffffffffffffffffffff16611faf8461080d565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ff0826110da565b73ffffffffffffffffffffffffffffffffffffffff1614612046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d90614ca0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ac90614d32565b60405180910390fd5b6120c0838383612ae0565b6120cb600082611df0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461211b9190614100565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121729190614278565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612231838383612bcc565b505050565b612250828260405180602001604052806000815250612bd1565b5050565b60006122608383612c2c565b90506004811180156122a257506013818154811061228157612280614b27565b5b90600052602060002001546014600083815260200190815260200160002054115b1561235e5760016004601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e59606f4866040518263ffffffff1660e01b815260040161230691906137a9565b602060405180830381865afa158015612323573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123479190614d67565b6123519190614dc3565b61235b9190614278565b90505b60006040518060c0016040528060008152602001600081526020016000815260200160008152602001600081526020016000815250905060005b600681101561255757600e83815481106123b5576123b4614b27565b5b9060005260206000200181815481106123d1576123d0614b27565b5b90600052602060002001546001600e85815481106123f2576123f1614b27565b5b90600052602060002001838154811061240e5761240d614b27565b5b9060005260206000200154600f868154811061242d5761242c614b27565b5b90600052602060002001848154811061244957612448614b27565b5b906000526020600020015461245e9190614100565b6124689190614278565b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e59606f484878a6124b391906144c8565b6124bd91906144c8565b6040518263ffffffff1660e01b81526004016124d991906137a9565b602060405180830381865afa1580156124f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061251a9190614d67565b6125249190614dc3565b61252e9190614278565b82826006811061254157612540614b27565b5b6020020181815250508080600101915050612398565b50601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166332eb9f8685836000600681106125ab576125aa614b27565b5b6020020151846001600681106125c4576125c3614b27565b5b6020020151856002600681106125dd576125dc614b27565b5b6020020151866003600681106125f6576125f5614b27565b5b60200201518760046006811061260f5761260e614b27565b5b60200201518860056006811061262857612627614b27565b5b60200201518960056006811061264157612640614b27565b5b60200201518a60046006811061265a57612659614b27565b5b60200201518b60036006811061267357612672614b27565b5b60200201518c60026006811061268c5761268b614b27565b5b60200201518d6001600681106126a5576126a4614b27565b5b60200201518e6000600681106126be576126bd614b27565b5b60200201516126cd9190614278565b6126d79190614278565b6126e19190614278565b6126eb9190614278565b6126f59190614278565b8b6040518a63ffffffff1660e01b815260040161271a99989796959493929190614df4565b600060405180830381600087803b15801561273457600080fd5b505af1158015612748573d6000803e3d6000fd5b5050505060066000815461275b90614e81565b91905081905550601460008381526020019081526020016000206000815461278290614e81565b9190508190555050505050565b600061279a826110da565b90506127a881600084612ae0565b6127b3600083611df0565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128039190614100565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128a881600084612bcc565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361291a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291190614f15565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612a0b9190613330565b60405180910390a3505050565b612a23848484611fd0565b612a2f84848484612d98565b612a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6590614fa7565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b612aeb838383612f1f565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166397ca1042826040518263ffffffff1660e01b8152600401612b4691906137a9565b602060405180830381865afa158015612b63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b879190614688565b15612bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbe906149af565b60405180910390fd5b505050565b505050565b612bdb8383612f24565b612be86000848484612d98565b612c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1e90614fa7565b60405180910390fd5b505050565b600080612710601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e59606f4866040518263ffffffff1660e01b8152600401612c8d91906137a9565b602060405180830381865afa158015612caa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cce9190614d67565b612cd89190614dc3565b905060005b60128481548110612cf157612cf0614b27565b5b9060005260206000200180549050811015612d5f5760128481548110612d1a57612d19614b27565b5b906000526020600020018181548110612d3657612d35614b27565b5b9060005260206000200154821015612d52578092505050612d92565b8080600101915050612cdd565b50600160128481548110612d7657612d75614b27565b5b9060005260206000200180549050612d8e9190614100565b9150505b92915050565b6000612db98473ffffffffffffffffffffffffffffffffffffffff166130fd565b15612f12578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612de2611de8565b8786866040518563ffffffff1660e01b8152600401612e04949392919061501c565b6020604051808303816000875af1925050508015612e4057506040513d601f19601f82011682018060405250810190612e3d919061507d565b60015b612ec2573d8060008114612e70576040519150601f19603f3d011682016040523d82523d6000602084013e612e75565b606091505b506000815103612eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb190614fa7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f17565b600190505b949350505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8a906150f6565b60405180910390fd5b612f9c81612a74565b15612fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd390615162565b60405180910390fd5b612fe860008383612ae0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130389190614278565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130f960008383612bcc565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805482825590600052602060002090810192821561316f579160200282015b8281111561316e57825182908051906020019061315e9291906131cd565b5091602001919060010190613140565b5b50905061317c919061321a565b5090565b8280548282559060005260206000209081019282156131bc579160200282015b828111156131bb5782518255916020019190600101906131a0565b5b5090506131c9919061323e565b5090565b828054828255906000526020600020908101928215613209579160200282015b828111156132085782518255916020019190600101906131ed565b5b509050613216919061323e565b5090565b5b8082111561323a5760008181613231919061325b565b5060010161321b565b5090565b5b8082111561325757600081600090555060010161323f565b5090565b5080546000825590600052602060002090810190613279919061323e565b50565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132c581613290565b81146132d057600080fd5b50565b6000813590506132e2816132bc565b92915050565b6000602082840312156132fe576132fd613286565b5b600061330c848285016132d3565b91505092915050565b60008115159050919050565b61332a81613315565b82525050565b60006020820190506133456000830184613321565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561338557808201518184015260208101905061336a565b60008484015250505050565b6000601f19601f8301169050919050565b60006133ad8261334b565b6133b78185613356565b93506133c7818560208601613367565b6133d081613391565b840191505092915050565b600060208201905081810360008301526133f581846133a2565b905092915050565b6000819050919050565b613410816133fd565b811461341b57600080fd5b50565b60008135905061342d81613407565b92915050565b60006020828403121561344957613448613286565b5b60006134578482850161341e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061348b82613460565b9050919050565b61349b81613480565b82525050565b60006020820190506134b66000830184613492565b92915050565b6134c581613480565b81146134d057600080fd5b50565b6000813590506134e2816134bc565b92915050565b600080604083850312156134ff576134fe613286565b5b600061350d858286016134d3565b925050602061351e8582860161341e565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61356582613391565b810181811067ffffffffffffffff821117156135845761358361352d565b5b80604052505050565b600061359761327c565b90506135a3828261355c565b919050565b600067ffffffffffffffff8211156135c3576135c261352d565b5b602082029050602081019050919050565b600080fd5b600067ffffffffffffffff8211156135f4576135f361352d565b5b602082029050602081019050919050565b6000613618613613846135d9565b61358d565b9050808382526020820190506020840283018581111561363b5761363a6135d4565b5b835b818110156136645780613650888261341e565b84526020840193505060208101905061363d565b5050509392505050565b600082601f83011261368357613682613528565b5b8135613693848260208601613605565b91505092915050565b60006136af6136aa846135a8565b61358d565b905080838252602082019050602084028301858111156136d2576136d16135d4565b5b835b8181101561371957803567ffffffffffffffff8111156136f7576136f6613528565b5b808601613704898261366e565b855260208501945050506020810190506136d4565b5050509392505050565b600082601f83011261373857613737613528565b5b813561374884826020860161369c565b91505092915050565b60006020828403121561376757613766613286565b5b600082013567ffffffffffffffff8111156137855761378461328b565b5b61379184828501613723565b91505092915050565b6137a3816133fd565b82525050565b60006020820190506137be600083018461379a565b92915050565b6000806000606084860312156137dd576137dc613286565b5b60006137eb868287016134d3565b93505060206137fc868287016134d3565b925050604061380d8682870161341e565b9150509250925092565b600067ffffffffffffffff8211156138325761383161352d565b5b602082029050919050565b600061385061384b84613817565b61358d565b9050806020840283018581111561386a576138696135d4565b5b835b81811015613893578061387f888261341e565b84526020840193505060208101905061386c565b5050509392505050565b600082601f8301126138b2576138b1613528565b5b60066138bf84828561383d565b91505092915050565b60008060008060008061020087890312156138e6576138e5613286565b5b60006138f489828a0161389d565b96505060c061390589828a0161389d565b95505061018061391789828a0161341e565b9450506101a061392989828a0161341e565b9350506101c087013567ffffffffffffffff81111561394b5761394a61328b565b5b61395789828a01613723565b9250506101e087013567ffffffffffffffff8111156139795761397861328b565b5b61398589828a0161366e565b9150509295509295509295565b600067ffffffffffffffff8211156139ad576139ac61352d565b5b602082029050602081019050919050565b6000819050919050565b6139d1816139be565b81146139dc57600080fd5b50565b6000813590506139ee816139c8565b92915050565b6000613a07613a0284613992565b61358d565b90508083825260208201905060208402830185811115613a2a57613a296135d4565b5b835b81811015613a535780613a3f88826139df565b845260208401935050602081019050613a2c565b5050509392505050565b600082601f830112613a7257613a71613528565b5b8135613a828482602086016139f4565b91505092915050565b60008060008060808587031215613aa557613aa4613286565b5b6000613ab3878288016134d3565b9450506020613ac48782880161341e565b9350506040613ad58782880161341e565b925050606085013567ffffffffffffffff811115613af657613af561328b565b5b613b0287828801613a5d565b91505092959194509250565b600060208284031215613b2457613b23613286565b5b6000613b32848285016134d3565b91505092915050565b600080600060608486031215613b5457613b53613286565b5b6000613b62868287016134d3565b9350506020613b738682870161341e565b9250506040613b848682870161341e565b9150509250925092565b613b9781613315565b8114613ba257600080fd5b50565b600081359050613bb481613b8e565b92915050565b60008060408385031215613bd157613bd0613286565b5b6000613bdf8582860161341e565b9250506020613bf085828601613ba5565b9150509250929050565b600080600080600060a08688031215613c1657613c15613286565b5b6000613c24888289016134d3565b9550506020613c35888289016134d3565b9450506040613c46888289016134d3565b9350506060613c57888289016134d3565b9250506080613c68888289016134d3565b9150509295509295909350565b60008060408385031215613c8c57613c8b613286565b5b6000613c9a858286016134d3565b9250506020613cab85828601613ba5565b9150509250929050565b600080fd5b600067ffffffffffffffff821115613cd557613cd461352d565b5b613cde82613391565b9050602081019050919050565b82818337600083830152505050565b6000613d0d613d0884613cba565b61358d565b905082815260208101848484011115613d2957613d28613cb5565b5b613d34848285613ceb565b509392505050565b600082601f830112613d5157613d50613528565b5b8135613d61848260208601613cfa565b91505092915050565b60008060008060808587031215613d8457613d83613286565b5b6000613d92878288016134d3565b9450506020613da3878288016134d3565b9350506040613db48782880161341e565b925050606085013567ffffffffffffffff811115613dd557613dd461328b565b5b613de187828801613d3c565b91505092959194509250565b600080600080600060a08688031215613e0957613e08613286565b5b6000613e1788828901613ba5565b9550506020613e288882890161341e565b9450506040613e398882890161341e565b9350506060613e4a88828901613ba5565b9250506080613e5b8882890161341e565b9150509295509295909350565b60008060408385031215613e7f57613e7e613286565b5b600083013567ffffffffffffffff811115613e9d57613e9c61328b565b5b613ea985828601613723565b925050602083013567ffffffffffffffff811115613eca57613ec961328b565b5b613ed68582860161366e565b9150509250929050565b600060208284031215613ef657613ef5613286565b5b6000613f0484828501613ba5565b91505092915050565b60008060408385031215613f2457613f23613286565b5b6000613f32858286016134d3565b9250506020613f43858286016134d3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f9457607f821691505b602082108103613fa757613fa6613f4d565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614009602183613356565b915061401482613fad565b604082019050919050565b6000602082019050818103600083015261403881613ffc565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b600061409b603e83613356565b91506140a68261403f565b604082019050919050565b600060208201905081810360008301526140ca8161408e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061410b826133fd565b9150614116836133fd565b925082820390508181111561412e5761412d6140d1565b5b92915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000614190602e83613356565b915061419b82614134565b604082019050919050565b600060208201905081810360008301526141bf81614183565b9050919050565b600081905092915050565b50565b60006141e16000836141c6565b91506141ec826141d1565b600082019050919050565b6000614202826141d4565b9150819050919050565b7f3200000000000000000000000000000000000000000000000000000000000000600082015250565b6000614242600183613356565b915061424d8261420c565b602082019050919050565b6000602082019050818103600083015261427181614235565b9050919050565b6000614283826133fd565b915061428e836133fd565b92508282019050808211156142a6576142a56140d1565b5b92915050565b7f3800000000000000000000000000000000000000000000000000000000000000600082015250565b60006142e2600183613356565b91506142ed826142ac565b602082019050919050565b60006020820190508181036000830152614311816142d5565b9050919050565b7f3900000000000000000000000000000000000000000000000000000000000000600082015250565b600061434e600183613356565b915061435982614318565b602082019050919050565b6000602082019050818103600083015261437d81614341565b9050919050565b7f3230000000000000000000000000000000000000000000000000000000000000600082015250565b60006143ba600283613356565b91506143c582614384565b602082019050919050565b600060208201905081810360008301526143e9816143ad565b9050919050565b7f3131000000000000000000000000000000000000000000000000000000000000600082015250565b6000614426600283613356565b9150614431826143f0565b602082019050919050565b6000602082019050818103600083015261445581614419565b9050919050565b7f3339000000000000000000000000000000000000000000000000000000000000600082015250565b6000614492600283613356565b915061449d8261445c565b602082019050919050565b600060208201905081810360008301526144c181614485565b9050919050565b60006144d3826133fd565b91506144de836133fd565b92508282026144ec816133fd565b91508282048414831517614503576145026140d1565b5b5092915050565b7f3139000000000000000000000000000000000000000000000000000000000000600082015250565b6000614540600283613356565b915061454b8261450a565b602082019050919050565b6000602082019050818103600083015261456f81614533565b9050919050565b61457f816139be565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6145ba816139be565b82525050565b60006145cc83836145b1565b60208301905092915050565b6000602082019050919050565b60006145f082614585565b6145fa8185614590565b9350614605836145a1565b8060005b8381101561463657815161461d88826145c0565b9750614628836145d8565b925050600181019050614609565b5085935050505092915050565b60006040820190506146586000830185614576565b818103602083015261466a81846145e5565b90509392505050565b60008151905061468281613b8e565b92915050565b60006020828403121561469e5761469d613286565b5b60006146ac84828501614673565b91505092915050565b7f3133000000000000000000000000000000000000000000000000000000000000600082015250565b60006146eb600283613356565b91506146f6826146b5565b602082019050919050565b6000602082019050818103600083015261471a816146de565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614757601883613356565b915061476282614721565b602082019050919050565b600060208201905081810360008301526147868161474a565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006147e9602983613356565b91506147f48261478d565b604082019050919050565b60006020820190508181036000830152614818816147dc565b9050919050565b7f3135000000000000000000000000000000000000000000000000000000000000600082015250565b6000614855600283613356565b91506148608261481f565b602082019050919050565b6000602082019050818103600083015261488481614848565b9050919050565b7f3232000000000000000000000000000000000000000000000000000000000000600082015250565b60006148c1600283613356565b91506148cc8261488b565b602082019050919050565b600060208201905081810360008301526148f0816148b4565b9050919050565b7f5346460000000000000000000000000000000000000000000000000000000000600082015250565b600061492d600383613356565b9150614938826148f7565b602082019050919050565b6000602082019050818103600083015261495c81614920565b9050919050565b7f3431000000000000000000000000000000000000000000000000000000000000600082015250565b6000614999600283613356565b91506149a482614963565b602082019050919050565b600060208201905081810360008301526149c88161498c565b9050919050565b6000819050919050565b6000819050919050565b60006149fe6149f96149f4846149cf565b6149d9565b6133fd565b9050919050565b614a0e816149e3565b82525050565b6000604082019050614a29600083018561379a565b614a366020830184614a05565b9392505050565b600067ffffffffffffffff821115614a5857614a5761352d565b5b614a6182613391565b9050602081019050919050565b6000614a81614a7c84614a3d565b61358d565b905082815260208101848484011115614a9d57614a9c613cb5565b5b614aa8848285613367565b509392505050565b600082601f830112614ac557614ac4613528565b5b8151614ad5848260208601614a6e565b91505092915050565b600060208284031215614af457614af3613286565b5b600082015167ffffffffffffffff811115614b1257614b1161328b565b5b614b1e84828501614ab0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f3132000000000000000000000000000000000000000000000000000000000000600082015250565b6000614b8c600283613356565b9150614b9782614b56565b602082019050919050565b60006020820190508181036000830152614bbb81614b7f565b9050919050565b7f4f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614bf8600183613356565b9150614c0382614bc2565b602082019050919050565b60006020820190508181036000830152614c2781614beb565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614c8a602583613356565b9150614c9582614c2e565b604082019050919050565b60006020820190508181036000830152614cb981614c7d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d1c602483613356565b9150614d2782614cc0565b604082019050919050565b60006020820190508181036000830152614d4b81614d0f565b9050919050565b600081519050614d6181613407565b92915050565b600060208284031215614d7d57614d7c613286565b5b6000614d8b84828501614d52565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614dce826133fd565b9150614dd9836133fd565b925082614de957614de8614d94565b5b828206905092915050565b600061012082019050614e0a600083018c61379a565b614e17602083018b61379a565b614e24604083018a61379a565b614e31606083018961379a565b614e3e608083018861379a565b614e4b60a083018761379a565b614e5860c083018661379a565b614e6560e083018561379a565b614e7361010083018461379a565b9a9950505050505050505050565b6000614e8c826133fd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614ebe57614ebd6140d1565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614eff601983613356565b9150614f0a82614ec9565b602082019050919050565b60006020820190508181036000830152614f2e81614ef2565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614f91603283613356565b9150614f9c82614f35565b604082019050919050565b60006020820190508181036000830152614fc081614f84565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614fee82614fc7565b614ff88185614fd2565b9350615008818560208601613367565b61501181613391565b840191505092915050565b60006080820190506150316000830187613492565b61503e6020830186613492565b61504b604083018561379a565b818103606083015261505d8184614fe3565b905095945050505050565b600081519050615077816132bc565b92915050565b60006020828403121561509357615092613286565b5b60006150a184828501615068565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006150e0602083613356565b91506150eb826150aa565b602082019050919050565b6000602082019050818103600083015261510f816150d3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061514c601c83613356565b915061515782615116565b602082019050919050565b6000602082019050818103600083015261517b8161513f565b905091905056fea2646970667358221220ebc78d2962a07a8df807a81583c809b1394628c6f6bc21d96a2e940a633155a564736f6c63430008170033

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