ETH Price: $2,981.41 (+2.10%)
Gas: 1 Gwei

Token

SpaceShibes (SHIBE)
 

Overview

Max Total Supply

2,200 SHIBE

Holders

376

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 SHIBE
0xb30ab816827527d312bc25ed9a86bd9b9d9530e7
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Space Shibes are programatically generated 50x50 GIFs and built as ERC-721 tokens. They can have over 20 combined properties, 8 positions, different expressions, colors, types, 36 backgrounds and over 100 different accessories.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SpaceShibesInvasion

Compiler Version
v0.7.3+commit.9bfce1f6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 2: SpaceShibes.sol

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File @openzeppelin/contracts/introspection/[email protected]


pragma solidity >=0.6.0 <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 @openzeppelin/contracts/token/ERC721/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC721/[email protected]


pragma solidity >=0.6.2 <0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC721/[email protected]


pragma solidity >=0.6.2 <0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC721/[email protected]


pragma solidity >=0.6.0 <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 @openzeppelin/contracts/introspection/[email protected]


pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}


// File @openzeppelin/contracts/math/[email protected]


pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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) {
        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) {
        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) {
        // 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) {
        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) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity >=0.6.2 <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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}


// File @openzeppelin/contracts/token/ERC721/[email protected]


pragma solidity >=0.6.0 <0.8.0;











/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    // Base URI
    string public _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @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 _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

    /**
     * @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 _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @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 || ERC721.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 _tokenOwners.contains(tokenId);
    }

    /**
     * @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 || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(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); // internal owner

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

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

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(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"); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

    function _approve(address to, uint256 tokenId) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner
    }

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


pragma solidity ^0.7.0;

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = msg.sender;
        }
        return sender;
    }
}

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}


contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contractsa that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public pure returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });
        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            msg.sender,
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

import "IERC20.sol" ; 


contract SpaceShibesInvasion is ERC721, ContextMixin, NativeMetaTransaction {

    constructor (string memory name_, string memory symbol_, IERC20 PRDX) ERC721(name_, symbol_) {
        _initializeEIP712(name_);
        PRDX_token = PRDX ; 
        owner = msg.sender ; 
    }
    
    address public owner ; 
    address public OpenSeaRegistry_address  = 0x207Fa8Df3a17D96Ca7EA4f2893fcdCb78a304101; 
    
    uint32 public max_SHIBES_ever = 2200 ; 
    
    uint256 public upgrade1_PRDX_cost = 500e18 ; 
    uint256 public upgrade2_PRDX_cost = 1000e18 ; 
    uint256 public rename_PRDX_cost = 250e18 ; 
  
    IERC20 public PRDX_token ; 

    //hash of composite NFT image
    uint256 public composite_hash = 0x01 ; 
    
    uint16 public stage1 = 500 ; 
    uint16 public stage2 = 1300 ;
    uint16 public stage3 = 1700 ; 
    uint16 public stage4 = 1950 ; 

    bool public upgrading_enabled = false ; 
    bool public minting_enabled = true ; 
    
    mapping(uint256 => bool) public genesis; 
  
    event NFTRenamed(address owner, uint256 NFT_ID, string new_name);
    event NFTUpgraded(address owner, uint256 NFT_ID, string attribute);
    
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(msg.sender == owner, "Ownable: caller is not the owner");
        _;
    }
    
    function setBaseTokenURI(string calldata new_baseURI) public onlyOwner returns (bool success) {
        _baseURI = new_baseURI ; 
  
        success = true ; 
    }
    
    /**
     * @dev Set SEPA Token contract address
     * @param _addr Address of SEPA Token contract
     */
    function set_PRDX_contract(IERC20 _addr) external onlyOwner {
        PRDX_token = _addr ;
    }
    
    /**
     * @dev Enable upgrading of NFT's (see upgrade_NFT & rename_NFT)
     */ 
    function enable_upgrading() external onlyOwner {
        upgrading_enabled = true ; 
    }
    
    /**
     * @dev Disable minting (minting used for initial genesis creation)
     */
    function disable_minting() external onlyOwner {
        minting_enabled = false ; 
    }
    

    function set_registry_address(address _addr) external onlyOwner {
        OpenSeaRegistry_address = _addr ; 
    }
    
    receive() external payable {
        buy_NFT(1, address(0)) ; 
    }

    function buy_NFT(uint256 _amount, address payable ref_addr) public payable {
        require(totalSupply() + _amount <= max_SHIBES_ever, "All Shibes have been minted! :(") ;
        require(msg.sender != ref_addr, "Cannot ref yourself! ;)") ; 
        require(_amount <= 20, "Hey hey, slow down there! Leave some for the rest of us :D") ; 
      
        uint256 total_cost = 0;

        for (uint256 i = 0; i < _amount; i++) {
            if ((totalSupply() >= 0) && (totalSupply() < stage1)) {
                _safeMint(msg.sender, totalSupply());
                total_cost += 0.05 ether ; 
            } else {
              
            if ((totalSupply() >= stage1) && (totalSupply() < stage2)) {
                _safeMint(msg.sender, totalSupply());
                total_cost += 0.1 ether ; 
            } else {
              
            if ((totalSupply() >= stage2) && (totalSupply() < stage3)) {
                _safeMint(msg.sender, totalSupply());
                total_cost += 0.15 ether ;
            } else {
                
            if ((totalSupply() >= stage3) && (totalSupply() < stage4)) {
                _safeMint(msg.sender, totalSupply());
                total_cost += 0.2 ether ; 
            } else {
              
            if ((totalSupply() >= stage4)) {
                _safeMint(msg.sender, totalSupply());
                total_cost += 0.4 ether ; 
            }
              
        }}}}}
    
        
        if (ref_addr != address(0)) { //ref link used
            ref_addr.transfer(total_cost/40) ; 
            require(msg.value >= total_cost * 39 / 40, "Not enough funds to buy Shibes :'(") ; 

        } else { //no reflink used... shame!
            require(msg.value >= total_cost, "Not enough funds to buy Shibes :(") ; 
        }
        
    }
      
      function upgrade_NFT(uint256 tokenID, string calldata attribute) external {
          require(tokenID >= 106, "Cannot upgrade genesis!") ; 
          require(ownerOf(tokenID) == msg.sender, "Sender does not own NFT") ; 
          require(PRDX_token.transferFrom(msg.sender, address(this), upgrade1_PRDX_cost), "PRDX transfer failed! :(") ; 
          require(upgrading_enabled, "Oh hello there, nerd! Upgrading is not available... yet!") ; 
          
          emit NFTUpgraded(msg.sender, tokenID, attribute) ; 
      }
      
      function rename_NFT(uint256 tokenID, string calldata new_name) external {
          require(PRDX_token.transferFrom(msg.sender, address(this), rename_PRDX_cost), "PRDX transfer failed! :(") ; 
          require(ownerOf(tokenID) == msg.sender, "You must own the NFT to rename it!");
          require(upgrading_enabled, "Oh hello there, nerd! Upgrading is not available... yet!") ; 

          
          emit NFTRenamed(msg.sender, tokenID, new_name);
      }
      
      function withdraw_token(address payable _receiver, IERC20 contract_address) external onlyOwner {
          contract_address.transfer(_receiver, contract_address.balanceOf(address(this)));
      }
      
      function withdraw_ETH(address payable _receiver) external onlyOwner {
        _receiver.transfer(address(this).balance) ;

      }
      
      function set_upgrade_costs(uint256 _upgrade1_costs, uint256 _upgrade_2_costs, uint256 _rename_costs) external onlyOwner {
          upgrade1_PRDX_cost = _upgrade1_costs ; 
          upgrade2_PRDX_cost = _upgrade_2_costs ; 
          rename_PRDX_cost = _rename_costs ; 
      }    

    
    function mint(address to, uint256 tokenId)
        public onlyOwner
    {
        require(minting_enabled, "Cannot mint more") ; 
        _safeMint(to, tokenId);
    }
    
    function bulkMint(address[] calldata to, uint256[] calldata tokenID, uint256 _len) external onlyOwner {
        for (uint256 i; i < _len; i++) {
            mint(to[i], tokenID[i]) ; 
        }
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender()
        internal
        override
        view
        returns (address payable sender)
    {
        return ContextMixin.msgSender();
    }

    /**
    * As another option for supporting trading without requiring meta transactions, override isApprovedForAll to whitelist OpenSea proxy accounts
    */
    function isApprovedForAll(
        address _owner,
        address _operator
    ) public override view returns (bool isOperator) {
        if (_operator == address(OpenSeaRegistry_address)) {
            return true;
        }
        
        return ERC721.isApprovedForAll(_owner, _operator);
    }
}


