ETH Price: $3,250.60 (+4.35%)
Gas: 2 Gwei

Token

CryptoAthletes (CATH)
 

Overview

Max Total Supply

803 CATH

Holders

269

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
arffin.eth
Balance
1 CATH
0x4130a43c7eefca02dce917715b889f9eec01d2e8
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CryptoAthletes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.7;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "./ERC721Pausable.sol";

contract CryptoAthletes is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable {

    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdTracker;

    uint256 private constant PRICE_PER_CA = 5 * 10**16; // 0.05ETH Per Crypto Athletes

    uint256 private constant MAX_ELEMENTS_CROWDSALE = 1 * 10**4 + 20; // 10020 Crypto Athletes in CrowdSale
    uint256 private constant MAX_ELEMENTS_PRESALE = 5 * 10**2; // 500 Crypto Athletes in PreSale

    uint256 private constant MAX_MINT_CROWDSALE = 20; // Upper Limit is 10 in CrowdSale
    uint256 private constant MAX_MINT_PRESALE = 5; // Upper Limit is 2 in PreSale

    address private constant ownerAddress = 0x0081aD52FF7Eb8B5165777aa6adCf7d80cBF647D; // Wallet Address of Owner
    address public constant developerAddress = 0xA7482C9c5926E88d85804A969c383730Ce100639; // Wallet Address of the Cory

    mapping(uint256 => bool) private _isOccupiedId;
    uint256[] private _occupiedList;

    uint256 private maxSalesAmount;
    uint256 private maxMintAmount;

    string private baseTokenURI;

    event CreateCryptoAthletes(address to, uint256 indexed id);

    modifier saleIsOpen {
        require(_totalSupply() <= maxSalesAmount, "SALES: Sale end");

        if (_msgSender() != owner()) {
            require(!paused(), "PAUSABLE: Paused");
        }
        _;
    }

    constructor (string memory baseURI) ERC721("CryptoAthletes", "CATH") {
        setBaseURI(baseURI);
        pause(true);

        maxSalesAmount = MAX_ELEMENTS_CROWDSALE;
        maxMintAmount = MAX_MINT_CROWDSALE;
    }

    function mint(address payable _to, uint256[] memory _ids) public payable saleIsOpen {
        uint256 total = _totalSupply();

        require(total + _ids.length <= maxSalesAmount, "MINT: Current count exceeds maximum element count.");
        require(total <= maxSalesAmount, "MINT: Please go to the Opensea to buy Crypto Athletes.");
        require(_ids.length <= maxMintAmount, "MINT: Current count exceeds maximum mint count.");
        require(msg.value >= price(_ids.length), "MINT: Current value is below the sales price of Crypto Athletes");

        for (uint256 i = 0; i < _ids.length; i++) {
            require(_isOccupiedId[_ids[i]] == false, "MINT: Those ids already have been used for other customers");
        }

        for (uint256 i = 0; i < _ids.length; i++) {
            _mintAnElement(_to, _ids[i]);
        }
    }

    function _mintAnElement(address payable _to, uint256 _id) private {
        _tokenIdTracker.increment();
        _safeMint(_to, _id);
        _isOccupiedId[_id] = true;
        _occupiedList.push(_id);

        emit CreateCryptoAthletes(_to, _id);
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function startPreSale() public onlyOwner {
        maxSalesAmount = MAX_ELEMENTS_PRESALE;
        maxMintAmount = MAX_MINT_PRESALE;
    }

    function stopPreSale() public onlyOwner {
        maxSalesAmount = MAX_ELEMENTS_CROWDSALE;
        maxMintAmount = MAX_MINT_CROWDSALE;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    function price(uint256 _count) public pure returns (uint256) {
        return PRICE_PER_CA.mul(_count);
    }

    function _totalSupply() internal view returns (uint) {
        return _tokenIdTracker.current();
    }

    function occupiedList() public view returns (uint256[] memory) {
      return _occupiedList;
    }

    function maxMint() public view returns (uint256) {
        return maxMintAmount;
    }

    function maxSales() public view returns (uint256) {
        return maxSalesAmount;
    }

    function raised() public view returns (uint256) {
        return address(this).balance;
    }

    function getTokenIdsOfWallet(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);

        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

    function pause(bool value) public onlyOwner {
        if (value == true) {
            _pause();

            return;
        }

        _unpause();
    }

    function withdrawAll() public payable onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "WITHDRAW: No balance in contract");

        _widthdraw(developerAddress, balance.mul(3).div(100));
        _widthdraw(ownerAddress, address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "WITHDRAW: Transfer failed.");
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

File 2 of 18 : ERC721Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Ownable, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);
        if (_msgSender() != owner()) {
            require(!paused(), "ERC721Pausable: token transfer while paused");
        }
    }
}

File 3 of 18 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 4 of 18 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 5 of 18 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 6 of 18 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 7 of 18 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 8 of 18 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 9 of 18 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 10 of 18 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 18 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 12 of 18 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 13 of 18 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 14 of 18 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 15 of 18 : IERC721.sol
// SPDX-License-Identifier: MIT

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

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

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

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

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

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