File 1 of 2: IERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
  function totalSupply() external view returns (uint256);

  function balanceOf(address who) external view returns (uint256);

  function allowance(address owner, address spender)
    external view returns (uint256);

  function transfer(address to, uint256 value) external returns (bool);

  function approve(address spender, uint256 value)
    external returns (bool);

  function transferFrom(address from, address to, uint256 value)
    external returns (bool);

  event Transfer(
    address indexed from,
    address indexed to,
    uint256 value
  );

  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"contract IERC20","name":"PRDX","type":"address"}],"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":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"NFT_ID","type":"uint256"},{"indexed":false,"internalType":"string","name":"new_name","type":"string"}],"name":"NFTRenamed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"NFT_ID","type":"uint256"},{"indexed":false,"internalType":"string","name":"attribute","type":"string"}],"name":"NFTUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OpenSeaRegistry_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRDX_token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"tokenID","type":"uint256[]"},{"internalType":"uint256","name":"_len","type":"uint256"}],"name":"bulkMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address payable","name":"ref_addr","type":"address"}],"name":"buy_NFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"composite_hash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disable_minting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enable_upgrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"genesis","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","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":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_SHIBES_ever","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minting_enabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"tokenID","type":"uint256"},{"internalType":"string","name":"new_name","type":"string"}],"name":"rename_NFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rename_PRDX_cost","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":"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":"new_baseURI","type":"string"}],"name":"setBaseTokenURI","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_addr","type":"address"}],"name":"set_PRDX_contract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"set_registry_address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_upgrade1_costs","type":"uint256"},{"internalType":"uint256","name":"_upgrade_2_costs","type":"uint256"},{"internalType":"uint256","name":"_rename_costs","type":"uint256"}],"name":"set_upgrade_costs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stage1","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stage2","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stage3","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stage4","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[],"name":"upgrade1_PRDX_cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"upgrade2_PRDX_cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"string","name":"attribute","type":"string"}],"name":"upgrade_NFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"upgrading_enabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_receiver","type":"address"}],"name":"withdraw_ETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_receiver","type":"address"},{"internalType":"contract IERC20","name":"contract_address","type":"address"}],"name":"withdraw_token","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600a60006101000a81548160ff02191690831515021790555073207fa8df3a17d96ca7ea4f2893fcdcb78a304101600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610898600e60146101000a81548163ffffffff021916908363ffffffff160217905550681b1ae4d6e2ef500000600f55683635c9adc5dea00000601055680d8d726b7177a8000060115560016013556101f4601460006101000a81548161ffff021916908361ffff160217905550610514601460026101000a81548161ffff021916908361ffff1602179055506106a4601460046101000a81548161ffff021916908361ffff16021790555061079e601460066101000a81548161ffff021916908361ffff1602179055506000601460086101000a81548160ff0219169083151502179055506001601460096101000a81548160ff0219169083151502179055503480156200018257600080fd5b50604051620062f5380380620062f583398181016040526060811015620001a857600080fd5b8101908080516040519392919084640100000000821115620001c957600080fd5b83820191506020820185811115620001e057600080fd5b8251866001820283011164010000000082111715620001fe57600080fd5b8083526020830192505050908051906020019080838360005b838110156200023457808201518184015260208101905062000217565b50505050905090810190601f168015620002625780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200028657600080fd5b838201915060208201858111156200029d57600080fd5b8251866001820283011164010000000082111715620002bb57600080fd5b8083526020830192505050908051906020019080838360005b83811015620002f1578082015181840152602081019050620002d4565b50505050905090810190601f1680156200031f5780820380516001836020036101000a031916815260200191505b506040526020018051906020019092919050505082826200034d6301ffc9a760e01b6200046560201b60201c565b81600690805190602001906200036592919062000709565b5080600790805190602001906200037e92919062000709565b50620003976380ac58cd60e01b6200046560201b60201c565b620003af635b5e139f60e01b6200046560201b60201c565b620003c763780e9d6360e01b6200046560201b60201c565b5050620003da836200056e60201b60201c565b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050620007af565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000502576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600a60009054906101000a900460ff1615620005f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f616c726561647920696e6974656400000000000000000000000000000000000081525060200191505060405180910390fd5b62000603816200062160201b60201c565b6001600a60006101000a81548160ff02191690831515021790555050565b6040518060800160405280604f8152602001620062a6604f91398051906020012081805190602001206040518060400160405280600181526020017f3100000000000000000000000000000000000000000000000000000000000000815250805190602001203062000698620006fc60201b60201c565b60001b604051602001808681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019550505050505060405160208183030381529060405280519060200120600b8190555050565b6000804690508091505090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200074c57805160ff19168380011785556200077d565b828001600101855582156200077d579182015b828111156200077c5782518255916020019190600101906200075f565b5b5090506200078c919062000790565b5090565b5b80821115620007ab57600081600090555060010162000791565b5090565b615ae780620007bf6000396000f3fe6080604052600436106102e85760003560e01c80635783bf7f1161019057806399c1c0da116100dc578063bbcaed1511610095578063c87b56dd1161006f578063c87b56dd1461151c578063cd3882d5146115d0578063cff3d4d8146115ff578063e985e9c51461162e576102fb565b8063bbcaed1514611472578063bc9c1c011461149d578063be803396146114eb576102fb565b806399c1c0da146111485780639c18307a1461122d578063a1fcc3bc146112bd578063a22cb465146112ec578063b339e64f14611349578063b88d4fde14611360576102fb565b80636c0360eb116101495780638da5cb5b116101235780638da5cb5b1461100757806394bee9091461104857806394e0d3711461108957806395d89b41146110b8576102fb565b80636c0360eb14610e8257806370a0823114610f12578063743976a014610f77576102fb565b80635783bf7f14610cec57806361e9442414610d035780636352211e14610d2e5780636486f11114610d9357806369e150e014610e045780636b6bb39814610e55576102fb565b80631d9bf59b1161024f5780632d37efbd116102085780633408e470116101e25780633408e47014610b9c57806340c10f1914610bc757806342842e0e14610c225780634f6ccce714610c9d576102fb565b80632d37efbd14610a015780632f745c5914610a9157806330176e1314610b00576102fb565b80631d9bf59b146108375780631ef708ef1461087857806320379ee5146108a5578063206be28f146108d057806323b872dd146109215780632d0335ab1461099c576102fb565b8063095ea7b3116102a1578063095ea7b3146105325780630c53c51c1461058d5780630c9022f1146107025780630f7e597014610751578063155b8324146107e157806318160ddd1461080c576102fb565b8063013e390b1461030057806301ffc9a7146103515780630309aee4146103c157806306fdde031461041257806307820daa146104a2578063081812fc146104cd576102fb565b366102fb576102f9600160006116b5565b005b600080fd5b34801561030c57600080fd5b506103396004803603602081101561032357600080fd5b8101908080359060200190929190505050611b96565b60405180821515815260200191505060405180910390f35b34801561035d57600080fd5b506103a96004803603602081101561037457600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611bb6565b60405180821515815260200191505060405180910390f35b3480156103cd57600080fd5b50610410600480360360208110156103e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c1d565b005b34801561041e57600080fd5b50610427611d24565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561046757808201518184015260208101905061044c565b50505050905090810190601f1680156104945780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104ae57600080fd5b506104b7611dc6565b6040518082815260200191505060405180910390f35b3480156104d957600080fd5b50610506600480360360208110156104f057600080fd5b8101908080359060200190929190505050611dcc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561053e57600080fd5b5061058b6004803603604081101561055557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e67565b005b610687600480360360a08110156105a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156105e057600080fd5b8201836020820111156105f257600080fd5b8035906020019184600183028401116401000000008311171561061457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019092919080359060200190929190803560ff169060200190929190505050611fab565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106c75780820151818401526020810190506106ac565b50505050905090810190601f1680156106f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561070e57600080fd5b5061074f6004803603606081101561072557600080fd5b810190808035906020019092919080359060200190929190803590602001909291905050506123bf565b005b34801561075d57600080fd5b5061076661249c565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107a657808201518184015260208101905061078b565b50505050905090810190601f1680156107d35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156107ed57600080fd5b506107f66124d5565b6040518082815260200191505060405180910390f35b34801561081857600080fd5b506108216124db565b6040518082815260200191505060405180910390f35b34801561084357600080fd5b5061084c6124ec565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561088457600080fd5b5061088d612512565b60405180821515815260200191505060405180910390f35b3480156108b157600080fd5b506108ba612525565b6040518082815260200191505060405180910390f35b3480156108dc57600080fd5b5061091f600480360360208110156108f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061252f565b005b34801561092d57600080fd5b5061099a6004803603606081101561094457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612636565b005b3480156109a857600080fd5b506109eb600480360360208110156109bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506126ac565b6040518082815260200191505060405180910390f35b348015610a0d57600080fd5b50610a8f60048036036040811015610a2457600080fd5b810190808035906020019092919080359060200190640100000000811115610a4b57600080fd5b820183602082011115610a5d57600080fd5b80359060200191846001830284011164010000000083111715610a7f57600080fd5b90919293919293905050506126f5565b005b348015610a9d57600080fd5b50610aea60048036036040811015610ab457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612a68565b6040518082815260200191505060405180910390f35b348015610b0c57600080fd5b50610b8460048036036020811015610b2357600080fd5b8101908080359060200190640100000000811115610b4057600080fd5b820183602082011115610b5257600080fd5b80359060200191846001830284011164010000000083111715610b7457600080fd5b9091929391929390505050612ac3565b60405180821515815260200191505060405180910390f35b348015610ba857600080fd5b50610bb1612ba4565b6040518082815260200191505060405180910390f35b348015610bd357600080fd5b50610c2060048036036040811015610bea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612bb1565b005b348015610c2e57600080fd5b50610c9b60048036036060811015610c4557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612d04565b005b348015610ca957600080fd5b50610cd660048036036020811015610cc057600080fd5b8101908080359060200190929190505050612d24565b6040518082815260200191505060405180910390f35b348015610cf857600080fd5b50610d01612d47565b005b348015610d0f57600080fd5b50610d18612e27565b6040518082815260200191505060405180910390f35b348015610d3a57600080fd5b50610d6760048036036020811015610d5157600080fd5b8101908080359060200190929190505050612e2d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610d9f57600080fd5b50610e0260048036036040811015610db657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e64565b005b348015610e1057600080fd5b50610e5360048036036020811015610e2757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613079565b005b348015610e6157600080fd5b50610e6a613186565b60405180821515815260200191505060405180910390f35b348015610e8e57600080fd5b50610e97613199565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ed7578082015181840152602081019050610ebc565b50505050905090810190601f168015610f045780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610f1e57600080fd5b50610f6160048036036020811015610f3557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061323b565b6040518082815260200191505060405180910390f35b348015610f8357600080fd5b50610f8c613310565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610fcc578082015181840152602081019050610fb1565b50505050905090810190601f168015610ff95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561101357600080fd5b5061101c6133ae565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561105457600080fd5b5061105d6133d4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561109557600080fd5b5061109e6133fa565b604051808261ffff16815260200191505060405180910390f35b3480156110c457600080fd5b506110cd61340e565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561110d5780820151818401526020810190506110f2565b50505050905090810190601f16801561113a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561115457600080fd5b5061122b6004803603606081101561116b57600080fd5b810190808035906020019064010000000081111561118857600080fd5b82018360208201111561119a57600080fd5b803590602001918460208302840111640100000000831117156111bc57600080fd5b9091929391929390803590602001906401000000008111156111dd57600080fd5b8201836020820111156111ef57600080fd5b8035906020019184602083028401116401000000008311171561121157600080fd5b9091929391929390803590602001909291905050506134b0565b005b34801561123957600080fd5b506112bb6004803603604081101561125057600080fd5b81019080803590602001909291908035906020019064010000000081111561127757600080fd5b82018360208201111561128957600080fd5b803590602001918460018302840111640100000000831117156112ab57600080fd5b90919293919293905050506135d7565b005b3480156112c957600080fd5b506112d26138b6565b604051808261ffff16815260200191505060405180910390f35b3480156112f857600080fd5b506113476004803603604081101561130f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506138ca565b005b34801561135557600080fd5b5061135e613a80565b005b34801561136c57600080fd5b506114706004803603608081101561138357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001906401000000008111156113ea57600080fd5b8201836020820111156113fc57600080fd5b8035906020019184600183028401116401000000008311171561141e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613b60565b005b34801561147e57600080fd5b50611487613bd8565b6040518082815260200191505060405180910390f35b6114e9600480360360408110156114b357600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116b5565b005b3480156114f757600080fd5b50611500613bde565b604051808263ffffffff16815260200191505060405180910390f35b34801561152857600080fd5b506115556004803603602081101561153f57600080fd5b8101908080359060200190929190505050613bf4565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561159557808201518184015260208101905061157a565b50505050905090810190601f1680156115c25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156115dc57600080fd5b506115e5613ec5565b604051808261ffff16815260200191505060405180910390f35b34801561160b57600080fd5b50611614613ed9565b604051808261ffff16815260200191505060405180910390f35b34801561163a57600080fd5b5061169d6004803603604081101561165157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613eed565b60405180821515815260200191505060405180910390f35b600e60149054906101000a900463ffffffff1663ffffffff16826116d76124db565b01111561174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416c6c205368696265732068617665206265656e206d696e74656421203a280081525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f43616e6e6f742072656620796f757273656c6621203b2900000000000000000081525060200191505060405180910390fd5b6014821115611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180615a25603a913960400191505060405180910390fd5b6000805b83811015611a4657600061185e6124db565b101580156118865750601460009054906101000a900461ffff1661ffff166118846124db565b105b156118ad5761189c336118976124db565b613f61565b66b1a2bc2ec5000082019150611a39565b601460009054906101000a900461ffff1661ffff166118ca6124db565b101580156118f25750601460029054906101000a900461ffff1661ffff166118f06124db565b105b1561191a57611908336119036124db565b613f61565b67016345785d8a000082019150611a38565b601460029054906101000a900461ffff1661ffff166119376124db565b1015801561195f5750601460049054906101000a900461ffff1661ffff1661195d6124db565b105b1561198757611975336119706124db565b613f61565b670214e8348c4f000082019150611a37565b601460049054906101000a900461ffff1661ffff166119a46124db565b101580156119cc5750601460069054906101000a900461ffff1661ffff166119ca6124db565b105b156119f4576119e2336119dd6124db565b613f61565b6702c68af0bb14000082019150611a36565b601460069054906101000a900461ffff1661ffff16611a116124db565b10611a3557611a2733611a226124db565b613f61565b67058d15e176280000820191505b5b5b5b5b808060010191505061184c565b50600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611b37578173ffffffffffffffffffffffffffffffffffffffff166108fc60288381611a9f57fe5b049081150290604051600060405180830381858888f19350505050158015611acb573d6000803e3d6000fd5b5060286027820281611ad957fe5b04341015611b32576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157f86022913960400191505060405180910390fd5b611b91565b80341015611b90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061591c6021913960400191505060405180910390fd5b5b505050565b60156020528060005260406000206000915054906101000a900460ff1681565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ce0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611dbc5780601f10611d9157610100808354040283529160200191611dbc565b820191906000526020600020905b815481529060010190602001808311611d9f57829003601f168201915b5050505050905090565b60105481565b6000611dd782613f7f565b611e2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061595f602c913960400191505060405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000611e7282612e2d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615a046021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611f18613f9c565b73ffffffffffffffffffffffffffffffffffffffff161480611f475750611f4681611f41613f9c565b613fab565b5b611f9c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806158916038913960400191505060405180910390fd5b611fa6838361403f565b505050565b6060611fb5615630565b6040518060600160405280600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff16815260200187815250905061203487828787876140f8565b612089576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806159b46021913960400191505060405180910390fd5b6120dc6001600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461422c90919063ffffffff16565b600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b838110156121bb5780820151818401526020810190506121a0565b50505050905090810190601f1680156121e85780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a1600060603073ffffffffffffffffffffffffffffffffffffffff16888a6040516020018083805190602001908083835b6020831061224a5780518252602082019150602081019050602083039250612227565b6001836020036101000a0380198251168184511680821785525050505050509050018273ffffffffffffffffffffffffffffffffffffffff1660601b8152601401925050506040516020818303038152906040526040518082805190602001908083835b602083106122d157805182526020820191506020810190506020830392506122ae565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612333576040519150601f19603f3d011682016040523d82523d6000602084013e612338565b606091505b5091509150816123b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000081525060200191505060405180910390fd5b80935050505095945050505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612482576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b82600f819055508160108190555080601181905550505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b600f5481565b60006124e760026142b4565b905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601460089054906101000a900460ff1681565b6000600b54905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612647612641613f9c565b826142c9565b61269c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615a5f6031913960400191505060405180910390fd5b6126a78383836143bd565b505050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606a83101561276c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f43616e6e6f7420757067726164652067656e657369732100000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661278c84612e2d565b73ffffffffffffffffffffffffffffffffffffffff1614612815576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f53656e64657220646f6573206e6f74206f776e204e465400000000000000000081525060200191505060405180910390fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600f546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b1580156128c857600080fd5b505af11580156128dc573d6000803e3d6000fd5b505050506040513d60208110156128f257600080fd5b8101908080519060200190929190505050612975576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f50524458207472616e73666572206661696c656421203a28000000000000000081525060200191505060405180910390fd5b601460089054906101000a900460ff166129da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603881526020018061579c6038913960400191505060405180910390fd5b7f0f63ca4b73c1b208a99deedb03254ed8f8d8c8b1b164a53602130ee21399283c33848484604051808573ffffffffffffffffffffffffffffffffffffffff168152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509550505050505060405180910390a1505050565b6000612abb82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061460090919063ffffffff16565b905092915050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612b88576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b828260099190612b99929190615667565b506001905092915050565b6000804690508091505090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612c74576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601460099054906101000a900460ff16612cf6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f43616e6e6f74206d696e74206d6f72650000000000000000000000000000000081525060200191505060405180910390fd5b612d008282613f61565b5050565b612d1f83838360405180602001604052806000815250613b60565b505050565b600080612d3b83600261461a90919063ffffffff16565b50905080915050919050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612e0a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000601460096101000a81548160ff021916908315150217905550565b60115481565b6000612e5d826040518060600160405280602981526020016158f36029913960026146469092919063ffffffff16565b9050919050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612f27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb838373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612fab57600080fd5b505afa158015612fbf573d6000803e3d6000fd5b505050506040513d6020811015612fd557600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561303957600080fd5b505af115801561304d573d6000803e3d6000fd5b505050506040513d602081101561306357600080fd5b8101908080519060200190929190505050505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461313c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015613182573d6000803e3d6000fd5b5050565b601460099054906101000a900460ff1681565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156132315780601f1061320657610100808354040283529160200191613231565b820191906000526020600020905b81548152906001019060200180831161321457829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806158c9602a913960400191505060405180910390fd5b613309600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614665565b9050919050565b60098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156133a65780601f1061337b576101008083540402835291602001916133a6565b820191906000526020600020905b81548152906001019060200180831161338957829003601f168201915b505050505081565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601460049054906101000a900461ffff1681565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156134a65780601f1061347b576101008083540402835291602001916134a6565b820191906000526020600020905b81548152906001019060200180831161348957829003601f168201915b5050505050905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614613573576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b818110156135cf576135c286868381811061358d57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168585848181106135b657fe5b90506020020135612bb1565b8080600101915050613576565b505050505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33306011546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561368a57600080fd5b505af115801561369e573d6000803e3d6000fd5b505050506040513d60208110156136b457600080fd5b8101908080519060200190929190505050613737576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f50524458207472616e73666572206661696c656421203a28000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661375784612e2d565b73ffffffffffffffffffffffffffffffffffffffff16146137c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615a906022913960400191505060405180910390fd5b601460089054906101000a900460ff16613828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603881526020018061579c6038913960400191505060405180910390fd5b7f21574772a41feb022e278660fd5997bebdb0929d8d31e861320d2bfb4b14954433848484604051808573ffffffffffffffffffffffffffffffffffffffff168152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509550505050505060405180910390a1505050565b601460029054906101000a900461ffff1681565b6138d2613f9c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613973576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060056000613980613f9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16613a2d613f9c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614613b43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001601460086101000a81548160ff021916908315150217905550565b613b71613b6b613f9c565b836142c9565b613bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615a5f6031913960400191505060405180910390fd5b613bd28484848461467a565b50505050565b60135481565b600e60149054906101000a900463ffffffff1681565b6060613bff82613f7f565b613c54576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806159d5602f913960400191505060405180910390fd5b6060600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015613cfd5780601f10613cd257610100808354040283529160200191613cfd565b820191906000526020600020905b815481529060010190602001808311613ce057829003601f168201915b505050505090506060613d0e613199565b9050600081511415613d24578192505050613ec0565b600082511115613df55780826040516020018083805190602001908083835b60208310613d665780518252602082019150602081019050602083039250613d43565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310613db75780518252602082019150602081019050602083039250613d94565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050613ec0565b80613dff856146ec565b6040516020018083805190602001908083835b60208310613e355780518252602082019150602081019050602083039250613e12565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310613e865780518252602082019150602081019050602083039250613e63565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b601460069054906101000a900461ffff1681565b601460009054906101000a900461ffff1681565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613f4e5760019050613f5b565b613f588383613fab565b90505b92915050565b613f7b828260405180602001604052806000815250614833565b5050565b6000613f958260026148a490919063ffffffff16565b9050919050565b6000613fa66148be565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166140b283612e2d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141561417f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061586c6025913960400191505060405180910390fd5b600161419261418d87614970565b614a00565b83868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156141e9573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b6000808284019050838110156142aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60006142c282600001614a67565b9050919050565b60006142d482613f7f565b614329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615840602c913960400191505060405180910390fd5b600061433483612e2d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806143a357508373ffffffffffffffffffffffffffffffffffffffff1661438b84611dcc565b73ffffffffffffffffffffffffffffffffffffffff16145b806143b457506143b38185613fab565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166143dd82612e2d565b73ffffffffffffffffffffffffffffffffffffffff1614614449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061598b6029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156144cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806157d46024913960400191505060405180910390fd5b6144da838383614a78565b6144e560008261403f565b61453681600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614a7d90919063ffffffff16565b5061458881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614a9790919063ffffffff16565b5061459f81836002614ab19092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061460f8360000183614ae6565b60001c905092915050565b60008060008061462d8660000186614b69565b915091508160001c8160001c9350935050509250929050565b6000614659846000018460001b84614c02565b60001c90509392505050565b600061467382600001614cf8565b9050919050565b6146858484846143bd565b61469184848484614d09565b6146e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806157276032913960400191505060405180910390fd5b50505050565b60606000821415614734576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061482e565b600082905060005b6000821461475e578080600101915050600a828161475657fe5b04915061473c565b60608167ffffffffffffffff8111801561477757600080fd5b506040519080825280601f01601f1916602001820160405280156147aa5781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461482657600a84816147cb57fe5b0660300160f81b828280600190039350815181106147e557fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161481e57fe5b0493506147b9565b819450505050505b919050565b61483d8383614f22565b61484a6000848484614d09565b61489f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806157276032913960400191505060405180910390fd5b505050565b60006148b6836000018360001b615116565b905092915050565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156149695760606000368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff81830151169250505061496d565b3390505b90565b6000604051806080016040528060438152602001615759604391398051906020012082600001518360200151846040015180519060200120604051602001808581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff168152602001828152602001945050505050604051602081830303815290604052805190602001209050919050565b6000614a0a612525565b8260405160200180807f190100000000000000000000000000000000000000000000000000000000000081525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050919050565b600081600001805490509050919050565b505050565b6000614a8f836000018360001b615139565b905092915050565b6000614aa9836000018360001b615221565b905092915050565b6000614add846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b615291565b90509392505050565b600081836000018054905011614b47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157056022913960400191505060405180910390fd5b826000018281548110614b5657fe5b9060005260206000200154905092915050565b60008082846000018054905011614bcb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061593d6022913960400191505060405180910390fd5b6000846000018481548110614bdc57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390614cc9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614c8e578082015181840152602081019050614c73565b50505050905090810190601f168015614cbb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50846000016001820381548110614cdc57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6000614d2a8473ffffffffffffffffffffffffffffffffffffffff1661536d565b614d375760019050614f1a565b6060614ea163150b7a0260e01b614d4c613f9c565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614dd0578082015181840152602081019050614db5565b50505050905090810190601f168015614dfd5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615727603291398773ffffffffffffffffffffffffffffffffffffffff166153809092919063ffffffff16565b90506000818060200190516020811015614eba57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614fc5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b614fce81613f7f565b15615041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b61504d60008383614a78565b61509e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614a9790919063ffffffff16565b506150b581836002614ab19092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114615215576000600182039050600060018660000180549050039050600086600001828154811061518457fe5b90600052602060002001549050808760000184815481106151a157fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806151d957fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061521b565b60009150505b92915050565b600061522d8383615398565b61528657826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061528b565b600090505b92915050565b600080846001016000858152602001908152602001600020549050600081141561533857846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050615366565b8285600001600183038154811061534b57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b606061538f84846000856153bb565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015615416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061581a6026913960400191505060405180910390fd5b61541f8561536d565b615491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106154e157805182526020820191506020810190506020830392506154be565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114615543576040519150601f19603f3d011682016040523d82523d6000602084013e615548565b606091505b5091509150615558828286615564565b92505050949350505050565b6060831561557457829050615629565b6000835111156155875782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156155ee5780820151818401526020810190506155d3565b50505050905090810190601f16801561561b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b604051806060016040528060008152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001606081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106156a857803560ff19168380011785556156d6565b828001600101855582156156d6579182015b828111156156d55782358255916020019190600101906156ba565b5b5090506156e391906156e7565b5090565b5b808211156157005760008160009055506001016156e8565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e6174757265294f682068656c6c6f2074686572652c206e6572642120557067726164696e67206973206e6f7420617661696c61626c652e2e2e20796574214552433732313a207472616e7366657220746f20746865207a65726f20616464726573734e6f7420656e6f7567682066756e647320746f2062757920536869626573203a2728416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5349474e45524552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4e6f7420656e6f7567682066756e647320746f2062757920536869626573203a28456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e5369676e657220616e64207369676e617475726520646f206e6f74206d617463684552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e6572486579206865792c20736c6f7720646f776e20746865726521204c6561766520736f6d6520666f72207468652072657374206f66207573203a444552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564596f75206d757374206f776e20746865204e465420746f2072656e616d6520697421a26469706673582212203bd05e6286e208db5723c98e990d54e8baccd20459e37a22c2c0ed031ae7f62f64736f6c63430007030033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000556148562d5ddeb72545d7ec4b3ec8edc8f55ba7000000000000000000000000000000000000000000000000000000000000000b537061636553686962657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055348494245000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80635783bf7f1161019057806399c1c0da116100dc578063bbcaed1511610095578063c87b56dd1161006f578063c87b56dd1461151c578063cd3882d5146115d0578063cff3d4d8146115ff578063e985e9c51461162e576102fb565b8063bbcaed1514611472578063bc9c1c011461149d578063be803396146114eb576102fb565b806399c1c0da146111485780639c18307a1461122d578063a1fcc3bc146112bd578063a22cb465146112ec578063b339e64f14611349578063b88d4fde14611360576102fb565b80636c0360eb116101495780638da5cb5b116101235780638da5cb5b1461100757806394bee9091461104857806394e0d3711461108957806395d89b41146110b8576102fb565b80636c0360eb14610e8257806370a0823114610f12578063743976a014610f77576102fb565b80635783bf7f14610cec57806361e9442414610d035780636352211e14610d2e5780636486f11114610d9357806369e150e014610e045780636b6bb39814610e55576102fb565b80631d9bf59b1161024f5780632d37efbd116102085780633408e470116101e25780633408e47014610b9c57806340c10f1914610bc757806342842e0e14610c225780634f6ccce714610c9d576102fb565b80632d37efbd14610a015780632f745c5914610a9157806330176e1314610b00576102fb565b80631d9bf59b146108375780631ef708ef1461087857806320379ee5146108a5578063206be28f146108d057806323b872dd146109215780632d0335ab1461099c576102fb565b8063095ea7b3116102a1578063095ea7b3146105325780630c53c51c1461058d5780630c9022f1146107025780630f7e597014610751578063155b8324146107e157806318160ddd1461080c576102fb565b8063013e390b1461030057806301ffc9a7146103515780630309aee4146103c157806306fdde031461041257806307820daa146104a2578063081812fc146104cd576102fb565b366102fb576102f9600160006116b5565b005b600080fd5b34801561030c57600080fd5b506103396004803603602081101561032357600080fd5b8101908080359060200190929190505050611b96565b60405180821515815260200191505060405180910390f35b34801561035d57600080fd5b506103a96004803603602081101561037457600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611bb6565b60405180821515815260200191505060405180910390f35b3480156103cd57600080fd5b50610410600480360360208110156103e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c1d565b005b34801561041e57600080fd5b50610427611d24565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561046757808201518184015260208101905061044c565b50505050905090810190601f1680156104945780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104ae57600080fd5b506104b7611dc6565b6040518082815260200191505060405180910390f35b3480156104d957600080fd5b50610506600480360360208110156104f057600080fd5b8101908080359060200190929190505050611dcc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561053e57600080fd5b5061058b6004803603604081101561055557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e67565b005b610687600480360360a08110156105a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156105e057600080fd5b8201836020820111156105f257600080fd5b8035906020019184600183028401116401000000008311171561061457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019092919080359060200190929190803560ff169060200190929190505050611fab565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106c75780820151818401526020810190506106ac565b50505050905090810190601f1680156106f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561070e57600080fd5b5061074f6004803603606081101561072557600080fd5b810190808035906020019092919080359060200190929190803590602001909291905050506123bf565b005b34801561075d57600080fd5b5061076661249c565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107a657808201518184015260208101905061078b565b50505050905090810190601f1680156107d35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156107ed57600080fd5b506107f66124d5565b6040518082815260200191505060405180910390f35b34801561081857600080fd5b506108216124db565b6040518082815260200191505060405180910390f35b34801561084357600080fd5b5061084c6124ec565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561088457600080fd5b5061088d612512565b60405180821515815260200191505060405180910390f35b3480156108b157600080fd5b506108ba612525565b6040518082815260200191505060405180910390f35b3480156108dc57600080fd5b5061091f600480360360208110156108f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061252f565b005b34801561092d57600080fd5b5061099a6004803603606081101561094457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612636565b005b3480156109a857600080fd5b506109eb600480360360208110156109bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506126ac565b6040518082815260200191505060405180910390f35b348015610a0d57600080fd5b50610a8f60048036036040811015610a2457600080fd5b810190808035906020019092919080359060200190640100000000811115610a4b57600080fd5b820183602082011115610a5d57600080fd5b80359060200191846001830284011164010000000083111715610a7f57600080fd5b90919293919293905050506126f5565b005b348015610a9d57600080fd5b50610aea60048036036040811015610ab457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612a68565b6040518082815260200191505060405180910390f35b348015610b0c57600080fd5b50610b8460048036036020811015610b2357600080fd5b8101908080359060200190640100000000811115610b4057600080fd5b820183602082011115610b5257600080fd5b80359060200191846001830284011164010000000083111715610b7457600080fd5b9091929391929390505050612ac3565b60405180821515815260200191505060405180910390f35b348015610ba857600080fd5b50610bb1612ba4565b6040518082815260200191505060405180910390f35b348015610bd357600080fd5b50610c2060048036036040811015610bea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612bb1565b005b348015610c2e57600080fd5b50610c9b60048036036060811015610c4557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612d04565b005b348015610ca957600080fd5b50610cd660048036036020811015610cc057600080fd5b8101908080359060200190929190505050612d24565b6040518082815260200191505060405180910390f35b348015610cf857600080fd5b50610d01612d47565b005b348015610d0f57600080fd5b50610d18612e27565b6040518082815260200191505060405180910390f35b348015610d3a57600080fd5b50610d6760048036036020811015610d5157600080fd5b8101908080359060200190929190505050612e2d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610d9f57600080fd5b50610e0260048036036040811015610db657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e64565b005b348015610e1057600080fd5b50610e5360048036036020811015610e2757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613079565b005b348015610e6157600080fd5b50610e6a613186565b60405180821515815260200191505060405180910390f35b348015610e8e57600080fd5b50610e97613199565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ed7578082015181840152602081019050610ebc565b50505050905090810190601f168015610f045780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610f1e57600080fd5b50610f6160048036036020811015610f3557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061323b565b6040518082815260200191505060405180910390f35b348015610f8357600080fd5b50610f8c613310565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610fcc578082015181840152602081019050610fb1565b50505050905090810190601f168015610ff95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561101357600080fd5b5061101c6133ae565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561105457600080fd5b5061105d6133d4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561109557600080fd5b5061109e6133fa565b604051808261ffff16815260200191505060405180910390f35b3480156110c457600080fd5b506110cd61340e565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561110d5780820151818401526020810190506110f2565b50505050905090810190601f16801561113a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561115457600080fd5b5061122b6004803603606081101561116b57600080fd5b810190808035906020019064010000000081111561118857600080fd5b82018360208201111561119a57600080fd5b803590602001918460208302840111640100000000831117156111bc57600080fd5b9091929391929390803590602001906401000000008111156111dd57600080fd5b8201836020820111156111ef57600080fd5b8035906020019184602083028401116401000000008311171561121157600080fd5b9091929391929390803590602001909291905050506134b0565b005b34801561123957600080fd5b506112bb6004803603604081101561125057600080fd5b81019080803590602001909291908035906020019064010000000081111561127757600080fd5b82018360208201111561128957600080fd5b803590602001918460018302840111640100000000831117156112ab57600080fd5b90919293919293905050506135d7565b005b3480156112c957600080fd5b506112d26138b6565b604051808261ffff16815260200191505060405180910390f35b3480156112f857600080fd5b506113476004803603604081101561130f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506138ca565b005b34801561135557600080fd5b5061135e613a80565b005b34801561136c57600080fd5b506114706004803603608081101561138357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001906401000000008111156113ea57600080fd5b8201836020820111156113fc57600080fd5b8035906020019184600183028401116401000000008311171561141e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613b60565b005b34801561147e57600080fd5b50611487613bd8565b6040518082815260200191505060405180910390f35b6114e9600480360360408110156114b357600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116b5565b005b3480156114f757600080fd5b50611500613bde565b604051808263ffffffff16815260200191505060405180910390f35b34801561152857600080fd5b506115556004803603602081101561153f57600080fd5b8101908080359060200190929190505050613bf4565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561159557808201518184015260208101905061157a565b50505050905090810190601f1680156115c25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156115dc57600080fd5b506115e5613ec5565b604051808261ffff16815260200191505060405180910390f35b34801561160b57600080fd5b50611614613ed9565b604051808261ffff16815260200191505060405180910390f35b34801561163a57600080fd5b5061169d6004803603604081101561165157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613eed565b60405180821515815260200191505060405180910390f35b600e60149054906101000a900463ffffffff1663ffffffff16826116d76124db565b01111561174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416c6c205368696265732068617665206265656e206d696e74656421203a280081525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f43616e6e6f742072656620796f757273656c6621203b2900000000000000000081525060200191505060405180910390fd5b6014821115611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180615a25603a913960400191505060405180910390fd5b6000805b83811015611a4657600061185e6124db565b101580156118865750601460009054906101000a900461ffff1661ffff166118846124db565b105b156118ad5761189c336118976124db565b613f61565b66b1a2bc2ec5000082019150611a39565b601460009054906101000a900461ffff1661ffff166118ca6124db565b101580156118f25750601460029054906101000a900461ffff1661ffff166118f06124db565b105b1561191a57611908336119036124db565b613f61565b67016345785d8a000082019150611a38565b601460029054906101000a900461ffff1661ffff166119376124db565b1015801561195f5750601460049054906101000a900461ffff1661ffff1661195d6124db565b105b1561198757611975336119706124db565b613f61565b670214e8348c4f000082019150611a37565b601460049054906101000a900461ffff1661ffff166119a46124db565b101580156119cc5750601460069054906101000a900461ffff1661ffff166119ca6124db565b105b156119f4576119e2336119dd6124db565b613f61565b6702c68af0bb14000082019150611a36565b601460069054906101000a900461ffff1661ffff16611a116124db565b10611a3557611a2733611a226124db565b613f61565b67058d15e176280000820191505b5b5b5b5b808060010191505061184c565b50600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611b37578173ffffffffffffffffffffffffffffffffffffffff166108fc60288381611a9f57fe5b049081150290604051600060405180830381858888f19350505050158015611acb573d6000803e3d6000fd5b5060286027820281611ad957fe5b04341015611b32576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157f86022913960400191505060405180910390fd5b611b91565b80341015611b90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061591c6021913960400191505060405180910390fd5b5b505050565b60156020528060005260406000206000915054906101000a900460ff1681565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ce0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611dbc5780601f10611d9157610100808354040283529160200191611dbc565b820191906000526020600020905b815481529060010190602001808311611d9f57829003601f168201915b5050505050905090565b60105481565b6000611dd782613f7f565b611e2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061595f602c913960400191505060405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000611e7282612e2d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615a046021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611f18613f9c565b73ffffffffffffffffffffffffffffffffffffffff161480611f475750611f4681611f41613f9c565b613fab565b5b611f9c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806158916038913960400191505060405180910390fd5b611fa6838361403f565b505050565b6060611fb5615630565b6040518060600160405280600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff16815260200187815250905061203487828787876140f8565b612089576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806159b46021913960400191505060405180910390fd5b6120dc6001600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461422c90919063ffffffff16565b600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b838110156121bb5780820151818401526020810190506121a0565b50505050905090810190601f1680156121e85780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a1600060603073ffffffffffffffffffffffffffffffffffffffff16888a6040516020018083805190602001908083835b6020831061224a5780518252602082019150602081019050602083039250612227565b6001836020036101000a0380198251168184511680821785525050505050509050018273ffffffffffffffffffffffffffffffffffffffff1660601b8152601401925050506040516020818303038152906040526040518082805190602001908083835b602083106122d157805182526020820191506020810190506020830392506122ae565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612333576040519150601f19603f3d011682016040523d82523d6000602084013e612338565b606091505b5091509150816123b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000081525060200191505060405180910390fd5b80935050505095945050505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612482576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b82600f819055508160108190555080601181905550505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b600f5481565b60006124e760026142b4565b905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601460089054906101000a900460ff1681565b6000600b54905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612647612641613f9c565b826142c9565b61269c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615a5f6031913960400191505060405180910390fd5b6126a78383836143bd565b505050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606a83101561276c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f43616e6e6f7420757067726164652067656e657369732100000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661278c84612e2d565b73ffffffffffffffffffffffffffffffffffffffff1614612815576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f53656e64657220646f6573206e6f74206f776e204e465400000000000000000081525060200191505060405180910390fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600f546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b1580156128c857600080fd5b505af11580156128dc573d6000803e3d6000fd5b505050506040513d60208110156128f257600080fd5b8101908080519060200190929190505050612975576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f50524458207472616e73666572206661696c656421203a28000000000000000081525060200191505060405180910390fd5b601460089054906101000a900460ff166129da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603881526020018061579c6038913960400191505060405180910390fd5b7f0f63ca4b73c1b208a99deedb03254ed8f8d8c8b1b164a53602130ee21399283c33848484604051808573ffffffffffffffffffffffffffffffffffffffff168152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509550505050505060405180910390a1505050565b6000612abb82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061460090919063ffffffff16565b905092915050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612b88576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b828260099190612b99929190615667565b506001905092915050565b6000804690508091505090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612c74576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601460099054906101000a900460ff16612cf6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f43616e6e6f74206d696e74206d6f72650000000000000000000000000000000081525060200191505060405180910390fd5b612d008282613f61565b5050565b612d1f83838360405180602001604052806000815250613b60565b505050565b600080612d3b83600261461a90919063ffffffff16565b50905080915050919050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612e0a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000601460096101000a81548160ff021916908315150217905550565b60115481565b6000612e5d826040518060600160405280602981526020016158f36029913960026146469092919063ffffffff16565b9050919050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612f27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb838373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612fab57600080fd5b505afa158015612fbf573d6000803e3d6000fd5b505050506040513d6020811015612fd557600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561303957600080fd5b505af115801561304d573d6000803e3d6000fd5b505050506040513d602081101561306357600080fd5b8101908080519060200190929190505050505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461313c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015613182573d6000803e3d6000fd5b5050565b601460099054906101000a900460ff1681565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156132315780601f1061320657610100808354040283529160200191613231565b820191906000526020600020905b81548152906001019060200180831161321457829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806158c9602a913960400191505060405180910390fd5b613309600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614665565b9050919050565b60098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156133a65780601f1061337b576101008083540402835291602001916133a6565b820191906000526020600020905b81548152906001019060200180831161338957829003601f168201915b505050505081565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601460049054906101000a900461ffff1681565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156134a65780601f1061347b576101008083540402835291602001916134a6565b820191906000526020600020905b81548152906001019060200180831161348957829003601f168201915b5050505050905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614613573576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b818110156135cf576135c286868381811061358d57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168585848181106135b657fe5b90506020020135612bb1565b8080600101915050613576565b505050505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33306011546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561368a57600080fd5b505af115801561369e573d6000803e3d6000fd5b505050506040513d60208110156136b457600080fd5b8101908080519060200190929190505050613737576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f50524458207472616e73666572206661696c656421203a28000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661375784612e2d565b73ffffffffffffffffffffffffffffffffffffffff16146137c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615a906022913960400191505060405180910390fd5b601460089054906101000a900460ff16613828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603881526020018061579c6038913960400191505060405180910390fd5b7f21574772a41feb022e278660fd5997bebdb0929d8d31e861320d2bfb4b14954433848484604051808573ffffffffffffffffffffffffffffffffffffffff168152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509550505050505060405180910390a1505050565b601460029054906101000a900461ffff1681565b6138d2613f9c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613973576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060056000613980613f9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16613a2d613f9c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614613b43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001601460086101000a81548160ff021916908315150217905550565b613b71613b6b613f9c565b836142c9565b613bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615a5f6031913960400191505060405180910390fd5b613bd28484848461467a565b50505050565b60135481565b600e60149054906101000a900463ffffffff1681565b6060613bff82613f7f565b613c54576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806159d5602f913960400191505060405180910390fd5b6060600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015613cfd5780601f10613cd257610100808354040283529160200191613cfd565b820191906000526020600020905b815481529060010190602001808311613ce057829003601f168201915b505050505090506060613d0e613199565b9050600081511415613d24578192505050613ec0565b600082511115613df55780826040516020018083805190602001908083835b60208310613d665780518252602082019150602081019050602083039250613d43565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310613db75780518252602082019150602081019050602083039250613d94565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050613ec0565b80613dff856146ec565b6040516020018083805190602001908083835b60208310613e355780518252602082019150602081019050602083039250613e12565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310613e865780518252602082019150602081019050602083039250613e63565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b601460069054906101000a900461ffff1681565b601460009054906101000a900461ffff1681565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613f4e5760019050613f5b565b613f588383613fab565b90505b92915050565b613f7b828260405180602001604052806000815250614833565b5050565b6000613f958260026148a490919063ffffffff16565b9050919050565b6000613fa66148be565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166140b283612e2d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141561417f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061586c6025913960400191505060405180910390fd5b600161419261418d87614970565b614a00565b83868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156141e9573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b6000808284019050838110156142aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60006142c282600001614a67565b9050919050565b60006142d482613f7f565b614329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615840602c913960400191505060405180910390fd5b600061433483612e2d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806143a357508373ffffffffffffffffffffffffffffffffffffffff1661438b84611dcc565b73ffffffffffffffffffffffffffffffffffffffff16145b806143b457506143b38185613fab565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166143dd82612e2d565b73ffffffffffffffffffffffffffffffffffffffff1614614449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061598b6029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156144cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806157d46024913960400191505060405180910390fd5b6144da838383614a78565b6144e560008261403f565b61453681600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614a7d90919063ffffffff16565b5061458881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614a9790919063ffffffff16565b5061459f81836002614ab19092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061460f8360000183614ae6565b60001c905092915050565b60008060008061462d8660000186614b69565b915091508160001c8160001c9350935050509250929050565b6000614659846000018460001b84614c02565b60001c90509392505050565b600061467382600001614cf8565b9050919050565b6146858484846143bd565b61469184848484614d09565b6146e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806157276032913960400191505060405180910390fd5b50505050565b60606000821415614734576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061482e565b600082905060005b6000821461475e578080600101915050600a828161475657fe5b04915061473c565b60608167ffffffffffffffff8111801561477757600080fd5b506040519080825280601f01601f1916602001820160405280156147aa5781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461482657600a84816147cb57fe5b0660300160f81b828280600190039350815181106147e557fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161481e57fe5b0493506147b9565b819450505050505b919050565b61483d8383614f22565b61484a6000848484614d09565b61489f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806157276032913960400191505060405180910390fd5b505050565b60006148b6836000018360001b615116565b905092915050565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156149695760606000368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff81830151169250505061496d565b3390505b90565b6000604051806080016040528060438152602001615759604391398051906020012082600001518360200151846040015180519060200120604051602001808581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff168152602001828152602001945050505050604051602081830303815290604052805190602001209050919050565b6000614a0a612525565b8260405160200180807f190100000000000000000000000000000000000000000000000000000000000081525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050919050565b600081600001805490509050919050565b505050565b6000614a8f836000018360001b615139565b905092915050565b6000614aa9836000018360001b615221565b905092915050565b6000614add846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b615291565b90509392505050565b600081836000018054905011614b47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157056022913960400191505060405180910390fd5b826000018281548110614b5657fe5b9060005260206000200154905092915050565b60008082846000018054905011614bcb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061593d6022913960400191505060405180910390fd5b6000846000018481548110614bdc57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390614cc9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614c8e578082015181840152602081019050614c73565b50505050905090810190601f168015614cbb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50846000016001820381548110614cdc57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6000614d2a8473ffffffffffffffffffffffffffffffffffffffff1661536d565b614d375760019050614f1a565b6060614ea163150b7a0260e01b614d4c613f9c565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614dd0578082015181840152602081019050614db5565b50505050905090810190601f168015614dfd5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615727603291398773ffffffffffffffffffffffffffffffffffffffff166153809092919063ffffffff16565b90506000818060200190516020811015614eba57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614fc5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b614fce81613f7f565b15615041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b61504d60008383614a78565b61509e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614a9790919063ffffffff16565b506150b581836002614ab19092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114615215576000600182039050600060018660000180549050039050600086600001828154811061518457fe5b90600052602060002001549050808760000184815481106151a157fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806151d957fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061521b565b60009150505b92915050565b600061522d8383615398565b61528657826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061528b565b600090505b92915050565b600080846001016000858152602001908152602001600020549050600081141561533857846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050615366565b8285600001600183038154811061534b57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b606061538f84846000856153bb565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015615416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061581a6026913960400191505060405180910390fd5b61541f8561536d565b615491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106154e157805182526020820191506020810190506020830392506154be565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114615543576040519150601f19603f3d011682016040523d82523d6000602084013e615548565b606091505b5091509150615558828286615564565b92505050949350505050565b6060831561557457829050615629565b6000835111156155875782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156155ee5780820151818401526020810190506155d3565b50505050905090810190601f16801561561b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b604051806060016040528060008152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001606081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106156a857803560ff19168380011785556156d6565b828001600101855582156156d6579182015b828111156156d55782358255916020019190600101906156ba565b5b5090506156e391906156e7565b5090565b5b808211156157005760008160009055506001016156e8565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e6174757265294f682068656c6c6f2074686572652c206e6572642120557067726164696e67206973206e6f7420617661696c61626c652e2e2e20796574214552433732313a207472616e7366657220746f20746865207a65726f20616464726573734e6f7420656e6f7567682066756e647320746f2062757920536869626573203a2728416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5349474e45524552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4e6f7420656e6f7567682066756e647320746f2062757920536869626573203a28456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e5369676e657220616e64207369676e617475726520646f206e6f74206d617463684552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e6572486579206865792c20736c6f7720646f776e20746865726521204c6561766520736f6d6520666f72207468652072657374206f66207573203a444552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564596f75206d757374206f776e20746865204e465420746f2072656e616d6520697421a26469706673582212203bd05e6286e208db5723c98e990d54e8baccd20459e37a22c2c0ed031ae7f62f64736f6c63430007030033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000556148562d5ddeb72545d7ec4b3ec8edc8f55ba7000000000000000000000000000000000000000000000000000000000000000b537061636553686962657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055348494245000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): SpaceShibes
Arg [1] : symbol_ (string): SHIBE
Arg [2] : PRDX (address): 0x556148562d5DdeB72545D7EC4B3eC8edc8F55Ba7

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000556148562d5ddeb72545d7ec4b3ec8edc8f55ba7
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 5370616365536869626573000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 5348494245000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

70379:7134:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72740:22;72748:1;72759;72740:7;:22::i;:::-;70379:7134;;;;;71367:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;10202:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;72574:116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;51532:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70902:43;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54318:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53848:404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;68177:1140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76030:280;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;65441:43;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70851:42;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53326:211;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;70702:84;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;71272:37;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;66451:101;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;72076:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55208:305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;69743:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;74642:528;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53088:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;71781:168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;66560:161;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;76328:172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55584:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53614:172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;72470:90;;;;;;;;;;;;;:::i;:::-;;70954:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;51288:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;75668:197;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;75881:133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;71318:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;52907:97;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51005:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48752:22;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70673:20;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;71007:24;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;71198:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51701:104;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76512:203;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;75186:466;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;71163:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;54611:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;72275:92;;;;;;;;;;;;;:::i;:::-;;55806:285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;71077:36;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;72780:1846;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;70800:36;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51876:792;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71234:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;71128:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;77200:310;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;72780:1846;72901:15;;;;;;;;;;;72874:42;;72890:7;72874:13;:11;:13::i;:::-;:23;:42;;72866:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72986:8;72972:22;;:10;:22;;;;72964:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73054:2;73043:7;:13;;73035:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73140:18;73180:9;73175:1072;73199:7;73195:1;:11;73175:1072;;;73250:1;73233:13;:11;:13::i;:::-;:18;;73232:48;;;;;73273:6;;;;;;;;;;;73257:22;;:13;:11;:13::i;:::-;:22;73232:48;73228:1018;;;73301:36;73311:10;73323:13;:11;:13::i;:::-;73301:9;:36::i;:::-;73370:10;73356:24;;;;73228:1018;;;73457:6;;;;;;;;;;;73440:23;;:13;:11;:13::i;:::-;:23;;73439:53;;;;;73485:6;;;;;;;;;;;73469:22;;:13;:11;:13::i;:::-;:22;73439:53;73435:810;;;73513:36;73523:10;73535:13;:11;:13::i;:::-;73513:9;:36::i;:::-;73582:9;73568:23;;;;73435:810;;;73668:6;;;;;;;;;;;73651:23;;:13;:11;:13::i;:::-;:23;;73650:53;;;;;73696:6;;;;;;;;;;;73680:22;;:13;:11;:13::i;:::-;:22;73650:53;73646:598;;;73724:36;73734:10;73746:13;:11;:13::i;:::-;73724:9;:36::i;:::-;73793:10;73779:24;;;;73646:598;;;73881:6;;;;;;;;;;;73864:23;;:13;:11;:13::i;:::-;:23;;73863:53;;;;;73909:6;;;;;;;;;;;73893:22;;:13;:11;:13::i;:::-;:22;73863:53;73859:384;;;73937:36;73947:10;73959:13;:11;:13::i;:::-;73937:9;:36::i;:::-;74006:9;73992:23;;;;73859:384;;;74092:6;;;;;;;;;;;74075:23;;:13;:11;:13::i;:::-;:23;74070:146;;74120:36;74130:10;74142:13;:11;:13::i;:::-;74120:9;:36::i;:::-;74189:9;74175:23;;;;74070:146;73859:384;73646:598;73435:810;73228:1018;73208:3;;;;;;;73175:1072;;;;74297:1;74277:22;;:8;:22;;;74273:336;;74332:8;:17;;:32;74361:2;74350:10;:13;;;;;;74332:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74420:2;74415;74402:10;:15;:20;;;;;;74389:9;:33;;74381:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74273:336;;;74547:10;74534:9;:23;;74526:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74273:336;72780:1846;;;:::o;71367:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;10202:150::-;10287:4;10311:20;:33;10332:11;10311:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10304:40;;10202:150;;;:::o;72574:116::-;71707:5;;;;;;;;;;;71693:19;;:10;:19;;;71685:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72675:5:::1;72649:23;;:31;;;;;;;;;;;;;;;;;;72574:116:::0;:::o;51532:100::-;51586:13;51619:5;51612:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51532:100;:::o;70902:43::-;;;;:::o;54318:221::-;54394:7;54422:16;54430:7;54422;:16::i;:::-;54414:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54507:15;:24;54523:7;54507:24;;;;;;;;;;;;;;;;;;;;;54500:31;;54318:221;;;:::o;53848:404::-;53929:13;53945:23;53960:7;53945:14;:23::i;:::-;53929:39;;53993:5;53987:11;;:2;:11;;;;53979:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54073:5;54057:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54082:44;54106:5;54113:12;:10;:12::i;:::-;54082:23;:44::i;:::-;54057:69;54049:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54223:21;54232:2;54236:7;54223:8;:21::i;:::-;53848:404;;;:::o;68177:1140::-;68378:12;68403:29;;:::i;:::-;68435:152;;;;;;;;68473:6;:19;68480:11;68473:19;;;;;;;;;;;;;;;;68435:152;;;;68513:11;68435:152;;;;;;68558:17;68435:152;;;68403:184;;68620:45;68627:11;68640:6;68648:4;68654;68660;68620:6;:45::i;:::-;68598:128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68815:26;68839:1;68815:6;:19;68822:11;68815:19;;;;;;;;;;;;;;;;:23;;:26;;;;:::i;:::-;68793:6;:19;68800:11;68793:19;;;;;;;;;;;;;;;:48;;;;68859:117;68897:11;68923:10;68948:17;68859:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69087:12;69101:23;69136:4;69128:18;;69178:17;69197:11;69161:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69128:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69086:134;;;;69239:7;69231:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69299:10;69292:17;;;;;68177:1140;;;;;;;:::o;76030:280::-;71707:5;;;;;;;;;;;71693:19;;:10;:19;;;71685:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76184:15:::1;76163:18;:36;;;;76235:16;76214:18;:37;;;;76285:13;76266:16;:32;;;;76030:280:::0;;;:::o;65441:43::-;;;;;;;;;;;;;;;;;;;:::o;70851:42::-;;;;:::o;53326:211::-;53387:7;53508:21;:12;:19;:21::i;:::-;53501:28;;53326:211;:::o;70702:84::-;;;;;;;;;;;;;:::o;71272:37::-;;;;;;;;;;;;;:::o;66451:101::-;66502:7;66529:15;;66522:22;;66451:101;:::o;72076:98::-;71707:5;;;;;;;;;;;71693:19;;:10;:19;;;71685:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72160:5:::1;72147:10;;:18;;;;;;;;;;;;;;;;;;72076:98:::0;:::o;55208:305::-;55369:41;55388:12;:10;:12::i;:::-;55402:7;55369:18;:41::i;:::-;55361:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55477:28;55487:4;55493:2;55497:7;55477:9;:28::i;:::-;55208:305;;;:::o;69743:107::-;69796:13;69830:6;:12;69837:4;69830:12;;;;;;;;;;;;;;;;69822:20;;69743:107;;;:::o;74642:528::-;74748:3;74737:7;:14;;74729:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74822:10;74802:30;;:16;74810:7;74802;:16::i;:::-;:30;;;74794:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74883:10;;;;;;;;;;;:23;;;74907:10;74927:4;74934:18;;74883:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74875:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75005:17;;;;;;;;;;;74997:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75115:43;75127:10;75139:7;75148:9;;75115:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74642:528;;;:::o;53088:162::-;53185:7;53212:30;53236:5;53212:13;:20;53226:5;53212:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53205:37;;53088:162;;;;:::o;71781:168::-;71861:12;71707:5;;;;;;;;;;;71693:19;;:10;:19;;;71685:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71897:11:::1;;71886:8;:22;;;;;;;:::i;:::-;;71935:4;71925:14;;71781:168:::0;;;;:::o;66560:161::-;66603:7;66623:10;66674:9;66668:15;;66711:2;66704:9;;;66560:161;:::o;76328:172::-;71707:5;;;;;;;;;;;71693:19;;:10;:19;;;71685:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76421:15:::1;;;;;;;;;;;76413:44;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;76470:22;76480:2;76484:7;76470:9;:22::i;:::-;76328:172:::0;;:::o;55584:151::-;55688:39;55705:4;55711:2;55715:7;55688:39;;;;;;;;;;;;:16;:39::i;:::-;55584:151;;;:::o;53614:172::-;53689:7;53710:15;53731:22;53747:5;53731:12;:15;;:22;;;;:::i;:::-;53709:44;;;53771:7;53764:14;;;53614:172;;;:::o;72470:90::-;71707:5;;;;;;;;;;;71693:19;;:10;:19;;;71685:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72545:5:::1;72527:15;;:23;;;;;;;;;;;;;;;;;;72470:90::o:0;70954:40::-;;;;:::o;51288:177::-;51360:7;51387:70;51404:7;51387:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51380:77;;51288:177;;;:::o;75668:197::-;71707:5;;;;;;;;;;;71693:19;;:10;:19;;;71685:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75776:16:::1;:25;;;75802:9;75813:16;:26;;;75848:4;75813:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;75776:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;75668:197:::0;;:::o;75881:133::-;71707:5;;;;;;;;;;;71693:19;;:10;:19;;;71685:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75960:9:::1;:18;;:41;75979:21;75960:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;75881:133:::0;:::o;71318:34::-;;;;;;;;;;;;;:::o;52907:97::-;52955:13;52988:8;52981:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52907:97;:::o;51005:221::-;51077:7;51122:1;51105:19;;:5;:19;;;;51097:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51189:29;:13;:20;51203:5;51189:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51182:36;;51005:221;;;:::o;48752:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;70673:20::-;;;;;;;;;;;;;:::o;71007:24::-;;;;;;;;;;;;;:::o;71198:27::-;;;;;;;;;;;;;:::o;51701:104::-;51757:13;51790:7;51783:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51701:104;:::o;76512:203::-;71707:5;;;;;;;;;;;71693:19;;:10;:19;;;71685:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76630:9:::1;76625:83;76645:4;76641:1;:8;76625:83;;;76671:23;76676:2;;76679:1;76676:5;;;;;;;;;;;;;;;76683:7;;76691:1;76683:10;;;;;;;;;;;;;76671:4;:23::i;:::-;76651:3;;;;;;;76625:83;;;;76512:203:::0;;;;;:::o;75186:466::-;75279:10;;;;;;;;;;;:23;;;75303:10;75323:4;75330:16;;75279:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75271:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75419:10;75399:30;;:16;75407:7;75399;:16::i;:::-;:30;;;75391:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75489:17;;;;;;;;;;;75481:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75601:41;75612:10;75624:7;75633:8;;75601:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75186:466;;;:::o;71163:27::-;;;;;;;;;;;;;:::o;54611:295::-;54726:12;:10;:12::i;:::-;54714:24;;:8;:24;;;;54706:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54826:8;54781:18;:32;54800:12;:10;:12::i;:::-;54781:32;;;;;;;;;;;;;;;:42;54814:8;54781:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54879:8;54850:48;;54865:12;:10;:12::i;:::-;54850:48;;;54889:8;54850:48;;;;;;;;;;;;;;;;;;;;54611:295;;:::o;72275:92::-;71707:5;;;;;;;;;;;71693:19;;:10;:19;;;71685:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72353:4:::1;72333:17;;:24;;;;;;;;;;;;;;;;;;72275:92::o:0;55806:285::-;55938:41;55957:12;:10;:12::i;:::-;55971:7;55938:18;:41::i;:::-;55930:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56044:39;56058:4;56064:2;56068:7;56077:5;56044:13;:39::i;:::-;55806:285;;;;:::o;71077:36::-;;;;:::o;70800:::-;;;;;;;;;;;;;:::o;51876:792::-;51949:13;51983:16;51991:7;51983;:16::i;:::-;51975:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52064:23;52090:10;:19;52101:7;52090:19;;;;;;;;;;;52064:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52120:18;52141:9;:7;:9::i;:::-;52120:30;;52248:1;52232:4;52226:18;:23;52222:72;;;52273:9;52266:16;;;;;;52222:72;52424:1;52404:9;52398:23;:27;52394:108;;;52473:4;52479:9;52456:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52442:48;;;;;;52394:108;52634:4;52640:18;:7;:16;:18::i;:::-;52617:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52603:57;;;;51876:792;;;;:::o;71234:27::-;;;;;;;;;;;;;:::o;71128:26::-;;;;;;;;;;;;;:::o;77200:310::-;77316:15;77369:23;;;;;;;;;;;77348:45;;:9;:45;;;77344:89;;;77417:4;77410:11;;;;77344:89;77460:42;77484:6;77492:9;77460:23;:42::i;:::-;77453:49;;77200:310;;;;;:::o;58550:110::-;58626:26;58636:2;58640:7;58626:26;;;;;;;;;;;;:9;:26::i;:::-;58550:110;;:::o;57558:127::-;57623:4;57647:30;57669:7;57647:12;:21;;:30;;;;:::i;:::-;57640:37;;57558:127;;;:::o;76859:169::-;76949:22;76996:24;:22;:24::i;:::-;76989:31;;76859:169;:::o;54977:164::-;55074:4;55098:18;:25;55117:5;55098:25;;;;;;;;;;;;;;;:35;55124:8;55098:35;;;;;;;;;;;;;;;;;;;;;;;;;55091:42;;54977:164;;;;:::o;63465:183::-;63558:2;63531:15;:24;63547:7;63531:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63614:7;63610:2;63576:46;;63585:23;63600:7;63585:14;:23::i;:::-;63576:46;;;;;;;;;;;;63465:183;;:::o;69858:486::-;70036:4;70079:1;70061:20;;:6;:20;;;;70053:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70177:159;70205:47;70224:27;70244:6;70224:19;:27::i;:::-;70205:18;:47::i;:::-;70271:4;70294;70317;70177:159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70154:182;;:6;:182;;;70134:202;;69858:486;;;;;;;:::o;13770:179::-;13828:7;13848:9;13864:1;13860;:5;13848:17;;13889:1;13884;:6;;13876:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13940:1;13933:8;;;13770:179;;;;:::o;44269:123::-;44338:7;44365:19;44373:3;:10;;44365:7;:19::i;:::-;44358:26;;44269:123;;;:::o;57852:355::-;57945:4;57970:16;57978:7;57970;:16::i;:::-;57962:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58046:13;58062:23;58077:7;58062:14;:23::i;:::-;58046:39;;58115:5;58104:16;;:7;:16;;;:51;;;;58148:7;58124:31;;:20;58136:7;58124:11;:20::i;:::-;:31;;;58104:51;:94;;;;58159:39;58183:5;58190:7;58159:23;:39::i;:::-;58104:94;58096:103;;;57852:355;;;;:::o;60988:599::-;61113:4;61086:31;;:23;61101:7;61086:14;:23::i;:::-;:31;;;61078:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61214:1;61200:16;;:2;:16;;;;61192:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61270:39;61291:4;61297:2;61301:7;61270:20;:39::i;:::-;61374:29;61391:1;61395:7;61374:8;:29::i;:::-;61416:35;61443:7;61416:13;:19;61430:4;61416:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61462:30;61484:7;61462:13;:17;61476:2;61462:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61505:29;61522:7;61531:2;61505:12;:16;;:29;;;;;:::i;:::-;;61571:7;61567:2;61552:27;;61561:4;61552:27;;;;;;;;;;;;60988:599;;;:::o;36054:137::-;36125:7;36160:22;36164:3;:10;;36176:5;36160:3;:22::i;:::-;36152:31;;36145:38;;36054:137;;;;:::o;44731:236::-;44811:7;44820;44841:11;44854:13;44871:22;44875:3;:10;;44887:5;44871:3;:22::i;:::-;44840:53;;;;44920:3;44912:12;;44950:5;44942:14;;44904:55;;;;;;44731:236;;;;;:::o;46017:213::-;46124:7;46175:44;46180:3;:10;;46200:3;46192:12;;46206;46175:4;:44::i;:::-;46167:53;;46144:78;;46017:213;;;;;:::o;35596:114::-;35656:7;35683:19;35691:3;:10;;35683:7;:19::i;:::-;35676:26;;35596:114;;;:::o;56973:272::-;57087:28;57097:4;57103:2;57107:7;57087:9;:28::i;:::-;57134:48;57157:4;57163:2;57167:7;57176:5;57134:22;:48::i;:::-;57126:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56973:272;;;;:::o;46487:746::-;46543:13;46773:1;46764:5;:10;46760:53;;;46791:10;;;;;;;;;;;;;;;;;;;;;46760:53;46823:12;46838:5;46823:20;;46854:14;46879:78;46894:1;46886:4;:9;46879:78;;46912:8;;;;;;;46943:2;46935:10;;;;;;;;;46879:78;;;46967:19;46999:6;46989:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46967:39;;47017:13;47042:1;47033:6;:10;47017:26;;47061:5;47054:12;;47077:117;47092:1;47084:4;:9;47077:117;;47153:2;47146:4;:9;;;;;;47141:2;:14;47128:29;;47110:6;47117:7;;;;;;;47110:15;;;;;;;;;;;:47;;;;;;;;;;;47180:2;47172:10;;;;;;;;;47077:117;;;47218:6;47204:21;;;;;;46487:746;;;;:::o;58887:250::-;58983:18;58989:2;58993:7;58983:5;:18::i;:::-;59020:54;59051:1;59055:2;59059:7;59068:5;59020:22;:54::i;:::-;59012:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58887:250;;;:::o;44030:151::-;44114:4;44138:35;44148:3;:10;;44168:3;44160:12;;44138:9;:35::i;:::-;44131:42;;44030:151;;;;:::o;64428:641::-;64499:22;64565:4;64543:27;;:10;:27;;;64539:499;;;64587:18;64608:8;;64587:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64631:13;64647:8;;:15;;64631:31;;64899:42;64869:5;64862;64858:17;64852:24;64826:134;64816:144;;64686:289;;;;;65016:10;65007:19;;64539:499;64428:641;:::o;69325:410::-;69435:7;67513:100;;;;;;;;;;;;;;;;;67493:127;;;;;;69589:6;:12;;;69624:6;:11;;;69668:6;:24;;;69658:35;;;;;;69508:204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69480:247;;;;;;69460:267;;69325:410;;;:::o;67090:258::-;67189:7;67291:20;:18;:20::i;:::-;67313:11;67262:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67234:106;;;;;;67214:126;;67090:258;;;:::o;40848:110::-;40904:7;40931:3;:12;;:19;;;;40924:26;;40848:110;;;:::o;64261:93::-;;;;:::o;35141:137::-;35211:4;35235:35;35243:3;:10;;35263:5;35255:14;;35235:7;:35::i;:::-;35228:42;;35141:137;;;;:::o;34834:131::-;34901:4;34925:32;34930:3;:10;;34950:5;34942:14;;34925:4;:32::i;:::-;34918:39;;34834:131;;;;:::o;43453:185::-;43542:4;43566:64;43571:3;:10;;43591:3;43583:12;;43621:5;43605:23;;43597:32;;43566:4;:64::i;:::-;43559:71;;43453:185;;;;;:::o;31092:204::-;31159:7;31208:5;31187:3;:11;;:18;;;;:26;31179:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31270:3;:11;;31282:5;31270:18;;;;;;;;;;;;;;;;31263:25;;31092:204;;;;:::o;41313:279::-;41380:7;41389;41439:5;41417:3;:12;;:19;;;;:27;41409:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41496:22;41521:3;:12;;41534:5;41521:19;;;;;;;;;;;;;;;;;;41496:44;;41559:5;:10;;;41571:5;:12;;;41551:33;;;;;41313:279;;;;;:::o;42810:319::-;42904:7;42924:16;42943:3;:12;;:17;42956:3;42943:17;;;;;;;;;;;;42924:36;;42991:1;42979:8;:13;;42994:12;42971:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43061:3;:12;;43085:1;43074:8;:12;43061:26;;;;;;;;;;;;;;;;;;:33;;;43054:40;;;42810:319;;;;;:::o;30639:109::-;30695:7;30722:3;:11;;:18;;;;30715:25;;30639:109;;;:::o;62853:604::-;62974:4;63001:15;:2;:13;;;:15::i;:::-;62996:60;;63040:4;63033:11;;;;62996:60;63066:23;63092:252;63145:45;;;63205:12;:10;:12::i;:::-;63232:4;63251:7;63273:5;63108:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63092:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63066:278;;63355:13;63382:10;63371:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63355:48;;48010:10;63432:16;;63422:26;;;:6;:26;;;;63414:35;;;;62853:604;;;;;;;:::o;59473:404::-;59567:1;59553:16;;:2;:16;;;;59545:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59626:16;59634:7;59626;:16::i;:::-;59625:17;59617:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59688:45;59717:1;59721:2;59725:7;59688:20;:45::i;:::-;59746:30;59768:7;59746:13;:17;59760:2;59746:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59789:29;59806:7;59815:2;59789:12;:16;;:29;;;;;:::i;:::-;;59861:7;59857:2;59836:33;;59853:1;59836:33;;;;;;;;;;;;59473:404;;:::o;40628:125::-;40699:4;40744:1;40723:3;:12;;:17;40736:3;40723:17;;;;;;;;;;;;:22;;40716:29;;40628:125;;;;:::o;28794:1544::-;28860:4;28978:18;28999:3;:12;;:19;29012:5;28999:19;;;;;;;;;;;;28978:40;;29049:1;29035:10;:15;29031:1300;;29397:21;29434:1;29421:10;:14;29397:38;;29450:17;29491:1;29470:3;:11;;:18;;;;:22;29450:42;;29737:17;29757:3;:11;;29769:9;29757:22;;;;;;;;;;;;;;;;29737:42;;29903:9;29874:3;:11;;29886:13;29874:26;;;;;;;;;;;;;;;:38;;;;30022:1;30006:13;:17;29980:3;:12;;:23;29993:9;29980:23;;;;;;;;;;;:43;;;;30132:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30227:3;:12;;:19;30240:5;30227:19;;;;;;;;;;;30220:26;;;30270:4;30263:11;;;;;;;;29031:1300;30314:5;30307:12;;;28794:1544;;;;;:::o;28204:414::-;28267:4;28289:21;28299:3;28304:5;28289:9;:21::i;:::-;28284:327;;28327:3;:11;;28344:5;28327:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28510:3;:11;;:18;;;;28488:3;:12;;:19;28501:5;28488:19;;;;;;;;;;;:40;;;;28550:4;28543:11;;;;28284:327;28594:5;28587:12;;28204:414;;;;;:::o;38128:692::-;38204:4;38320:16;38339:3;:12;;:17;38352:3;38339:17;;;;;;;;;;;;38320:36;;38385:1;38373:8;:13;38369:444;;;38440:3;:12;;38458:38;;;;;;;;38475:3;38458:38;;;;38488:5;38458:38;;;38440:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38655:3;:12;;:19;;;;38635:3;:12;;:17;38648:3;38635:17;;;;;;;;;;;:39;;;;38696:4;38689:11;;;;;38369:444;38769:5;38733:3;:12;;38757:1;38746:8;:12;38733:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38796:5;38789:12;;;38128:692;;;;;;:::o;19217:422::-;19277:4;19485:12;19596:7;19584:20;19576:28;;19630:1;19623:4;:8;19616:15;;;19217:422;;;:::o;22135:195::-;22238:12;22270:52;22292:6;22300:4;22306:1;22309:12;22270:21;:52::i;:::-;22263:59;;22135:195;;;;;:::o;30424:129::-;30497:4;30544:1;30521:3;:12;;:19;30534:5;30521:19;;;;;;;;;;;;:24;;30514:31;;30424:129;;;;:::o;23187:530::-;23314:12;23372:5;23347:21;:30;;23339:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23439:18;23450:6;23439:10;:18::i;:::-;23431:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23565:12;23579:23;23606:6;:11;;23626:5;23634:4;23606:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23564:75;;;;23657:52;23675:7;23684:10;23696:12;23657:17;:52::i;:::-;23650:59;;;;23187:530;;;;;;:::o;25727:742::-;25842:12;25871:7;25867:595;;;25902:10;25895:17;;;;25867:595;26036:1;26016:10;:17;:21;26012:439;;;26279:10;26273:17;26340:15;26327:10;26323:2;26319:19;26312:44;26227:148;26422:12;26415:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25727:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://3bd05e6286e208db5723c98e990d54e8baccd20459e37a22c2c0ed031ae7f62f
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.