File 16 of 18 : ERC721.sol
// SPDX-License-Identifier: MIT

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: balance query for the zero address");
        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: owner query for nonexistent token");
        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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

    /**
     * @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 overriden 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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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: transfer caller is not 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: transfer caller is not 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) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

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

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

File 17 of 18 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

File 18 of 18 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":false,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"CreateCryptoAthletes","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokenIdsOfWallet","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSales","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"occupiedList","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"raised","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopPreSale","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b5060405162005a1038038062005a1083398181016040528101906200003791906200066b565b6040518060400160405280600e81526020017f43727970746f4174686c657465730000000000000000000000000000000000008152506040518060400160405280600481526020017f43415448000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb9291906200053d565b508060019080519060200190620000d49291906200053d565b505050620000f7620000eb6200014d60201b60201c565b6200015560201b60201c565b6000600a60146101000a81548160ff02191690831515021790555062000123816200021b60201b60201c565b620001356001620002c660201b60201c565b612724600e819055506014600f819055505062000a09565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200022b6200014d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002516200038d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a190620007a3565b60405180910390fd5b8060109080519060200190620002c29291906200053d565b5050565b620002d66200014d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002fc6200038d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000355576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034c90620007a3565b60405180910390fd5b600115158115151415620003795762000373620003b760201b60201c565b6200038a565b620003896200046f60201b60201c565b5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620003c76200052660201b60201c565b156200040a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004019062000781565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620004566200014d60201b60201c565b60405162000465919062000742565b60405180910390a1565b6200047f6200052660201b60201c565b620004c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b8906200075f565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6200050d6200014d60201b60201c565b6040516200051c919062000742565b60405180910390a1565b6000600a60149054906101000a900460ff16905090565b8280546200054b906200089f565b90600052602060002090601f0160209004810192826200056f5760008555620005bb565b82601f106200058a57805160ff1916838001178555620005bb565b82800160010185558215620005bb579182015b82811115620005ba5782518255916020019190600101906200059d565b5b509050620005ca9190620005ce565b5090565b5b80821115620005e9576000816000905550600101620005cf565b5090565b600062000604620005fe84620007ee565b620007c5565b9050828152602081018484840111156200062357620006226200096e565b5b6200063084828562000869565b509392505050565b600082601f83011262000650576200064f62000969565b5b815162000662848260208601620005ed565b91505092915050565b60006020828403121562000684576200068362000978565b5b600082015167ffffffffffffffff811115620006a557620006a462000973565b5b620006b38482850162000638565b91505092915050565b620006c78162000835565b82525050565b6000620006dc60148362000824565b9150620006e9826200098e565b602082019050919050565b60006200070360108362000824565b91506200071082620009b7565b602082019050919050565b60006200072a60208362000824565b91506200073782620009e0565b602082019050919050565b6000602082019050620007596000830184620006bc565b92915050565b600060208201905081810360008301526200077a81620006cd565b9050919050565b600060208201905081810360008301526200079c81620006f4565b9050919050565b60006020820190508181036000830152620007be816200071b565b9050919050565b6000620007d1620007e4565b9050620007df8282620008d5565b919050565b6000604051905090565b600067ffffffffffffffff8211156200080c576200080b6200093a565b5b62000817826200097d565b9050602081019050919050565b600082825260208201905092915050565b6000620008428262000849565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620008895780820151818401526020810190506200086c565b8381111562000899576000848401525b50505050565b60006002820490506001821680620008b857607f821691505b60208210811415620008cf57620008ce6200090b565b5b50919050565b620008e0826200097d565b810181811067ffffffffffffffff821117156200090257620009016200093a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614ff78062000a196000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063bfdf9b6e116100a0578063e985e9c51161006f578063e985e9c514610705578063eef6250814610742578063f0ea4bfc1461077f578063f2fde38b146107aa578063f8fb3366146107d3576101f9565b8063bfdf9b6e14610656578063c87b56dd14610681578063caccd7f7146106be578063de836ebd146106e9576101f9565b806395d89b41116100dc57806395d89b41146105ae578063a22cb465146105d9578063a769cba914610602578063b88d4fde1461062d576101f9565b8063715018a6146105375780637501f7411461054e578063853828b6146105795780638da5cb5b14610583576101f9565b80632f745c591161019057806355dd574c1161015f57806355dd574c1461045257806355f804b3146104695780635c975abb146104925780636352211e146104bd57806370a08231146104fa576101f9565b80632f745c591461038657806342842e0e146103c357806342966c68146103ec5780634f6ccce714610415576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806318160ddd146102f557806323b872dd1461032057806326a49e3714610349576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906135c8565b6107ea565b6040516102329190613d67565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d919061359b565b6107fc565b005b34801561027057600080fd5b5061027961089e565b6040516102869190613d82565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b1919061366b565b610930565b6040516102c39190613cc3565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee919061355b565b6109b5565b005b34801561030157600080fd5b5061030a610acd565b6040516103179190614184565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190613445565b610ada565b005b34801561035557600080fd5b50610370600480360381019061036b919061366b565b610b3a565b60405161037d9190614184565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a8919061355b565b610b5d565b6040516103ba9190614184565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190613445565b610c02565b005b3480156103f857600080fd5b50610413600480360381019061040e919061366b565b610c22565b005b34801561042157600080fd5b5061043c6004803603810190610437919061366b565b610c7e565b6040516104499190614184565b60405180910390f35b34801561045e57600080fd5b50610467610cef565b005b34801561047557600080fd5b50610490600480360381019061048b9190613622565b610d7e565b005b34801561049e57600080fd5b506104a7610e14565b6040516104b49190613d67565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df919061366b565b610e2b565b6040516104f19190613cc3565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c919061337c565b610edd565b60405161052e9190614184565b60405180910390f35b34801561054357600080fd5b5061054c610f95565b005b34801561055a57600080fd5b5061056361101d565b6040516105709190614184565b60405180910390f35b610581611027565b005b34801561058f57600080fd5b5061059861114f565b6040516105a59190613cc3565b60405180910390f35b3480156105ba57600080fd5b506105c3611179565b6040516105d09190613d82565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb919061351b565b61120b565b005b34801561060e57600080fd5b5061061761138c565b6040516106249190613d45565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190613498565b6113e4565b005b34801561066257600080fd5b5061066b611446565b6040516106789190614184565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a3919061366b565b611450565b6040516106b59190613d82565b60405180910390f35b3480156106ca57600080fd5b506106d36114f7565b6040516106e09190613cc3565b60405180910390f35b61070360048036038101906106fe91906133a9565b61150f565b005b34801561071157600080fd5b5061072c60048036038101906107279190613405565b611803565b6040516107399190613d67565b60405180910390f35b34801561074e57600080fd5b506107696004803603810190610764919061337c565b611897565b6040516107769190613d45565b60405180910390f35b34801561078b57600080fd5b50610794611945565b6040516107a19190614184565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc919061337c565b61194d565b005b3480156107df57600080fd5b506107e8611a45565b005b60006107f582611ad4565b9050919050565b610804611b4e565b73ffffffffffffffffffffffffffffffffffffffff1661082261114f565b73ffffffffffffffffffffffffffffffffffffffff1614610878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086f90614004565b60405180910390fd5b6001151581151514156108925761088d611b56565b61089b565b61089a611bf9565b5b50565b6060600080546108ad906144ec565b80601f01602080910402602001604051908101604052809291908181526020018280546108d9906144ec565b80156109265780601f106108fb57610100808354040283529160200191610926565b820191906000526020600020905b81548152906001019060200180831161090957829003601f168201915b5050505050905090565b600061093b82611c9b565b61097a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097190613fe4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c082610e2b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a28906140a4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a50611b4e565b73ffffffffffffffffffffffffffffffffffffffff161480610a7f5750610a7e81610a79611b4e565b611803565b5b610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab590613f64565b60405180910390fd5b610ac88383611d07565b505050565b6000600880549050905090565b610aeb610ae5611b4e565b82611dc0565b610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b21906140e4565b60405180910390fd5b610b35838383611e9e565b505050565b6000610b568266b1a2bc2ec500006120fa90919063ffffffff16565b9050919050565b6000610b6883610edd565b8210610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090613de4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c1d838383604051806020016040528060008152506113e4565b505050565b610c33610c2d611b4e565b82611dc0565b610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6990614144565b60405180910390fd5b610c7b81612110565b50565b6000610c88610acd565b8210610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc090614104565b60405180910390fd5b60088281548110610cdd57610cdc614685565b5b90600052602060002001549050919050565b610cf7611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610d1561114f565b73ffffffffffffffffffffffffffffffffffffffff1614610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290614004565b60405180910390fd5b6101f4600e819055506005600f81905550565b610d86611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610da461114f565b73ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190614004565b60405180910390fd5b8060109080519060200190610e109291906130dd565b5050565b6000600a60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90613fa4565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590613f84565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f9d611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610fbb61114f565b73ffffffffffffffffffffffffffffffffffffffff1614611011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100890614004565b60405180910390fd5b61101b6000612221565b565b6000600f54905090565b61102f611b4e565b73ffffffffffffffffffffffffffffffffffffffff1661104d61114f565b73ffffffffffffffffffffffffffffffffffffffff16146110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90614004565b60405180910390fd5b6000479050600081116110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e290614084565b60405180910390fd5b61112f73a7482c9c5926e88d85804a969c383730ce10063961112a606461111c6003866120fa90919063ffffffff16565b6122e790919063ffffffff16565b6122fd565b61114c7281ad52ff7eb8b5165777aa6adcf7d80cbf647d476122fd565b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611188906144ec565b80601f01602080910402602001604051908101604052809291908181526020018280546111b4906144ec565b80156112015780601f106111d657610100808354040283529160200191611201565b820191906000526020600020905b8154815290600101906020018083116111e457829003601f168201915b5050505050905090565b611213611b4e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890613f04565b60405180910390fd5b806005600061128e611b4e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133b611b4e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113809190613d67565b60405180910390a35050565b6060600d8054806020026020016040519081016040528092919081815260200182805480156113da57602002820191906000526020600020905b8154815260200190600101908083116113c6575b5050505050905090565b6113f56113ef611b4e565b83611dc0565b611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b906140e4565b60405180910390fd5b611440848484846123ae565b50505050565b6000600e54905090565b606061145b82611c9b565b61149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190614044565b60405180910390fd5b60006114a461240a565b905060008151116114c457604051806020016040528060008152506114ef565b806114ce8461249c565b6040516020016114df929190613c7f565b6040516020818303038152906040525b915050919050565b73a7482c9c5926e88d85804a969c383730ce10063981565b600e5461151a6125fd565b111561155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290614164565b60405180910390fd5b61156361114f565b73ffffffffffffffffffffffffffffffffffffffff16611581611b4e565b73ffffffffffffffffffffffffffffffffffffffff16146115e5576115a4610e14565b156115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db90613e24565b60405180910390fd5b5b60006115ef6125fd565b9050600e5482518261160191906142d9565b1115611642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163990613e44565b60405180910390fd5b600e54811115611687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167e90613ea4565b60405180910390fd5b600f54825111156116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c4906140c4565b60405180910390fd5b6116d78251610b3a565b341015611719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171090614124565b60405180910390fd5b60005b82518110156117b95760001515600c60008584815181106117405761173f614685565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff161515146117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179d90614064565b60405180910390fd5b80806117b19061454f565b91505061171c565b5060005b82518110156117fd576117ea848483815181106117dd576117dc614685565b5b602002602001015161260e565b80806117f59061454f565b9150506117bd565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060006118a483610edd565b905060008167ffffffffffffffff8111156118c2576118c16146b4565b5b6040519080825280602002602001820160405280156118f05781602001602082028036833780820191505090505b50905060005b8281101561193a576119088582610b5d565b82828151811061191b5761191a614685565b5b60200260200101818152505080806119329061454f565b9150506118f6565b508092505050919050565b600047905090565b611955611b4e565b73ffffffffffffffffffffffffffffffffffffffff1661197361114f565b73ffffffffffffffffffffffffffffffffffffffff16146119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c090614004565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3090613e64565b60405180910390fd5b611a4281612221565b50565b611a4d611b4e565b73ffffffffffffffffffffffffffffffffffffffff16611a6b61114f565b73ffffffffffffffffffffffffffffffffffffffff1614611ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab890614004565b60405180910390fd5b612724600e819055506014600f81905550565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b475750611b46826126b3565b5b9050919050565b600033905090565b611b5e610e14565b15611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9590613f44565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611be2611b4e565b604051611bef9190613cc3565b60405180910390a1565b611c01610e14565b611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3790613dc4565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611c84611b4e565b604051611c919190613cc3565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d7a83610e2b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dcb82611c9b565b611e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0190613f24565b60405180910390fd5b6000611e1583610e2b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e8457508373ffffffffffffffffffffffffffffffffffffffff16611e6c84610930565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e955750611e948185611803565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ebe82610e2b565b73ffffffffffffffffffffffffffffffffffffffff1614611f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0b90614024565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7b90613ee4565b60405180910390fd5b611f8f838383612795565b611f9a600082611d07565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fea91906143ba565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461204191906142d9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836121089190614360565b905092915050565b600061211b82610e2b565b905061212981600084612795565b612134600083611d07565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218491906143ba565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836122f5919061432f565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161232390613cae565b60006040518083038185875af1925050503d8060008114612360576040519150601f19603f3d011682016040523d82523d6000602084013e612365565b606091505b50509050806123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a090613ec4565b60405180910390fd5b505050565b6123b9848484611e9e565b6123c5848484846127a5565b612404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fb90613e04565b60405180910390fd5b50505050565b606060108054612419906144ec565b80601f0160208091040260200160405190810160405280929190818152602001828054612445906144ec565b80156124925780601f1061246757610100808354040283529160200191612492565b820191906000526020600020905b81548152906001019060200180831161247557829003601f168201915b5050505050905090565b606060008214156124e4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125f8565b600082905060005b600082146125165780806124ff9061454f565b915050600a8261250f919061432f565b91506124ec565b60008167ffffffffffffffff811115612532576125316146b4565b5b6040519080825280601f01601f1916602001820160405280156125645781602001600182028036833780820191505090505b5090505b600085146125f15760018261257d91906143ba565b9150600a8561258c9190614598565b603061259891906142d9565b60f81b8183815181106125ae576125ad614685565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125ea919061432f565b9450612568565b8093505050505b919050565b6000612609600b61293c565b905090565b612618600b61294a565b6126228282612960565b6001600c600083815260200190815260200160002060006101000a81548160ff021916908315150217905550600d819080600181540180825580915050600190039060005260206000200160009091909190915055807fa5cd68f916ffd1e340e44f6cf04dd86bd827e78c04fecf1cfd5cce08608d762e836040516126a79190613cde565b60405180910390a25050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061277e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061278e575061278d8261297e565b5b9050919050565b6127a08383836129e8565b505050565b60006127c68473ffffffffffffffffffffffffffffffffffffffff16612a82565b1561292f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127ef611b4e565b8786866040518563ffffffff1660e01b81526004016128119493929190613cf9565b602060405180830381600087803b15801561282b57600080fd5b505af192505050801561285c57506040513d601f19601f8201168201806040525081019061285991906135f5565b60015b6128df573d806000811461288c576040519150601f19603f3d011682016040523d82523d6000602084013e612891565b606091505b506000815114156128d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ce90613e04565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612934565b600190505b949350505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b61297a828260405180602001604052806000815250612a95565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6129f3838383612af0565b6129fb61114f565b73ffffffffffffffffffffffffffffffffffffffff16612a19611b4e565b73ffffffffffffffffffffffffffffffffffffffff1614612a7d57612a3c610e14565b15612a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7390613da4565b60405180910390fd5b5b505050565b600080823b905060008111915050919050565b612a9f8383612c04565b612aac60008484846127a5565b612aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae290613e04565b60405180910390fd5b505050565b612afb838383612dd2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b3e57612b3981612dd7565b612b7d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b7c57612b7b8382612e20565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bc057612bbb81612f8d565b612bff565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612bfe57612bfd828261305e565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6b90613fc4565b60405180910390fd5b612c7d81611c9b565b15612cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb490613e84565b60405180910390fd5b612cc960008383612795565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d1991906142d9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612e2d84610edd565b612e3791906143ba565b9050600060076000848152602001908152602001600020549050818114612f1c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612fa191906143ba565b9050600060096000848152602001908152602001600020549050600060088381548110612fd157612fd0614685565b5b906000526020600020015490508060088381548110612ff357612ff2614685565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061304257613041614656565b5b6001900381819060005260206000200160009055905550505050565b600061306983610edd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546130e9906144ec565b90600052602060002090601f01602090048101928261310b5760008555613152565b82601f1061312457805160ff1916838001178555613152565b82800160010185558215613152579182015b82811115613151578251825591602001919060010190613136565b5b50905061315f9190613163565b5090565b5b8082111561317c576000816000905550600101613164565b5090565b600061319361318e846141c4565b61419f565b905080838252602082019050828560208602820111156131b6576131b56146e8565b5b60005b858110156131e657816131cc8882613367565b8452602084019350602083019250506001810190506131b9565b5050509392505050565b60006132036131fe846141f0565b61419f565b90508281526020810184848401111561321f5761321e6146ed565b5b61322a8482856144aa565b509392505050565b600061324561324084614221565b61419f565b905082815260208101848484011115613261576132606146ed565b5b61326c8482856144aa565b509392505050565b60008135905061328381614f4e565b92915050565b60008135905061329881614f65565b92915050565b600082601f8301126132b3576132b26146e3565b5b81356132c3848260208601613180565b91505092915050565b6000813590506132db81614f7c565b92915050565b6000813590506132f081614f93565b92915050565b60008151905061330581614f93565b92915050565b600082601f8301126133205761331f6146e3565b5b81356133308482602086016131f0565b91505092915050565b600082601f83011261334e5761334d6146e3565b5b813561335e848260208601613232565b91505092915050565b60008135905061337681614faa565b92915050565b600060208284031215613392576133916146f7565b5b60006133a084828501613274565b91505092915050565b600080604083850312156133c0576133bf6146f7565b5b60006133ce85828601613289565b925050602083013567ffffffffffffffff8111156133ef576133ee6146f2565b5b6133fb8582860161329e565b9150509250929050565b6000806040838503121561341c5761341b6146f7565b5b600061342a85828601613274565b925050602061343b85828601613274565b9150509250929050565b60008060006060848603121561345e5761345d6146f7565b5b600061346c86828701613274565b935050602061347d86828701613274565b925050604061348e86828701613367565b9150509250925092565b600080600080608085870312156134b2576134b16146f7565b5b60006134c087828801613274565b94505060206134d187828801613274565b93505060406134e287828801613367565b925050606085013567ffffffffffffffff811115613503576135026146f2565b5b61350f8782880161330b565b91505092959194509250565b60008060408385031215613532576135316146f7565b5b600061354085828601613274565b9250506020613551858286016132cc565b9150509250929050565b60008060408385031215613572576135716146f7565b5b600061358085828601613274565b925050602061359185828601613367565b9150509250929050565b6000602082840312156135b1576135b06146f7565b5b60006135bf848285016132cc565b91505092915050565b6000602082840312156135de576135dd6146f7565b5b60006135ec848285016132e1565b91505092915050565b60006020828403121561360b5761360a6146f7565b5b6000613619848285016132f6565b91505092915050565b600060208284031215613638576136376146f7565b5b600082013567ffffffffffffffff811115613656576136556146f2565b5b61366284828501613339565b91505092915050565b600060208284031215613681576136806146f7565b5b600061368f84828501613367565b91505092915050565b60006136a48383613c61565b60208301905092915050565b6136b981614474565b82525050565b6136c8816143ee565b82525050565b60006136d982614262565b6136e38185614290565b93506136ee83614252565b8060005b8381101561371f5781516137068882613698565b975061371183614283565b9250506001810190506136f2565b5085935050505092915050565b61373581614412565b82525050565b60006137468261426d565b61375081856142a1565b93506137608185602086016144b9565b613769816146fc565b840191505092915050565b600061377f82614278565b61378981856142bd565b93506137998185602086016144b9565b6137a2816146fc565b840191505092915050565b60006137b882614278565b6137c281856142ce565b93506137d28185602086016144b9565b80840191505092915050565b60006137eb602b836142bd565b91506137f68261470d565b604082019050919050565b600061380e6014836142bd565b91506138198261475c565b602082019050919050565b6000613831602b836142bd565b915061383c82614785565b604082019050919050565b60006138546032836142bd565b915061385f826147d4565b604082019050919050565b60006138776010836142bd565b915061388282614823565b602082019050919050565b600061389a6032836142bd565b91506138a58261484c565b604082019050919050565b60006138bd6026836142bd565b91506138c88261489b565b604082019050919050565b60006138e0601c836142bd565b91506138eb826148ea565b602082019050919050565b60006139036036836142bd565b915061390e82614913565b604082019050919050565b6000613926601a836142bd565b915061393182614962565b602082019050919050565b60006139496024836142bd565b91506139548261498b565b604082019050919050565b600061396c6019836142bd565b9150613977826149da565b602082019050919050565b600061398f602c836142bd565b915061399a82614a03565b604082019050919050565b60006139b26010836142bd565b91506139bd82614a52565b602082019050919050565b60006139d56038836142bd565b91506139e082614a7b565b604082019050919050565b60006139f8602a836142bd565b9150613a0382614aca565b604082019050919050565b6000613a1b6029836142bd565b9150613a2682614b19565b604082019050919050565b6000613a3e6020836142bd565b9150613a4982614b68565b602082019050919050565b6000613a61602c836142bd565b9150613a6c82614b91565b604082019050919050565b6000613a846005836142ce565b9150613a8f82614be0565b600582019050919050565b6000613aa76020836142bd565b9150613ab282614c09565b602082019050919050565b6000613aca6029836142bd565b9150613ad582614c32565b604082019050919050565b6000613aed602f836142bd565b9150613af882614c81565b604082019050919050565b6000613b10603a836142bd565b9150613b1b82614cd0565b604082019050919050565b6000613b336020836142bd565b9150613b3e82614d1f565b602082019050919050565b6000613b566021836142bd565b9150613b6182614d48565b604082019050919050565b6000613b796000836142b2565b9150613b8482614d97565b600082019050919050565b6000613b9c602f836142bd565b9150613ba782614d9a565b604082019050919050565b6000613bbf6031836142bd565b9150613bca82614de9565b604082019050919050565b6000613be2602c836142bd565b9150613bed82614e38565b604082019050919050565b6000613c05603f836142bd565b9150613c1082614e87565b604082019050919050565b6000613c286030836142bd565b9150613c3382614ed6565b604082019050919050565b6000613c4b600f836142bd565b9150613c5682614f25565b602082019050919050565b613c6a8161446a565b82525050565b613c798161446a565b82525050565b6000613c8b82856137ad565b9150613c9782846137ad565b9150613ca282613a77565b91508190509392505050565b6000613cb982613b6c565b9150819050919050565b6000602082019050613cd860008301846136bf565b92915050565b6000602082019050613cf360008301846136b0565b92915050565b6000608082019050613d0e60008301876136bf565b613d1b60208301866136bf565b613d286040830185613c70565b8181036060830152613d3a818461373b565b905095945050505050565b60006020820190508181036000830152613d5f81846136ce565b905092915050565b6000602082019050613d7c600083018461372c565b92915050565b60006020820190508181036000830152613d9c8184613774565b905092915050565b60006020820190508181036000830152613dbd816137de565b9050919050565b60006020820190508181036000830152613ddd81613801565b9050919050565b60006020820190508181036000830152613dfd81613824565b9050919050565b60006020820190508181036000830152613e1d81613847565b9050919050565b60006020820190508181036000830152613e3d8161386a565b9050919050565b60006020820190508181036000830152613e5d8161388d565b9050919050565b60006020820190508181036000830152613e7d816138b0565b9050919050565b60006020820190508181036000830152613e9d816138d3565b9050919050565b60006020820190508181036000830152613ebd816138f6565b9050919050565b60006020820190508181036000830152613edd81613919565b9050919050565b60006020820190508181036000830152613efd8161393c565b9050919050565b60006020820190508181036000830152613f1d8161395f565b9050919050565b60006020820190508181036000830152613f3d81613982565b9050919050565b60006020820190508181036000830152613f5d816139a5565b9050919050565b60006020820190508181036000830152613f7d816139c8565b9050919050565b60006020820190508181036000830152613f9d816139eb565b9050919050565b60006020820190508181036000830152613fbd81613a0e565b9050919050565b60006020820190508181036000830152613fdd81613a31565b9050919050565b60006020820190508181036000830152613ffd81613a54565b9050919050565b6000602082019050818103600083015261401d81613a9a565b9050919050565b6000602082019050818103600083015261403d81613abd565b9050919050565b6000602082019050818103600083015261405d81613ae0565b9050919050565b6000602082019050818103600083015261407d81613b03565b9050919050565b6000602082019050818103600083015261409d81613b26565b9050919050565b600060208201905081810360008301526140bd81613b49565b9050919050565b600060208201905081810360008301526140dd81613b8f565b9050919050565b600060208201905081810360008301526140fd81613bb2565b9050919050565b6000602082019050818103600083015261411d81613bd5565b9050919050565b6000602082019050818103600083015261413d81613bf8565b9050919050565b6000602082019050818103600083015261415d81613c1b565b9050919050565b6000602082019050818103600083015261417d81613c3e565b9050919050565b60006020820190506141996000830184613c70565b92915050565b60006141a96141ba565b90506141b5828261451e565b919050565b6000604051905090565b600067ffffffffffffffff8211156141df576141de6146b4565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561420b5761420a6146b4565b5b614214826146fc565b9050602081019050919050565b600067ffffffffffffffff82111561423c5761423b6146b4565b5b614245826146fc565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142e48261446a565b91506142ef8361446a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614324576143236145c9565b5b828201905092915050565b600061433a8261446a565b91506143458361446a565b925082614355576143546145f8565b5b828204905092915050565b600061436b8261446a565b91506143768361446a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143af576143ae6145c9565b5b828202905092915050565b60006143c58261446a565b91506143d08361446a565b9250828210156143e3576143e26145c9565b5b828203905092915050565b60006143f98261444a565b9050919050565b600061440b8261444a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061447f82614486565b9050919050565b600061449182614498565b9050919050565b60006144a38261444a565b9050919050565b82818337600083830152505050565b60005b838110156144d75780820151818401526020810190506144bc565b838111156144e6576000848401525b50505050565b6000600282049050600182168061450457607f821691505b6020821081141561451857614517614627565b5b50919050565b614527826146fc565b810181811067ffffffffffffffff82111715614546576145456146b4565b5b80604052505050565b600061455a8261446a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561458d5761458c6145c9565b5b600182019050919050565b60006145a38261446a565b91506145ae8361446a565b9250826145be576145bd6145f8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f5041555341424c453a2050617573656400000000000000000000000000000000600082015250565b7f4d494e543a2043757272656e7420636f756e742065786365656473206d61786960008201527f6d756d20656c656d656e7420636f756e742e0000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d494e543a20506c6561736520676f20746f20746865204f70656e736561207460008201527f6f206275792043727970746f204174686c657465732e00000000000000000000602082015250565b7f57495448445241573a205472616e73666572206661696c65642e000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d494e543a2054686f73652069647320616c726561647920686176652062656560008201527f6e207573656420666f72206f7468657220637573746f6d657273000000000000602082015250565b7f57495448445241573a204e6f2062616c616e636520696e20636f6e7472616374600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d494e543a2043757272656e7420636f756e742065786365656473206d61786960008201527f6d756d206d696e7420636f756e742e0000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d494e543a2043757272656e742076616c75652069732062656c6f772074686560008201527f2073616c6573207072696365206f662043727970746f204174686c6574657300602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f53414c45533a2053616c6520656e640000000000000000000000000000000000600082015250565b614f57816143ee565b8114614f6257600080fd5b50565b614f6e81614400565b8114614f7957600080fd5b50565b614f8581614412565b8114614f9057600080fd5b50565b614f9c8161441e565b8114614fa757600080fd5b50565b614fb38161446a565b8114614fbe57600080fd5b5056fea264697066735822122072bf636dd45da4f51770f795f826686d28b3df94b9a0ce5ef01752caf450d26b64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d64336362385473765057464a7579794b44334b596a6e375368374874387133435576735a74507a376e3951772f4341686f6f70657200000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063bfdf9b6e116100a0578063e985e9c51161006f578063e985e9c514610705578063eef6250814610742578063f0ea4bfc1461077f578063f2fde38b146107aa578063f8fb3366146107d3576101f9565b8063bfdf9b6e14610656578063c87b56dd14610681578063caccd7f7146106be578063de836ebd146106e9576101f9565b806395d89b41116100dc57806395d89b41146105ae578063a22cb465146105d9578063a769cba914610602578063b88d4fde1461062d576101f9565b8063715018a6146105375780637501f7411461054e578063853828b6146105795780638da5cb5b14610583576101f9565b80632f745c591161019057806355dd574c1161015f57806355dd574c1461045257806355f804b3146104695780635c975abb146104925780636352211e146104bd57806370a08231146104fa576101f9565b80632f745c591461038657806342842e0e146103c357806342966c68146103ec5780634f6ccce714610415576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806318160ddd146102f557806323b872dd1461032057806326a49e3714610349576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906135c8565b6107ea565b6040516102329190613d67565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d919061359b565b6107fc565b005b34801561027057600080fd5b5061027961089e565b6040516102869190613d82565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b1919061366b565b610930565b6040516102c39190613cc3565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee919061355b565b6109b5565b005b34801561030157600080fd5b5061030a610acd565b6040516103179190614184565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190613445565b610ada565b005b34801561035557600080fd5b50610370600480360381019061036b919061366b565b610b3a565b60405161037d9190614184565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a8919061355b565b610b5d565b6040516103ba9190614184565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190613445565b610c02565b005b3480156103f857600080fd5b50610413600480360381019061040e919061366b565b610c22565b005b34801561042157600080fd5b5061043c6004803603810190610437919061366b565b610c7e565b6040516104499190614184565b60405180910390f35b34801561045e57600080fd5b50610467610cef565b005b34801561047557600080fd5b50610490600480360381019061048b9190613622565b610d7e565b005b34801561049e57600080fd5b506104a7610e14565b6040516104b49190613d67565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df919061366b565b610e2b565b6040516104f19190613cc3565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c919061337c565b610edd565b60405161052e9190614184565b60405180910390f35b34801561054357600080fd5b5061054c610f95565b005b34801561055a57600080fd5b5061056361101d565b6040516105709190614184565b60405180910390f35b610581611027565b005b34801561058f57600080fd5b5061059861114f565b6040516105a59190613cc3565b60405180910390f35b3480156105ba57600080fd5b506105c3611179565b6040516105d09190613d82565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb919061351b565b61120b565b005b34801561060e57600080fd5b5061061761138c565b6040516106249190613d45565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190613498565b6113e4565b005b34801561066257600080fd5b5061066b611446565b6040516106789190614184565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a3919061366b565b611450565b6040516106b59190613d82565b60405180910390f35b3480156106ca57600080fd5b506106d36114f7565b6040516106e09190613cc3565b60405180910390f35b61070360048036038101906106fe91906133a9565b61150f565b005b34801561071157600080fd5b5061072c60048036038101906107279190613405565b611803565b6040516107399190613d67565b60405180910390f35b34801561074e57600080fd5b506107696004803603810190610764919061337c565b611897565b6040516107769190613d45565b60405180910390f35b34801561078b57600080fd5b50610794611945565b6040516107a19190614184565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc919061337c565b61194d565b005b3480156107df57600080fd5b506107e8611a45565b005b60006107f582611ad4565b9050919050565b610804611b4e565b73ffffffffffffffffffffffffffffffffffffffff1661082261114f565b73ffffffffffffffffffffffffffffffffffffffff1614610878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086f90614004565b60405180910390fd5b6001151581151514156108925761088d611b56565b61089b565b61089a611bf9565b5b50565b6060600080546108ad906144ec565b80601f01602080910402602001604051908101604052809291908181526020018280546108d9906144ec565b80156109265780601f106108fb57610100808354040283529160200191610926565b820191906000526020600020905b81548152906001019060200180831161090957829003601f168201915b5050505050905090565b600061093b82611c9b565b61097a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097190613fe4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c082610e2b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a28906140a4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a50611b4e565b73ffffffffffffffffffffffffffffffffffffffff161480610a7f5750610a7e81610a79611b4e565b611803565b5b610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab590613f64565b60405180910390fd5b610ac88383611d07565b505050565b6000600880549050905090565b610aeb610ae5611b4e565b82611dc0565b610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b21906140e4565b60405180910390fd5b610b35838383611e9e565b505050565b6000610b568266b1a2bc2ec500006120fa90919063ffffffff16565b9050919050565b6000610b6883610edd565b8210610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090613de4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c1d838383604051806020016040528060008152506113e4565b505050565b610c33610c2d611b4e565b82611dc0565b610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6990614144565b60405180910390fd5b610c7b81612110565b50565b6000610c88610acd565b8210610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc090614104565b60405180910390fd5b60088281548110610cdd57610cdc614685565b5b90600052602060002001549050919050565b610cf7611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610d1561114f565b73ffffffffffffffffffffffffffffffffffffffff1614610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290614004565b60405180910390fd5b6101f4600e819055506005600f81905550565b610d86611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610da461114f565b73ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190614004565b60405180910390fd5b8060109080519060200190610e109291906130dd565b5050565b6000600a60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90613fa4565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590613f84565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f9d611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610fbb61114f565b73ffffffffffffffffffffffffffffffffffffffff1614611011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100890614004565b60405180910390fd5b61101b6000612221565b565b6000600f54905090565b61102f611b4e565b73ffffffffffffffffffffffffffffffffffffffff1661104d61114f565b73ffffffffffffffffffffffffffffffffffffffff16146110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90614004565b60405180910390fd5b6000479050600081116110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e290614084565b60405180910390fd5b61112f73a7482c9c5926e88d85804a969c383730ce10063961112a606461111c6003866120fa90919063ffffffff16565b6122e790919063ffffffff16565b6122fd565b61114c7281ad52ff7eb8b5165777aa6adcf7d80cbf647d476122fd565b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611188906144ec565b80601f01602080910402602001604051908101604052809291908181526020018280546111b4906144ec565b80156112015780601f106111d657610100808354040283529160200191611201565b820191906000526020600020905b8154815290600101906020018083116111e457829003601f168201915b5050505050905090565b611213611b4e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890613f04565b60405180910390fd5b806005600061128e611b4e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133b611b4e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113809190613d67565b60405180910390a35050565b6060600d8054806020026020016040519081016040528092919081815260200182805480156113da57602002820191906000526020600020905b8154815260200190600101908083116113c6575b5050505050905090565b6113f56113ef611b4e565b83611dc0565b611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b906140e4565b60405180910390fd5b611440848484846123ae565b50505050565b6000600e54905090565b606061145b82611c9b565b61149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190614044565b60405180910390fd5b60006114a461240a565b905060008151116114c457604051806020016040528060008152506114ef565b806114ce8461249c565b6040516020016114df929190613c7f565b6040516020818303038152906040525b915050919050565b73a7482c9c5926e88d85804a969c383730ce10063981565b600e5461151a6125fd565b111561155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290614164565b60405180910390fd5b61156361114f565b73ffffffffffffffffffffffffffffffffffffffff16611581611b4e565b73ffffffffffffffffffffffffffffffffffffffff16146115e5576115a4610e14565b156115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db90613e24565b60405180910390fd5b5b60006115ef6125fd565b9050600e5482518261160191906142d9565b1115611642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163990613e44565b60405180910390fd5b600e54811115611687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167e90613ea4565b60405180910390fd5b600f54825111156116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c4906140c4565b60405180910390fd5b6116d78251610b3a565b341015611719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171090614124565b60405180910390fd5b60005b82518110156117b95760001515600c60008584815181106117405761173f614685565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff161515146117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179d90614064565b60405180910390fd5b80806117b19061454f565b91505061171c565b5060005b82518110156117fd576117ea848483815181106117dd576117dc614685565b5b602002602001015161260e565b80806117f59061454f565b9150506117bd565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060006118a483610edd565b905060008167ffffffffffffffff8111156118c2576118c16146b4565b5b6040519080825280602002602001820160405280156118f05781602001602082028036833780820191505090505b50905060005b8281101561193a576119088582610b5d565b82828151811061191b5761191a614685565b5b60200260200101818152505080806119329061454f565b9150506118f6565b508092505050919050565b600047905090565b611955611b4e565b73ffffffffffffffffffffffffffffffffffffffff1661197361114f565b73ffffffffffffffffffffffffffffffffffffffff16146119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c090614004565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3090613e64565b60405180910390fd5b611a4281612221565b50565b611a4d611b4e565b73ffffffffffffffffffffffffffffffffffffffff16611a6b61114f565b73ffffffffffffffffffffffffffffffffffffffff1614611ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab890614004565b60405180910390fd5b612724600e819055506014600f81905550565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b475750611b46826126b3565b5b9050919050565b600033905090565b611b5e610e14565b15611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9590613f44565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611be2611b4e565b604051611bef9190613cc3565b60405180910390a1565b611c01610e14565b611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3790613dc4565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611c84611b4e565b604051611c919190613cc3565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d7a83610e2b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dcb82611c9b565b611e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0190613f24565b60405180910390fd5b6000611e1583610e2b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e8457508373ffffffffffffffffffffffffffffffffffffffff16611e6c84610930565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e955750611e948185611803565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ebe82610e2b565b73ffffffffffffffffffffffffffffffffffffffff1614611f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0b90614024565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7b90613ee4565b60405180910390fd5b611f8f838383612795565b611f9a600082611d07565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fea91906143ba565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461204191906142d9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836121089190614360565b905092915050565b600061211b82610e2b565b905061212981600084612795565b612134600083611d07565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218491906143ba565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836122f5919061432f565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161232390613cae565b60006040518083038185875af1925050503d8060008114612360576040519150601f19603f3d011682016040523d82523d6000602084013e612365565b606091505b50509050806123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a090613ec4565b60405180910390fd5b505050565b6123b9848484611e9e565b6123c5848484846127a5565b612404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fb90613e04565b60405180910390fd5b50505050565b606060108054612419906144ec565b80601f0160208091040260200160405190810160405280929190818152602001828054612445906144ec565b80156124925780601f1061246757610100808354040283529160200191612492565b820191906000526020600020905b81548152906001019060200180831161247557829003601f168201915b5050505050905090565b606060008214156124e4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125f8565b600082905060005b600082146125165780806124ff9061454f565b915050600a8261250f919061432f565b91506124ec565b60008167ffffffffffffffff811115612532576125316146b4565b5b6040519080825280601f01601f1916602001820160405280156125645781602001600182028036833780820191505090505b5090505b600085146125f15760018261257d91906143ba565b9150600a8561258c9190614598565b603061259891906142d9565b60f81b8183815181106125ae576125ad614685565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125ea919061432f565b9450612568565b8093505050505b919050565b6000612609600b61293c565b905090565b612618600b61294a565b6126228282612960565b6001600c600083815260200190815260200160002060006101000a81548160ff021916908315150217905550600d819080600181540180825580915050600190039060005260206000200160009091909190915055807fa5cd68f916ffd1e340e44f6cf04dd86bd827e78c04fecf1cfd5cce08608d762e836040516126a79190613cde565b60405180910390a25050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061277e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061278e575061278d8261297e565b5b9050919050565b6127a08383836129e8565b505050565b60006127c68473ffffffffffffffffffffffffffffffffffffffff16612a82565b1561292f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127ef611b4e565b8786866040518563ffffffff1660e01b81526004016128119493929190613cf9565b602060405180830381600087803b15801561282b57600080fd5b505af192505050801561285c57506040513d601f19601f8201168201806040525081019061285991906135f5565b60015b6128df573d806000811461288c576040519150601f19603f3d011682016040523d82523d6000602084013e612891565b606091505b506000815114156128d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ce90613e04565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612934565b600190505b949350505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b61297a828260405180602001604052806000815250612a95565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6129f3838383612af0565b6129fb61114f565b73ffffffffffffffffffffffffffffffffffffffff16612a19611b4e565b73ffffffffffffffffffffffffffffffffffffffff1614612a7d57612a3c610e14565b15612a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7390613da4565b60405180910390fd5b5b505050565b600080823b905060008111915050919050565b612a9f8383612c04565b612aac60008484846127a5565b612aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae290613e04565b60405180910390fd5b505050565b612afb838383612dd2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b3e57612b3981612dd7565b612b7d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b7c57612b7b8382612e20565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bc057612bbb81612f8d565b612bff565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612bfe57612bfd828261305e565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6b90613fc4565b60405180910390fd5b612c7d81611c9b565b15612cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb490613e84565b60405180910390fd5b612cc960008383612795565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d1991906142d9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612e2d84610edd565b612e3791906143ba565b9050600060076000848152602001908152602001600020549050818114612f1c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612fa191906143ba565b9050600060096000848152602001908152602001600020549050600060088381548110612fd157612fd0614685565b5b906000526020600020015490508060088381548110612ff357612ff2614685565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061304257613041614656565b5b6001900381819060005260206000200160009055905550505050565b600061306983610edd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546130e9906144ec565b90600052602060002090601f01602090048101928261310b5760008555613152565b82601f1061312457805160ff1916838001178555613152565b82800160010185558215613152579182015b82811115613151578251825591602001919060010190613136565b5b50905061315f9190613163565b5090565b5b8082111561317c576000816000905550600101613164565b5090565b600061319361318e846141c4565b61419f565b905080838252602082019050828560208602820111156131b6576131b56146e8565b5b60005b858110156131e657816131cc8882613367565b8452602084019350602083019250506001810190506131b9565b5050509392505050565b60006132036131fe846141f0565b61419f565b90508281526020810184848401111561321f5761321e6146ed565b5b61322a8482856144aa565b509392505050565b600061324561324084614221565b61419f565b905082815260208101848484011115613261576132606146ed565b5b61326c8482856144aa565b509392505050565b60008135905061328381614f4e565b92915050565b60008135905061329881614f65565b92915050565b600082601f8301126132b3576132b26146e3565b5b81356132c3848260208601613180565b91505092915050565b6000813590506132db81614f7c565b92915050565b6000813590506132f081614f93565b92915050565b60008151905061330581614f93565b92915050565b600082601f8301126133205761331f6146e3565b5b81356133308482602086016131f0565b91505092915050565b600082601f83011261334e5761334d6146e3565b5b813561335e848260208601613232565b91505092915050565b60008135905061337681614faa565b92915050565b600060208284031215613392576133916146f7565b5b60006133a084828501613274565b91505092915050565b600080604083850312156133c0576133bf6146f7565b5b60006133ce85828601613289565b925050602083013567ffffffffffffffff8111156133ef576133ee6146f2565b5b6133fb8582860161329e565b9150509250929050565b6000806040838503121561341c5761341b6146f7565b5b600061342a85828601613274565b925050602061343b85828601613274565b9150509250929050565b60008060006060848603121561345e5761345d6146f7565b5b600061346c86828701613274565b935050602061347d86828701613274565b925050604061348e86828701613367565b9150509250925092565b600080600080608085870312156134b2576134b16146f7565b5b60006134c087828801613274565b94505060206134d187828801613274565b93505060406134e287828801613367565b925050606085013567ffffffffffffffff811115613503576135026146f2565b5b61350f8782880161330b565b91505092959194509250565b60008060408385031215613532576135316146f7565b5b600061354085828601613274565b9250506020613551858286016132cc565b9150509250929050565b60008060408385031215613572576135716146f7565b5b600061358085828601613274565b925050602061359185828601613367565b9150509250929050565b6000602082840312156135b1576135b06146f7565b5b60006135bf848285016132cc565b91505092915050565b6000602082840312156135de576135dd6146f7565b5b60006135ec848285016132e1565b91505092915050565b60006020828403121561360b5761360a6146f7565b5b6000613619848285016132f6565b91505092915050565b600060208284031215613638576136376146f7565b5b600082013567ffffffffffffffff811115613656576136556146f2565b5b61366284828501613339565b91505092915050565b600060208284031215613681576136806146f7565b5b600061368f84828501613367565b91505092915050565b60006136a48383613c61565b60208301905092915050565b6136b981614474565b82525050565b6136c8816143ee565b82525050565b60006136d982614262565b6136e38185614290565b93506136ee83614252565b8060005b8381101561371f5781516137068882613698565b975061371183614283565b9250506001810190506136f2565b5085935050505092915050565b61373581614412565b82525050565b60006137468261426d565b61375081856142a1565b93506137608185602086016144b9565b613769816146fc565b840191505092915050565b600061377f82614278565b61378981856142bd565b93506137998185602086016144b9565b6137a2816146fc565b840191505092915050565b60006137b882614278565b6137c281856142ce565b93506137d28185602086016144b9565b80840191505092915050565b60006137eb602b836142bd565b91506137f68261470d565b604082019050919050565b600061380e6014836142bd565b91506138198261475c565b602082019050919050565b6000613831602b836142bd565b915061383c82614785565b604082019050919050565b60006138546032836142bd565b915061385f826147d4565b604082019050919050565b60006138776010836142bd565b915061388282614823565b602082019050919050565b600061389a6032836142bd565b91506138a58261484c565b604082019050919050565b60006138bd6026836142bd565b91506138c88261489b565b604082019050919050565b60006138e0601c836142bd565b91506138eb826148ea565b602082019050919050565b60006139036036836142bd565b915061390e82614913565b604082019050919050565b6000613926601a836142bd565b915061393182614962565b602082019050919050565b60006139496024836142bd565b91506139548261498b565b604082019050919050565b600061396c6019836142bd565b9150613977826149da565b602082019050919050565b600061398f602c836142bd565b915061399a82614a03565b604082019050919050565b60006139b26010836142bd565b91506139bd82614a52565b602082019050919050565b60006139d56038836142bd565b91506139e082614a7b565b604082019050919050565b60006139f8602a836142bd565b9150613a0382614aca565b604082019050919050565b6000613a1b6029836142bd565b9150613a2682614b19565b604082019050919050565b6000613a3e6020836142bd565b9150613a4982614b68565b602082019050919050565b6000613a61602c836142bd565b9150613a6c82614b91565b604082019050919050565b6000613a846005836142ce565b9150613a8f82614be0565b600582019050919050565b6000613aa76020836142bd565b9150613ab282614c09565b602082019050919050565b6000613aca6029836142bd565b9150613ad582614c32565b604082019050919050565b6000613aed602f836142bd565b9150613af882614c81565b604082019050919050565b6000613b10603a836142bd565b9150613b1b82614cd0565b604082019050919050565b6000613b336020836142bd565b9150613b3e82614d1f565b602082019050919050565b6000613b566021836142bd565b9150613b6182614d48565b604082019050919050565b6000613b796000836142b2565b9150613b8482614d97565b600082019050919050565b6000613b9c602f836142bd565b9150613ba782614d9a565b604082019050919050565b6000613bbf6031836142bd565b9150613bca82614de9565b604082019050919050565b6000613be2602c836142bd565b9150613bed82614e38565b604082019050919050565b6000613c05603f836142bd565b9150613c1082614e87565b604082019050919050565b6000613c286030836142bd565b9150613c3382614ed6565b604082019050919050565b6000613c4b600f836142bd565b9150613c5682614f25565b602082019050919050565b613c6a8161446a565b82525050565b613c798161446a565b82525050565b6000613c8b82856137ad565b9150613c9782846137ad565b9150613ca282613a77565b91508190509392505050565b6000613cb982613b6c565b9150819050919050565b6000602082019050613cd860008301846136bf565b92915050565b6000602082019050613cf360008301846136b0565b92915050565b6000608082019050613d0e60008301876136bf565b613d1b60208301866136bf565b613d286040830185613c70565b8181036060830152613d3a818461373b565b905095945050505050565b60006020820190508181036000830152613d5f81846136ce565b905092915050565b6000602082019050613d7c600083018461372c565b92915050565b60006020820190508181036000830152613d9c8184613774565b905092915050565b60006020820190508181036000830152613dbd816137de565b9050919050565b60006020820190508181036000830152613ddd81613801565b9050919050565b60006020820190508181036000830152613dfd81613824565b9050919050565b60006020820190508181036000830152613e1d81613847565b9050919050565b60006020820190508181036000830152613e3d8161386a565b9050919050565b60006020820190508181036000830152613e5d8161388d565b9050919050565b60006020820190508181036000830152613e7d816138b0565b9050919050565b60006020820190508181036000830152613e9d816138d3565b9050919050565b60006020820190508181036000830152613ebd816138f6565b9050919050565b60006020820190508181036000830152613edd81613919565b9050919050565b60006020820190508181036000830152613efd8161393c565b9050919050565b60006020820190508181036000830152613f1d8161395f565b9050919050565b60006020820190508181036000830152613f3d81613982565b9050919050565b60006020820190508181036000830152613f5d816139a5565b9050919050565b60006020820190508181036000830152613f7d816139c8565b9050919050565b60006020820190508181036000830152613f9d816139eb565b9050919050565b60006020820190508181036000830152613fbd81613a0e565b9050919050565b60006020820190508181036000830152613fdd81613a31565b9050919050565b60006020820190508181036000830152613ffd81613a54565b9050919050565b6000602082019050818103600083015261401d81613a9a565b9050919050565b6000602082019050818103600083015261403d81613abd565b9050919050565b6000602082019050818103600083015261405d81613ae0565b9050919050565b6000602082019050818103600083015261407d81613b03565b9050919050565b6000602082019050818103600083015261409d81613b26565b9050919050565b600060208201905081810360008301526140bd81613b49565b9050919050565b600060208201905081810360008301526140dd81613b8f565b9050919050565b600060208201905081810360008301526140fd81613bb2565b9050919050565b6000602082019050818103600083015261411d81613bd5565b9050919050565b6000602082019050818103600083015261413d81613bf8565b9050919050565b6000602082019050818103600083015261415d81613c1b565b9050919050565b6000602082019050818103600083015261417d81613c3e565b9050919050565b60006020820190506141996000830184613c70565b92915050565b60006141a96141ba565b90506141b5828261451e565b919050565b6000604051905090565b600067ffffffffffffffff8211156141df576141de6146b4565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561420b5761420a6146b4565b5b614214826146fc565b9050602081019050919050565b600067ffffffffffffffff82111561423c5761423b6146b4565b5b614245826146fc565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142e48261446a565b91506142ef8361446a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614324576143236145c9565b5b828201905092915050565b600061433a8261446a565b91506143458361446a565b925082614355576143546145f8565b5b828204905092915050565b600061436b8261446a565b91506143768361446a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143af576143ae6145c9565b5b828202905092915050565b60006143c58261446a565b91506143d08361446a565b9250828210156143e3576143e26145c9565b5b828203905092915050565b60006143f98261444a565b9050919050565b600061440b8261444a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061447f82614486565b9050919050565b600061449182614498565b9050919050565b60006144a38261444a565b9050919050565b82818337600083830152505050565b60005b838110156144d75780820151818401526020810190506144bc565b838111156144e6576000848401525b50505050565b6000600282049050600182168061450457607f821691505b6020821081141561451857614517614627565b5b50919050565b614527826146fc565b810181811067ffffffffffffffff82111715614546576145456146b4565b5b80604052505050565b600061455a8261446a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561458d5761458c6145c9565b5b600182019050919050565b60006145a38261446a565b91506145ae8361446a565b9250826145be576145bd6145f8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f5041555341424c453a2050617573656400000000000000000000000000000000600082015250565b7f4d494e543a2043757272656e7420636f756e742065786365656473206d61786960008201527f6d756d20656c656d656e7420636f756e742e0000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d494e543a20506c6561736520676f20746f20746865204f70656e736561207460008201527f6f206275792043727970746f204174686c657465732e00000000000000000000602082015250565b7f57495448445241573a205472616e73666572206661696c65642e000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d494e543a2054686f73652069647320616c726561647920686176652062656560008201527f6e207573656420666f72206f7468657220637573746f6d657273000000000000602082015250565b7f57495448445241573a204e6f2062616c616e636520696e20636f6e7472616374600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d494e543a2043757272656e7420636f756e742065786365656473206d61786960008201527f6d756d206d696e7420636f756e742e0000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d494e543a2043757272656e742076616c75652069732062656c6f772074686560008201527f2073616c6573207072696365206f662043727970746f204174686c6574657300602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f53414c45533a2053616c6520656e640000000000000000000000000000000000600082015250565b614f57816143ee565b8114614f6257600080fd5b50565b614f6e81614400565b8114614f7957600080fd5b50565b614f8581614412565b8114614f9057600080fd5b50565b614f9c8161441e565b8114614fa757600080fd5b50565b614fb38161446a565b8114614fbe57600080fd5b5056fea264697066735822122072bf636dd45da4f51770f795f826686d28b3df94b9a0ce5ef01752caf450d26b64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d64336362385473765057464a7579794b44334b596a6e375368374874387133435576735a74507a376e3951772f4341686f6f70657200000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/Qmd3cb8TsvPWFJuyyKD3KYjn7Sh7Ht8q3CUvsZtPz7n9Qw/CAhooper

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d64336362385473765057464a7579794b44334b596a6e375368374874
Arg [4] : 387133435576735a74507a376e3951772f4341686f6f70657200000000000000


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

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