ETH Price: $3,285.66 (+0.62%)
Gas: 33 Gwei

TestAcidApes (TACID)
 

Overview

TokenID

1068

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
AcidApes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-07
*/

// File: contracts/INuclearAcidVault.sol



pragma solidity 0.8.7;

interface INuclearAcidVault {
  function balanceOf(address account, uint256 id) external view returns (uint256 balance);
  function burnPotionForAddress(uint256 typeId, address burnTokenAddress) external;
}
// File: contracts/IFreshApesToken.sol



pragma solidity 0.8.7;

interface IFreshApesToken {
  function balanceOf(address owner) external view returns (uint256 balance);
  function ownerOf(uint256 tokenId) external view returns (address owner);
  function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
  function totalSupply() external view returns (uint256);
  function walletOfOwner(address owner) external view returns (uint256[] memory tokenIds);
}


// File: @openzeppelin/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^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/extensions/IERC721Enumerable.sol



pragma solidity ^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/extensions/IERC721Metadata.sol



pragma solidity ^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/ERC721.sol



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/AcidApes.sol



pragma solidity 0.8.7;







contract AcidApes is ERC721Enumerable, Ownable {
    
    using SafeMath for uint256;
    
    string public baseTokenURI; 

    uint256 public constant RESERVED_FOR_FA = 777;
    uint256 public constant SUPER_ACID_POTION_TYPE_ID = 1;
    uint256 public max_acid_beasts = 10;
    uint256 public price = 0.02 ether;
    uint256 public saleState = 0;  // 0 = paused, 1 = live
    uint256 public max_apes = 4000;
    uint256 public purchase_limit = 10;
    uint256 public nonreserved_minted_tokens = 0;
    uint256 public next_acid_beast_token_id = 4000; //new

    bool public holderMintActive = true; //TODO - take it out
    
    mapping (bytes32 => bool) private giveAwayMap;

    // withdraw address
    address public a1 = 0xA24237b3702A7E98878a71d0C018511AcA61E1a1;

    //FA contract address
    address public fa_contract = 0xbEe93b0DbCBa090A5d73cbDCf4a9f8559472f46D;

    //NAV contract address
    address public nav_contract = 0x8D403915886AE151e8c73cfe99e322a85A94670b;

    mapping (uint256 => uint256) public superAcidBeastById; //new
    
    //constructor takes in baseTokenURI, keccak256 hash list 
    constructor(string memory _baseTokenURI, bytes32[] memory _giveawayList ) ERC721("TestAcidApes","TACID") {
        setBaseURI(_baseTokenURI);

        for(uint256 i; i < _giveawayList.length; i++){
            giveAwayMap[_giveawayList[i]] = true;
        }

    }

    //function for claiming giveaways
    function claimGiveaway(string memory _claimPassword) public {
        bytes32 hash = keccak256(abi.encodePacked(_claimPassword));
        require( giveAwayMap[hash] != false, "Claim ID is not valid");
        uint256 mintedTokens = nonreserved_minted_tokens;
        require((nonreserved_minted_tokens + 1) <= (max_apes - RESERVED_FOR_FA), "Requested mints exceed remaining supply");
        giveAwayMap[hash] = false;
        nonreserved_minted_tokens = nonreserved_minted_tokens + 1;
        _safeMint( msg.sender, mintedTokens + RESERVED_FOR_FA);
    }
   

    //free mint for FA holders
    function holderMint(uint256 _tokenId, uint256 _potionType) public {

        uint256 _tokenIdToMint = _tokenId;

        if (_potionType == SUPER_ACID_POTION_TYPE_ID)
        {
            require( msg.sender  == ownerOf(_tokenIdToMint), "You must own the corresponding Acid Ape to mint this token");
            require( next_acid_beast_token_id < (max_acid_beasts + max_apes), "Max Acid Beasts have been minted"); 
            require( superAcidBeastById[_tokenIdToMint] == 0, "Ape has already consumed an acid barrel" );
            superAcidBeastById[_tokenIdToMint] = 1;
            _tokenIdToMint = next_acid_beast_token_id;
            next_acid_beast_token_id = next_acid_beast_token_id + 1;
        }
        else{
            //TODO look this over
            require( holderMintActive,          "Fresh Apes owner grant period has ended" );
            require(msg.sender == ownerOfFreshApes(_tokenId), "You must own the corresponding Fresh Ape to mint this token");
            require(_tokenIdToMint < RESERVED_FOR_FA, "Token ID exceeds Fresh Apes supply");
            require(!_exists(_tokenIdToMint),         "Ape has already consumed acid vial");
        }

        require( balanceOfNAVOwner(msg.sender,_potionType) > 0, "You must own at least one consumable of this type");

         burnPotion( _potionType, msg.sender);

        _safeMint(msg.sender, _tokenIdToMint);
    }

    //mint all available claims for FA holders
    function holderMintAll() public {
     
        uint256[] memory ownedTokens = walletOfFAOwner(msg.sender);

        for(uint256 i; i < ownedTokens.length; i++)
        {
            uint256 _curToken = ownedTokens[i];
            //token exist in Acid Apes? If yes, continue. If no, then call holderMint
            if( _exists(_curToken) )
            {
                continue;
            }
            else
            {     
                holderMint(_curToken, 0);
            }
        }
    }

    //mint all available claims for FA holders
    function holderMintList(uint256[] memory _tokens) public {
        
        for(uint256 i; i < _tokens.length; i++)
        {
            uint256 _curToken = _tokens[i];
            if( _exists(_curToken) )
            {
                continue;
            }
            else
            {     
                holderMint(_curToken,0);
            }

        }
    }
    
    //mint function
    function mintApes(uint256 num) public payable{
        uint256 mintedTokens = nonreserved_minted_tokens;
        require( saleState > 0,             "Main sale is not active" );
        require( num <= purchase_limit,     "Requested mints exceed maximum" );
        require((nonreserved_minted_tokens + num) <= (max_apes - RESERVED_FOR_FA), "Requested mints exceed remaining supply");
        require( msg.value >= price * num,  "Ether sent is insufficient" );

        nonreserved_minted_tokens = nonreserved_minted_tokens + num;
        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, mintedTokens + i + RESERVED_FOR_FA );
        }
    }

    function walletOfFAOwner(address _owner) public view returns (uint256[] memory) {
        IFreshApesToken freshApes = IFreshApesToken(fa_contract);
        return freshApes.walletOfOwner(_owner);
    }

    function ownerOfFreshApes(uint256 _tokenId) public view returns (address) {
        IFreshApesToken freshApes = IFreshApesToken(fa_contract);
        return freshApes.ownerOf(_tokenId);
    }

    function balanceOfFreshApesOwner(address _owner) public view returns (uint256) {
        IFreshApesToken freshApes = IFreshApesToken(fa_contract);
        return freshApes.balanceOf(_owner);
    }

    function balanceOfNAVOwner(address _owner, uint256 _id) public view returns (uint256) {
        INuclearAcidVault nav = INuclearAcidVault(nav_contract);
        return nav.balanceOf(_owner,_id);
    }

    function burnPotion(uint256 _typeId, address _burnTokenAddress) private {
        INuclearAcidVault nav = INuclearAcidVault(nav_contract);
        nav.burnPotionForAddress(_typeId, _burnTokenAddress);
    }

    //views
    
    //override so openzeppelin tokenURI() can utilize the baseTokenURI we set
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
    
    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

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


    function exists(uint256 _tokenId) public view returns (bool) {
        return _exists(_tokenId);
    }
    
    //setters
    
    //if eth moons, price may have to be adjusted
    function setPrice(uint256 _newPrice) public onlyOwner() {
        price = _newPrice;
    }
    
    function setMaxApes(uint256 _newMax) public onlyOwner{
        max_apes = _newMax;
    }

   function setNextAcidBeastTokenId(uint256 _newTokenId) public onlyOwner{
        next_acid_beast_token_id = _newTokenId;
    }

   function setMaxAcidBeasts(uint256 _newMax) public onlyOwner{
        max_acid_beasts = _newMax;
    }    

    function setPurchaseLimit(uint256 _newLimit) public onlyOwner{
        purchase_limit = _newLimit;
    }

    function setHolderMintActive(bool _isActive) public onlyOwner {
        holderMintActive = _isActive;
    }

    // 0 = paused, 1 = live 
    function setSaleState(uint256 _saleState) public onlyOwner {
        saleState = _saleState;
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }
    
    function setWithdrawAddress(address _a) public onlyOwner {
        a1 = _a;
    }

    function setFAContractAddress(address _a) public onlyOwner {
        fa_contract = _a;
    }

    function setNAVContractAddress(address _a) public onlyOwner {
        nav_contract = _a;
    }

    function setNonReservedMintedTokens(uint256 _reservedTokens) public onlyOwner {
        nonreserved_minted_tokens = _reservedTokens;
    }
    
    //creator utils
    //add keccak256 hashes
    function addToGiveawayList(bytes32[] memory _giveawayList) public onlyOwner {
        for(uint256 i; i < _giveawayList.length; i++){
            giveAwayMap[_giveawayList[i]] = true;
        }
    }

    function devMint(uint256[] memory _tokens, address _to) public onlyOwner {

        //require( !holderMintActive, "Fresh Apes owner grant period is still active" );

        for(uint256 i; i < _tokens.length; i++)
        {
            uint256 _curToken = _tokens[i];
            if( _exists(_curToken) )
            {
                continue;
            }
            else
            {     
                _safeMint(_to, _curToken);
            }

        }

    }

    function giveAway(address _to, uint256 _count) external onlyOwner() {
        uint256 mintedTokens = nonreserved_minted_tokens;
        require((nonreserved_minted_tokens + _count) <= (max_apes - RESERVED_FOR_FA), "Requested mints exceed remaining supply");
        //update minted token count
        nonreserved_minted_tokens = nonreserved_minted_tokens + _count;       
        for(uint256 i; i < _count; i++){
            _safeMint( _to, mintedTokens + i + RESERVED_FOR_FA);
        }
    }
    
    function withdrawBalance() public payable onlyOwner {
        uint256 _payment = address(this).balance;
        
        (bool success, ) = payable(a1).call{value: _payment}("");
        require(success, "Transfer failed to a1.");

    }
    
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"bytes32[]","name":"_giveawayList","type":"bytes32[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"RESERVED_FOR_FA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPER_ACID_POTION_TYPE_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_giveawayList","type":"bytes32[]"}],"name":"addToGiveawayList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOfFreshApesOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"balanceOfNAVOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_claimPassword","type":"string"}],"name":"claimGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokens","type":"uint256[]"},{"internalType":"address","name":"_to","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fa_contract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_potionType","type":"uint256"}],"name":"holderMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"holderMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holderMintAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokens","type":"uint256[]"}],"name":"holderMintList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_acid_beasts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_apes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mintApes","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nav_contract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"next_acid_beast_token_id","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonreserved_minted_tokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"ownerOfFreshApes","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchase_limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_a","type":"address"}],"name":"setFAContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setHolderMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxAcidBeasts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxApes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_a","type":"address"}],"name":"setNAVContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTokenId","type":"uint256"}],"name":"setNextAcidBeastTokenId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reservedTokens","type":"uint256"}],"name":"setNonReservedMintedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleState","type":"uint256"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_a","type":"address"}],"name":"setWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"superAcidBeastById","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfFAOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600a600c81905566470de4df820000600d556000600e819055610fa0600f8190556010929092556011556012556013805460ff19166001179055601580546001600160a01b031990811673a24237b3702a7e98878a71d0c018511aca61e1a11790915560168054821673bee93b0dbcba090a5d73cbdcf4a9f8559472f46d17905560178054909116738d403915886ae151e8c73cfe99e322a85a94670b179055348015620000b157600080fd5b5060405162003bda38038062003bda833981016040819052620000d491620003d9565b604080518082018252600c81526b54657374416369644170657360a01b602080830191825283518085019094526005845264151050d25160da1b9084015281519192916200012591600091620002a5565b5080516200013b906001906020840190620002a5565b5050506200015862000152620001d760201b60201c565b620001db565b62000163826200022d565b60005b8151811015620001ce576001601460008484815181106200018b576200018b62000558565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080620001c5906200052e565b91505062000166565b50505062000584565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200028c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620002a190600b906020840190620002a5565b5050565b828054620002b390620004f1565b90600052602060002090601f016020900481019282620002d7576000855562000322565b82601f10620002f257805160ff191683800117855562000322565b8280016001018555821562000322579182015b828111156200032257825182559160200191906001019062000305565b506200033092915062000334565b5090565b5b8082111562000330576000815560010162000335565b600082601f8301126200035d57600080fd5b815160206001600160401b038211156200037b576200037b6200056e565b8160051b6200038c828201620004be565b838152828101908684018388018501891015620003a857600080fd5b600093505b85841015620003cd578051835260019390930192918401918401620003ad565b50979650505050505050565b60008060408385031215620003ed57600080fd5b82516001600160401b03808211156200040557600080fd5b818501915085601f8301126200041a57600080fd5b8151818111156200042f576200042f6200056e565b602062000445601f8301601f19168201620004be565b82815288828487010111156200045a57600080fd5b60005b838110156200047a5785810183015182820184015282016200045d565b838111156200048c5760008385840101525b509087015190955092505080821115620004a557600080fd5b50620004b4858286016200034b565b9150509250929050565b604051601f8201601f191681016001600160401b0381118282101715620004e957620004e96200056e565b604052919050565b600181811c908216806200050657607f821691505b602082108114156200052857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200055157634e487b7160e01b600052601160045260246000fd5b5060010190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b61364680620005946000396000f3fe6080604052600436106103a25760003560e01c8063646b0f29116101e7578063a59cf4c91161010d578063d547cfb7116100a0578063f2fde38b1161006f578063f2fde38b14610a84578063f980b89d14610aa4578063f986fa2114610ad1578063f9fcf42914610af157600080fd5b8063d547cfb7146109f0578063d694e95014610a05578063de736f7c14610a1b578063e985e9c514610a3b57600080fd5b8063c87b56dd116100dc578063c87b56dd1461097b578063c896f7511461099b578063ca800144146109b0578063cd8ab454146109d057600080fd5b8063a59cf4c914610905578063b4020db11461091b578063b88d4fde1461093b578063c84bb62f1461095b57600080fd5b80638da5cb5b116101855780639bc0aea1116101545780639bc0aea11461088f5780639cb95cd8146108af578063a035b1fe146108cf578063a22cb465146108e557600080fd5b80638da5cb5b1461081c57806391b7f5ed1461083a57806395d89b411461085a57806396e0c4a41461086f57600080fd5b806370a08231116101c157806370a08231146107bb578063715018a6146107db57806380aa91e0146107f05780638d5e68721461080657600080fd5b8063646b0f29146107655780636edc43881461077b5780636ffb7f881461079b57600080fd5b80633ab1a494116102cc5780634f558e791161026a578063603f4d5211610239578063603f4d52146106fc57806361715215146107125780636352211e146107255780636406c3e51461074557600080fd5b80634f558e79146106945780634f6ccce7146106b457806355f804b3146106d45780635fd8c710146106f457600080fd5b8063438b6300116102a6578063438b630014610607578063462559db1461063457806348d65257146106545780634a4b23671461067457600080fd5b80633ab1a494146105a75780633b07ebd2146105c757806342842e0e146105e757600080fd5b8063161254611161034457806323b872dd1161031357806323b872dd1461052d5780632668a3c11461054d57806329e26965146105675780632f745c591461058757600080fd5b806316125461146104b8578063175bca76146104d857806318160ddd146104f857806321871c061461051757600080fd5b8063081812fc11610380578063081812fc14610420578063084c408814610458578063095ea7b314610478578063119552a11461049857600080fd5b806301ffc9a7146103a757806306fdde03146103dc5780630710a88b146103fe575b600080fd5b3480156103b357600080fd5b506103c76103c2366004613129565b610b06565b60405190151581526020015b60405180910390f35b3480156103e857600080fd5b506103f1610b31565b6040516103d391906132f8565b34801561040a57600080fd5b5061041e610419366004612f6e565b610bc3565b005b34801561042c57600080fd5b5061044061043b3660046131ac565b610c5e565b6040516001600160a01b0390911681526020016103d3565b34801561046457600080fd5b5061041e6104733660046131ac565b610ce6565b34801561048457600080fd5b5061041e610493366004612f42565b610d15565b3480156104a457600080fd5b50601554610440906001600160a01b031681565b3480156104c457600080fd5b5061041e6104d33660046130c7565b610e2b565b3480156104e457600080fd5b5061041e6104f3366004612dd9565b610eb1565b34801561050457600080fd5b506008545b6040519081526020016103d3565b34801561052357600080fd5b5061050960125481565b34801561053957600080fd5b5061041e610548366004612e4c565b610efd565b34801561055957600080fd5b506013546103c79060ff1681565b34801561057357600080fd5b5061041e6105823660046131ac565b610f2e565b34801561059357600080fd5b506105096105a2366004612f42565b610f5d565b3480156105b357600080fd5b5061041e6105c2366004612dd9565b610ff3565b3480156105d357600080fd5b5061041e6105e23660046131de565b61103f565b3480156105f357600080fd5b5061041e610602366004612e4c565b611404565b34801561061357600080fd5b50610627610622366004612dd9565b61141f565b6040516103d391906132b4565b34801561064057600080fd5b5061041e61064f366004612dd9565b6114c1565b34801561066057600080fd5b5061041e61066f3660046131ac565b61150d565b34801561068057600080fd5b5061044061068f3660046131ac565b61153c565b3480156106a057600080fd5b506103c76106af3660046131ac565b6115c2565b3480156106c057600080fd5b506105096106cf3660046131ac565b6115cd565b3480156106e057600080fd5b5061041e6106ef366004613163565b611660565b61041e61169d565b34801561070857600080fd5b50610509600e5481565b61041e6107203660046131ac565b611767565b34801561073157600080fd5b506104406107403660046131ac565b6118f2565b34801561075157600080fd5b5061041e61076036600461310e565b611969565b34801561077157600080fd5b5061050961030981565b34801561078757600080fd5b5061041e6107963660046131ac565b6119a6565b3480156107a757600080fd5b5061041e6107b6366004613006565b6119d5565b3480156107c757600080fd5b506105096107d6366004612dd9565b611a32565b3480156107e757600080fd5b5061041e611ab9565b3480156107fc57600080fd5b50610509600c5481565b34801561081257600080fd5b50610509600f5481565b34801561082857600080fd5b50600a546001600160a01b0316610440565b34801561084657600080fd5b5061041e6108553660046131ac565b611aef565b34801561086657600080fd5b506103f1611b1e565b34801561087b57600080fd5b5061041e61088a3660046131ac565b611b2d565b34801561089b57600080fd5b50601754610440906001600160a01b031681565b3480156108bb57600080fd5b506105096108ca366004612f42565b611b5c565b3480156108db57600080fd5b50610509600d5481565b3480156108f157600080fd5b5061041e610900366004612f0d565b611be9565b34801561091157600080fd5b5061050960115481565b34801561092757600080fd5b50601654610440906001600160a01b031681565b34801561094757600080fd5b5061041e610956366004612e8d565b611cae565b34801561096757600080fd5b5061041e6109763660046131ac565b611ce6565b34801561098757600080fd5b506103f16109963660046131ac565b611d15565b3480156109a757600080fd5b50610509600181565b3480156109bc57600080fd5b5061041e6109cb366004612f42565b611ddf565b3480156109dc57600080fd5b5061041e6109eb366004613163565b611e87565b3480156109fc57600080fd5b506103f1611f7f565b348015610a1157600080fd5b5061050960105481565b348015610a2757600080fd5b50610627610a36366004612dd9565b61200d565b348015610a4757600080fd5b506103c7610a56366004612e13565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a9057600080fd5b5061041e610a9f366004612dd9565b612090565b348015610ab057600080fd5b50610509610abf3660046131ac565b60186020526000908152604090205481565b348015610add57600080fd5b50610509610aec366004612dd9565b61212b565b348015610afd57600080fd5b5061041e6121ab565b60006001600160e01b0319821663780e9d6360e01b1480610b2b5750610b2b82612215565b92915050565b606060008054610b409061350d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6c9061350d565b8015610bb95780601f10610b8e57610100808354040283529160200191610bb9565b820191906000526020600020905b815481529060010190602001808311610b9c57829003601f168201915b5050505050905090565b600a546001600160a01b03163314610bf65760405162461bcd60e51b8152600401610bed906133a4565b60405180910390fd5b60005b8151811015610c5a57600160146000848481518110610c1a57610c1a6135b9565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c5290613548565b915050610bf9565b5050565b6000610c6982612265565b610cca5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bed565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b03163314610d105760405162461bcd60e51b8152600401610bed906133a4565b600e55565b6000610d20826118f2565b9050806001600160a01b0316836001600160a01b03161415610d8e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bed565b336001600160a01b0382161480610daa5750610daa8133610a56565b610e1c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bed565b610e268383612282565b505050565b600a546001600160a01b03163314610e555760405162461bcd60e51b8152600401610bed906133a4565b60005b8251811015610e26576000838281518110610e7557610e756135b9565b60200260200101519050610e8881612265565b15610e935750610e9f565b610e9d83826122f0565b505b80610ea981613548565b915050610e58565b600a546001600160a01b03163314610edb5760405162461bcd60e51b8152600401610bed906133a4565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b610f07338261230a565b610f235760405162461bcd60e51b8152600401610bed906133d9565b610e268383836123f0565b600a546001600160a01b03163314610f585760405162461bcd60e51b8152600401610bed906133a4565b601155565b6000610f6883611a32565b8210610fca5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bed565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461101d5760405162461bcd60e51b8152600401610bed906133a4565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b8160018214156111cf57611052816118f2565b6001600160a01b0316336001600160a01b0316146110d85760405162461bcd60e51b815260206004820152603a60248201527f596f75206d757374206f776e2074686520636f72726573706f6e64696e67204160448201527f6369642041706520746f206d696e74207468697320746f6b656e0000000000006064820152608401610bed565b600f54600c546110e8919061347f565b601254106111385760405162461bcd60e51b815260206004820181905260248201527f4d61782041636964204265617374732068617665206265656e206d696e7465646044820152606401610bed565b600081815260186020526040902054156111a45760405162461bcd60e51b815260206004820152602760248201527f4170652068617320616c726561647920636f6e73756d656420616e20616369646044820152660818985c9c995b60ca1b6064820152608401610bed565b6000908152601860205260409020600190819055601254906111c790829061347f565b60125561137d565b60135460ff166112315760405162461bcd60e51b815260206004820152602760248201527f46726573682041706573206f776e6572206772616e7420706572696f642068616044820152661cc8195b99195960ca1b6064820152608401610bed565b61123a8361153c565b6001600160a01b0316336001600160a01b0316146112c05760405162461bcd60e51b815260206004820152603b60248201527f596f75206d757374206f776e2074686520636f72726573706f6e64696e67204660448201527f726573682041706520746f206d696e74207468697320746f6b656e00000000006064820152608401610bed565b610309811061131c5760405162461bcd60e51b815260206004820152602260248201527f546f6b656e2049442065786365656473204672657368204170657320737570706044820152616c7960f01b6064820152608401610bed565b61132581612265565b1561137d5760405162461bcd60e51b815260206004820152602260248201527f4170652068617320616c726561647920636f6e73756d65642061636964207669604482015261185b60f21b6064820152608401610bed565b60006113893384611b5c565b116113f05760405162461bcd60e51b815260206004820152603160248201527f596f75206d757374206f776e206174206c65617374206f6e6520636f6e73756d60448201527061626c65206f662074686973207479706560781b6064820152608401610bed565b6113fa823361259b565b610e2633826122f0565b610e2683838360405180602001604052806000815250611cae565b6060600061142c83611a32565b905060008167ffffffffffffffff811115611449576114496135cf565b604051908082528060200260200182016040528015611472578160200160208202803683370190505b50905060005b828110156114b95761148a8582610f5d565b82828151811061149c5761149c6135b9565b6020908102919091010152806114b181613548565b915050611478565b509392505050565b600a546001600160a01b031633146114eb5760405162461bcd60e51b8152600401610bed906133a4565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146115375760405162461bcd60e51b8152600401610bed906133a4565b601255565b6016546040516331a9108f60e11b8152600481018390526000916001600160a01b0316908190636352211e9060240160206040518083038186803b15801561158357600080fd5b505afa158015611597573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115bb9190612df6565b9392505050565b6000610b2b82612265565b60006115d860085490565b821061163b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bed565b6008828154811061164e5761164e6135b9565b90600052602060002001549050919050565b600a546001600160a01b0316331461168a5760405162461bcd60e51b8152600401610bed906133a4565b8051610c5a90600b906020840190612c61565b600a546001600160a01b031633146116c75760405162461bcd60e51b8152600401610bed906133a4565b60155460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114611718576040519150601f19603f3d011682016040523d82523d6000602084013e61171d565b606091505b5050905080610c5a5760405162461bcd60e51b81526020600482015260166024820152752a3930b739b332b9103330b4b632b2103a379030989760511b6044820152606401610bed565b601154600e546117b95760405162461bcd60e51b815260206004820152601760248201527f4d61696e2073616c65206973206e6f74206163746976650000000000000000006044820152606401610bed565b60105482111561180b5760405162461bcd60e51b815260206004820152601e60248201527f526571756573746564206d696e747320657863656564206d6178696d756d00006044820152606401610bed565b610309600f5461181b91906134ca565b82601154611829919061347f565b11156118475760405162461bcd60e51b8152600401610bed9061335d565b81600d5461185591906134ab565b3410156118a45760405162461bcd60e51b815260206004820152601a60248201527f45746865722073656e7420697320696e73756666696369656e740000000000006044820152606401610bed565b816011546118b2919061347f565b60115560005b82811015610e26576118e0336103096118d1848661347f565b6118db919061347f565b6122f0565b806118ea81613548565b9150506118b8565b6000818152600260205260408120546001600160a01b031680610b2b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bed565b600a546001600160a01b031633146119935760405162461bcd60e51b8152600401610bed906133a4565b6013805460ff1916911515919091179055565b600a546001600160a01b031633146119d05760405162461bcd60e51b8152600401610bed906133a4565b601055565b60005b8151811015610c5a5760008282815181106119f5576119f56135b9565b60200260200101519050611a0881612265565b15611a135750611a20565b611a1e81600061103f565b505b80611a2a81613548565b9150506119d8565b60006001600160a01b038216611a9d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bed565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611ae35760405162461bcd60e51b8152600401610bed906133a4565b611aed6000612608565b565b600a546001600160a01b03163314611b195760405162461bcd60e51b8152600401610bed906133a4565b600d55565b606060018054610b409061350d565b600a546001600160a01b03163314611b575760405162461bcd60e51b8152600401610bed906133a4565b600c55565b601754604051627eeac760e11b81526001600160a01b038481166004830152602482018490526000921690819062fdd58e9060440160206040518083038186803b158015611ba957600080fd5b505afa158015611bbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611be191906131c5565b949350505050565b6001600160a01b038216331415611c425760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bed565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611cb8338361230a565b611cd45760405162461bcd60e51b8152600401610bed906133d9565b611ce08484848461265a565b50505050565b600a546001600160a01b03163314611d105760405162461bcd60e51b8152600401610bed906133a4565b600f55565b6060611d2082612265565b611d845760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bed565b6000611d8e61268d565b90506000815111611dae57604051806020016040528060008152506115bb565b80611db88461269c565b604051602001611dc9929190613248565b6040516020818303038152906040529392505050565b600a546001600160a01b03163314611e095760405162461bcd60e51b8152600401610bed906133a4565b601154600f54611e1c90610309906134ca565b82601154611e2a919061347f565b1115611e485760405162461bcd60e51b8152600401610bed9061335d565b81601154611e56919061347f565b60115560005b82811015611ce057611e75846103096118d1848661347f565b80611e7f81613548565b915050611e5c565b600081604051602001611e9a919061322c565b60408051601f1981840301815291815281516020928301206000818152601490935291205490915060ff16611f095760405162461bcd60e51b815260206004820152601560248201527410db185a5b481251081a5cc81b9bdd081d985b1a59605a1b6044820152606401610bed565b601154600f54611f1c90610309906134ca565b601154611f2a90600161347f565b1115611f485760405162461bcd60e51b8152600401610bed9061335d565b6000828152601460205260409020805460ff19169055601154611f6c90600161347f565b601155610e26336118db6103098461347f565b600b8054611f8c9061350d565b80601f0160208091040260200160405190810160405280929190818152602001828054611fb89061350d565b80156120055780601f10611fda57610100808354040283529160200191612005565b820191906000526020600020905b815481529060010190602001808311611fe857829003601f168201915b505050505081565b60165460405162438b6360e81b81526001600160a01b0383811660048301526060921690819063438b63009060240160006040518083038186803b15801561205457600080fd5b505afa158015612068573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115bb919081019061303b565b600a546001600160a01b031633146120ba5760405162461bcd60e51b8152600401610bed906133a4565b6001600160a01b03811661211f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bed565b61212881612608565b50565b6016546040516370a0823160e01b81526001600160a01b038381166004830152600092169081906370a082319060240160206040518083038186803b15801561217357600080fd5b505afa158015612187573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115bb91906131c5565b60006121b63361200d565b905060005b8151811015610c5a5760008282815181106121d8576121d86135b9565b602002602001015190506121eb81612265565b156121f65750612203565b61220181600061103f565b505b8061220d81613548565b9150506121bb565b60006001600160e01b031982166380ac58cd60e01b148061224657506001600160e01b03198216635b5e139f60e01b145b80610b2b57506301ffc9a760e01b6001600160e01b0319831614610b2b565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122b7826118f2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610c5a82826040518060200160405280600081525061279a565b600061231582612265565b6123765760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bed565b6000612381836118f2565b9050806001600160a01b0316846001600160a01b031614806123bc5750836001600160a01b03166123b184610c5e565b6001600160a01b0316145b80611be157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611be1565b826001600160a01b0316612403826118f2565b6001600160a01b03161461246b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bed565b6001600160a01b0382166124cd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bed565b6124d88383836127cd565b6124e3600082612282565b6001600160a01b038316600090815260036020526040812080546001929061250c9084906134ca565b90915550506001600160a01b038216600090815260036020526040812080546001929061253a90849061347f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60175460405163ceff7a8f60e01b8152600481018490526001600160a01b03838116602483015290911690819063ceff7a8f90604401600060405180830381600087803b1580156125eb57600080fd5b505af11580156125ff573d6000803e3d6000fd5b50505050505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6126658484846123f0565b61267184848484612885565b611ce05760405162461bcd60e51b8152600401610bed9061330b565b6060600b8054610b409061350d565b6060816126c05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126ea57806126d481613548565b91506126e39050600a83613497565b91506126c4565b60008167ffffffffffffffff811115612705576127056135cf565b6040519080825280601f01601f19166020018201604052801561272f576020820181803683370190505b5090505b8415611be1576127446001836134ca565b9150612751600a86613563565b61275c90603061347f565b60f81b818381518110612771576127716135b9565b60200101906001600160f81b031916908160001a905350612793600a86613497565b9450612733565b6127a48383612992565b6127b16000848484612885565b610e265760405162461bcd60e51b8152600401610bed9061330b565b6001600160a01b0383166128285761282381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61284b565b816001600160a01b0316836001600160a01b03161461284b5761284b8382612ad1565b6001600160a01b03821661286257610e2681612b6e565b826001600160a01b0316826001600160a01b031614610e2657610e268282612c1d565b60006001600160a01b0384163b1561298757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906128c9903390899088908890600401613277565b602060405180830381600087803b1580156128e357600080fd5b505af1925050508015612913575060408051601f3d908101601f1916820190925261291091810190613146565b60015b61296d573d808015612941576040519150601f19603f3d011682016040523d82523d6000602084013e612946565b606091505b5080516129655760405162461bcd60e51b8152600401610bed9061330b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611be1565b506001949350505050565b6001600160a01b0382166129e85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bed565b6129f181612265565b15612a3e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bed565b612a4a600083836127cd565b6001600160a01b0382166000908152600360205260408120805460019290612a7390849061347f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612ade84611a32565b612ae891906134ca565b600083815260076020526040902054909150808214612b3b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612b80906001906134ca565b60008381526009602052604081205460088054939450909284908110612ba857612ba86135b9565b906000526020600020015490508060088381548110612bc957612bc96135b9565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c0157612c016135a3565b6001900381819060005260206000200160009055905550505050565b6000612c2883611a32565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612c6d9061350d565b90600052602060002090601f016020900481019282612c8f5760008555612cd5565b82601f10612ca857805160ff1916838001178555612cd5565b82800160010185558215612cd5579182015b82811115612cd5578251825591602001919060010190612cba565b50612ce1929150612ce5565b5090565b5b80821115612ce15760008155600101612ce6565b600067ffffffffffffffff831115612d1457612d146135cf565b612d27601f8401601f191660200161342a565b9050828152838383011115612d3b57600080fd5b828260208301376000602084830101529392505050565b600082601f830112612d6357600080fd5b81356020612d78612d738361345b565b61342a565b80838252828201915082860187848660051b8901011115612d9857600080fd5b60005b85811015612db757813584529284019290840190600101612d9b565b5090979650505050505050565b80358015158114612dd457600080fd5b919050565b600060208284031215612deb57600080fd5b81356115bb816135e5565b600060208284031215612e0857600080fd5b81516115bb816135e5565b60008060408385031215612e2657600080fd5b8235612e31816135e5565b91506020830135612e41816135e5565b809150509250929050565b600080600060608486031215612e6157600080fd5b8335612e6c816135e5565b92506020840135612e7c816135e5565b929592945050506040919091013590565b60008060008060808587031215612ea357600080fd5b8435612eae816135e5565b93506020850135612ebe816135e5565b925060408501359150606085013567ffffffffffffffff811115612ee157600080fd5b8501601f81018713612ef257600080fd5b612f0187823560208401612cfa565b91505092959194509250565b60008060408385031215612f2057600080fd5b8235612f2b816135e5565b9150612f3960208401612dc4565b90509250929050565b60008060408385031215612f5557600080fd5b8235612f60816135e5565b946020939093013593505050565b60006020808385031215612f8157600080fd5b823567ffffffffffffffff811115612f9857600080fd5b8301601f81018513612fa957600080fd5b8035612fb7612d738261345b565b80828252848201915084840188868560051b8701011115612fd757600080fd5b600094505b83851015612ffa578035835260019490940193918501918501612fdc565b50979650505050505050565b60006020828403121561301857600080fd5b813567ffffffffffffffff81111561302f57600080fd5b611be184828501612d52565b6000602080838503121561304e57600080fd5b825167ffffffffffffffff81111561306557600080fd5b8301601f8101851361307657600080fd5b8051613084612d738261345b565b80828252848201915084840188868560051b87010111156130a457600080fd5b600094505b83851015612ffa5780518352600194909401939185019185016130a9565b600080604083850312156130da57600080fd5b823567ffffffffffffffff8111156130f157600080fd5b6130fd85828601612d52565b9250506020830135612e41816135e5565b60006020828403121561312057600080fd5b6115bb82612dc4565b60006020828403121561313b57600080fd5b81356115bb816135fa565b60006020828403121561315857600080fd5b81516115bb816135fa565b60006020828403121561317557600080fd5b813567ffffffffffffffff81111561318c57600080fd5b8201601f8101841361319d57600080fd5b611be184823560208401612cfa565b6000602082840312156131be57600080fd5b5035919050565b6000602082840312156131d757600080fd5b5051919050565b600080604083850312156131f157600080fd5b50508035926020909101359150565b600081518084526132188160208601602086016134e1565b601f01601f19169290920160200192915050565b6000825161323e8184602087016134e1565b9190910192915050565b6000835161325a8184602088016134e1565b83519083019061326e8183602088016134e1565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906132aa90830184613200565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156132ec578351835292840192918401916001016132d0565b50909695505050505050565b6020815260006115bb6020830184613200565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f526571756573746564206d696e7473206578636565642072656d61696e696e6760408201526620737570706c7960c81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715613453576134536135cf565b604052919050565b600067ffffffffffffffff821115613475576134756135cf565b5060051b60200190565b6000821982111561349257613492613577565b500190565b6000826134a6576134a661358d565b500490565b60008160001904831182151516156134c5576134c5613577565b500290565b6000828210156134dc576134dc613577565b500390565b60005b838110156134fc5781810151838201526020016134e4565b83811115611ce05750506000910152565b600181811c9082168061352157607f821691505b6020821081141561354257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561355c5761355c613577565b5060010190565b6000826135725761357261358d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461212857600080fd5b6001600160e01b03198116811461212857600080fdfea26469706673582212203eadb386088c62ab08bc86825f41e991b882cc47aad6a45399a5704717607a4864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000003ce2809c697066733a2f2f516d51694d34474e6d79436f433365655265644a5563364155454534593162795239736775424a483353553764682fe2809c00000000000000000000000000000000000000000000000000000000000000000000003c2cb11e53131da3986222a02e27ba791e18e33fe4e30c5261650c337d3191e430521e01f3c8675e968cb2dfbed38dfd4e818e11bf1e26efb9b6eb147edb21684f0e489aef2357e04871e1a1f2aea97978b3d209b4a0b174b77f29a3fa9cb117fd3df4c6415e960201c14ef0cbf6b55acd5876da348a698cc75b6c74d34ac454244920d0e9e8f55f4543696bdc1202f3d671aabf8a65500fe288073191e90702a8f259b9523313edec04f7cee93ddbb279325f7c1f11919b9970bb4b8d56d82d5471e48599b3611738bed50e05505673c084d6938051dc63c447ec0cd4ce5ac4dbc2b2607aae31fe9903a1ea4fa92eccdfa3a1b85cdada079aaefd5d98994bd482b46bb2d4fb2e500f89dc448d5c597f6c0ebf03ba9e0223a372129341e368b8f72b51d48d21e5e9fb4a8ed674fa3df52d67099bacc5896864052070256544afeaabea1ee7aa47da6336aa0621b174c99c7168d2b6124c660a07269670f12240bc2e2fb9111f56410157f71100cb8aad884ba994fafba8ae250c591b15a4145b1e70d4e1f7af97c94501091c795b3572edd06ac854799a972a5a073cb687b1f2a07acec9f1c815ac356083e1ec6930bc32690ca75a51998a0b0ef621a8a9ee9ae846e4ef4fc63afc7b6e282323c5af3bb24c5a13b70fc9d849794738f507e7015a36f0a8d4b821d8017decea9984388372ae4adf97e520c7fa62efda67367361eb2d23a901efd630c00fac05eae5fa5282845ba6a3fe42458896512af01f6d9f41ef6a1abc9bec6556534da28a079bd8c9df4753d3736160d6a5970e9e3e6acef32dfa7e681f6e579b77457d97248fd74cf800ce5dc48d260b75760596942fe78f170c79f46634d5894644e6e7276fdb61d1105a45f4b3f5345fc41a820bf56f745a86d030baba8880ed3acd1b73aa1068afd36ad22ec55a7cea4da2be5fabee43b75113518651dfaad7b158d60e73ee34053812a85181922c211253dceb61c77ab988a8f0851eae03d644576debb9e7eaeb03f2f055b314ec32cba206c9097fe1786cc2e82b098bb542ef976ee16434a0110dc5faa878380082fb00cb5bf90917c424545ec40f80cef34ad19f431978e4575af97e4d704e7b66687ae463334ebf9b2f45daddb93a7eeb17e9e7bea27c2bdcc048f0892082e632f78d7b24e6bf05eec2005af5c649ac6b285ccd9d6e63e0bee8b24ea3382c097d6c6fd5337a1cab182e6aea854886bc68c801a3b097ec98dc36f12523c96a1aea95392730c2dddfd5c9681768c44f4b3bfa7c11d3b5e586248f471a29d8d56551176c0155d2102f7039fcf62d748210e79069233c53ef8a73d73d567b63790f42f1972010f27cb57160501baaf835a9cf26a79496702a506eb5a433bac1a71c67d441c1ac4b89048449f74ef40dde35dc6b380046923275d2bc7ba49a096152d61d887f6919e006394b9489b57f2bbf493f460418f92892a213028bdf904172057b20556f96e2cad85c3a890a345c7d32623eaf5dbbd9b80a7f27cbe6edeeacf96bdfe4fee8cf8acce015b34ac1dcb0ddaaf884ad2d044977987093330dcc1cc0cb3e4384a870ab9c260f32b1e0eccee0aa4079392256618cee7a7df47203cb9a394971b1119071f1b78141e2dabf81fe7d3e467f929b22f95310b197ad572e2ab78565add61b447847d4baf243cef8c4a69c59a6155680d34dcf8d78b979b401434af1091b23eb521771150e06dfbf29de082ae0f24ca1943104503c1a603f4b5d4fbf39d981df22c89c32dd943db74a870c626f501517b16d157fc64cdbb6a6490e8b3aebff067ffca9858c2f052a7323e7bc9822195a802e93b8acd5f4ae81bb38673ea192c9387dcb9ee8e0a504f4c4867f6e338ca041c80774d416b4219e55a73f2b958ca947f9bb7341f02775a54e7d6fbe81536a766905fbf93c755db9f3a153046a97fbfe55886ed598574c1b3202d3b8fb55df3b104726dc5b86b10e8adaa599df0af50a073fe68dc28e8c4741c2ea06b0d73d23faa8245839a778649aeb90b0a14fa4c1af51bb24f7379f498c4f72f65eb2d61e638fef85b3d26d3abf1942a1e3e8c22df5bbe0b0459494f8f2b2e3dfede84b260f70f3a441fb5fe96f42c55d40a28cdfc96753df106ab199889705669b290439010e89a8861aa5aa51b02e2cc130eaa2f8d6fb6ed7e1b6b6a2d4b3237e221fd7e62bea4e1478f51ea2c2d5951e0ef647ce7c06c97ed67b0d307dd0316b6d95f5de68dd513b05c34e25e21a78ab34b8d231393e780c5d5c1b4382de41ef1fb7383244ed308639063b9007562aa9c5a46b1cb9b06bc453d82a8699f09e4fb6c36b63fa240c96740693c145d6bda03df592df5f3c6b5965860b9c84737b921566615d8f4349f488dd468035e696f452adae438b6e03f6eabb8e4e806c7d4507de42e65ba9c12645fc3a7993052c82a2009a5da0b7fd4fb0ee3a1748e217e73a8b3c17ecdb5e82054b27de9dc5808730477cb74eb5bc6588ac8c70ab4d3b9a042775cfe6933104118b1b1c91528637950ec38e1d8fa4eb0ee7f00d4b0d31b92b4b17374f3eeab1a95474d6f8bb7bda167c25f82d3a3d9b1474291e86e0f942363a370fa6a3a912db2dafada6c7b421e6ca7de789240f798ebb92f545c574b0ed2da15dc60050facbec039b5c7c926dcf57f4685c2039c543ce820c6d30bd1bdbbbf68f75d990ad82409200dd40c9d7ad81

Deployed Bytecode

0x6080604052600436106103a25760003560e01c8063646b0f29116101e7578063a59cf4c91161010d578063d547cfb7116100a0578063f2fde38b1161006f578063f2fde38b14610a84578063f980b89d14610aa4578063f986fa2114610ad1578063f9fcf42914610af157600080fd5b8063d547cfb7146109f0578063d694e95014610a05578063de736f7c14610a1b578063e985e9c514610a3b57600080fd5b8063c87b56dd116100dc578063c87b56dd1461097b578063c896f7511461099b578063ca800144146109b0578063cd8ab454146109d057600080fd5b8063a59cf4c914610905578063b4020db11461091b578063b88d4fde1461093b578063c84bb62f1461095b57600080fd5b80638da5cb5b116101855780639bc0aea1116101545780639bc0aea11461088f5780639cb95cd8146108af578063a035b1fe146108cf578063a22cb465146108e557600080fd5b80638da5cb5b1461081c57806391b7f5ed1461083a57806395d89b411461085a57806396e0c4a41461086f57600080fd5b806370a08231116101c157806370a08231146107bb578063715018a6146107db57806380aa91e0146107f05780638d5e68721461080657600080fd5b8063646b0f29146107655780636edc43881461077b5780636ffb7f881461079b57600080fd5b80633ab1a494116102cc5780634f558e791161026a578063603f4d5211610239578063603f4d52146106fc57806361715215146107125780636352211e146107255780636406c3e51461074557600080fd5b80634f558e79146106945780634f6ccce7146106b457806355f804b3146106d45780635fd8c710146106f457600080fd5b8063438b6300116102a6578063438b630014610607578063462559db1461063457806348d65257146106545780634a4b23671461067457600080fd5b80633ab1a494146105a75780633b07ebd2146105c757806342842e0e146105e757600080fd5b8063161254611161034457806323b872dd1161031357806323b872dd1461052d5780632668a3c11461054d57806329e26965146105675780632f745c591461058757600080fd5b806316125461146104b8578063175bca76146104d857806318160ddd146104f857806321871c061461051757600080fd5b8063081812fc11610380578063081812fc14610420578063084c408814610458578063095ea7b314610478578063119552a11461049857600080fd5b806301ffc9a7146103a757806306fdde03146103dc5780630710a88b146103fe575b600080fd5b3480156103b357600080fd5b506103c76103c2366004613129565b610b06565b60405190151581526020015b60405180910390f35b3480156103e857600080fd5b506103f1610b31565b6040516103d391906132f8565b34801561040a57600080fd5b5061041e610419366004612f6e565b610bc3565b005b34801561042c57600080fd5b5061044061043b3660046131ac565b610c5e565b6040516001600160a01b0390911681526020016103d3565b34801561046457600080fd5b5061041e6104733660046131ac565b610ce6565b34801561048457600080fd5b5061041e610493366004612f42565b610d15565b3480156104a457600080fd5b50601554610440906001600160a01b031681565b3480156104c457600080fd5b5061041e6104d33660046130c7565b610e2b565b3480156104e457600080fd5b5061041e6104f3366004612dd9565b610eb1565b34801561050457600080fd5b506008545b6040519081526020016103d3565b34801561052357600080fd5b5061050960125481565b34801561053957600080fd5b5061041e610548366004612e4c565b610efd565b34801561055957600080fd5b506013546103c79060ff1681565b34801561057357600080fd5b5061041e6105823660046131ac565b610f2e565b34801561059357600080fd5b506105096105a2366004612f42565b610f5d565b3480156105b357600080fd5b5061041e6105c2366004612dd9565b610ff3565b3480156105d357600080fd5b5061041e6105e23660046131de565b61103f565b3480156105f357600080fd5b5061041e610602366004612e4c565b611404565b34801561061357600080fd5b50610627610622366004612dd9565b61141f565b6040516103d391906132b4565b34801561064057600080fd5b5061041e61064f366004612dd9565b6114c1565b34801561066057600080fd5b5061041e61066f3660046131ac565b61150d565b34801561068057600080fd5b5061044061068f3660046131ac565b61153c565b3480156106a057600080fd5b506103c76106af3660046131ac565b6115c2565b3480156106c057600080fd5b506105096106cf3660046131ac565b6115cd565b3480156106e057600080fd5b5061041e6106ef366004613163565b611660565b61041e61169d565b34801561070857600080fd5b50610509600e5481565b61041e6107203660046131ac565b611767565b34801561073157600080fd5b506104406107403660046131ac565b6118f2565b34801561075157600080fd5b5061041e61076036600461310e565b611969565b34801561077157600080fd5b5061050961030981565b34801561078757600080fd5b5061041e6107963660046131ac565b6119a6565b3480156107a757600080fd5b5061041e6107b6366004613006565b6119d5565b3480156107c757600080fd5b506105096107d6366004612dd9565b611a32565b3480156107e757600080fd5b5061041e611ab9565b3480156107fc57600080fd5b50610509600c5481565b34801561081257600080fd5b50610509600f5481565b34801561082857600080fd5b50600a546001600160a01b0316610440565b34801561084657600080fd5b5061041e6108553660046131ac565b611aef565b34801561086657600080fd5b506103f1611b1e565b34801561087b57600080fd5b5061041e61088a3660046131ac565b611b2d565b34801561089b57600080fd5b50601754610440906001600160a01b031681565b3480156108bb57600080fd5b506105096108ca366004612f42565b611b5c565b3480156108db57600080fd5b50610509600d5481565b3480156108f157600080fd5b5061041e610900366004612f0d565b611be9565b34801561091157600080fd5b5061050960115481565b34801561092757600080fd5b50601654610440906001600160a01b031681565b34801561094757600080fd5b5061041e610956366004612e8d565b611cae565b34801561096757600080fd5b5061041e6109763660046131ac565b611ce6565b34801561098757600080fd5b506103f16109963660046131ac565b611d15565b3480156109a757600080fd5b50610509600181565b3480156109bc57600080fd5b5061041e6109cb366004612f42565b611ddf565b3480156109dc57600080fd5b5061041e6109eb366004613163565b611e87565b3480156109fc57600080fd5b506103f1611f7f565b348015610a1157600080fd5b5061050960105481565b348015610a2757600080fd5b50610627610a36366004612dd9565b61200d565b348015610a4757600080fd5b506103c7610a56366004612e13565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a9057600080fd5b5061041e610a9f366004612dd9565b612090565b348015610ab057600080fd5b50610509610abf3660046131ac565b60186020526000908152604090205481565b348015610add57600080fd5b50610509610aec366004612dd9565b61212b565b348015610afd57600080fd5b5061041e6121ab565b60006001600160e01b0319821663780e9d6360e01b1480610b2b5750610b2b82612215565b92915050565b606060008054610b409061350d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6c9061350d565b8015610bb95780601f10610b8e57610100808354040283529160200191610bb9565b820191906000526020600020905b815481529060010190602001808311610b9c57829003601f168201915b5050505050905090565b600a546001600160a01b03163314610bf65760405162461bcd60e51b8152600401610bed906133a4565b60405180910390fd5b60005b8151811015610c5a57600160146000848481518110610c1a57610c1a6135b9565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c5290613548565b915050610bf9565b5050565b6000610c6982612265565b610cca5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bed565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b03163314610d105760405162461bcd60e51b8152600401610bed906133a4565b600e55565b6000610d20826118f2565b9050806001600160a01b0316836001600160a01b03161415610d8e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bed565b336001600160a01b0382161480610daa5750610daa8133610a56565b610e1c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bed565b610e268383612282565b505050565b600a546001600160a01b03163314610e555760405162461bcd60e51b8152600401610bed906133a4565b60005b8251811015610e26576000838281518110610e7557610e756135b9565b60200260200101519050610e8881612265565b15610e935750610e9f565b610e9d83826122f0565b505b80610ea981613548565b915050610e58565b600a546001600160a01b03163314610edb5760405162461bcd60e51b8152600401610bed906133a4565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b610f07338261230a565b610f235760405162461bcd60e51b8152600401610bed906133d9565b610e268383836123f0565b600a546001600160a01b03163314610f585760405162461bcd60e51b8152600401610bed906133a4565b601155565b6000610f6883611a32565b8210610fca5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bed565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461101d5760405162461bcd60e51b8152600401610bed906133a4565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b8160018214156111cf57611052816118f2565b6001600160a01b0316336001600160a01b0316146110d85760405162461bcd60e51b815260206004820152603a60248201527f596f75206d757374206f776e2074686520636f72726573706f6e64696e67204160448201527f6369642041706520746f206d696e74207468697320746f6b656e0000000000006064820152608401610bed565b600f54600c546110e8919061347f565b601254106111385760405162461bcd60e51b815260206004820181905260248201527f4d61782041636964204265617374732068617665206265656e206d696e7465646044820152606401610bed565b600081815260186020526040902054156111a45760405162461bcd60e51b815260206004820152602760248201527f4170652068617320616c726561647920636f6e73756d656420616e20616369646044820152660818985c9c995b60ca1b6064820152608401610bed565b6000908152601860205260409020600190819055601254906111c790829061347f565b60125561137d565b60135460ff166112315760405162461bcd60e51b815260206004820152602760248201527f46726573682041706573206f776e6572206772616e7420706572696f642068616044820152661cc8195b99195960ca1b6064820152608401610bed565b61123a8361153c565b6001600160a01b0316336001600160a01b0316146112c05760405162461bcd60e51b815260206004820152603b60248201527f596f75206d757374206f776e2074686520636f72726573706f6e64696e67204660448201527f726573682041706520746f206d696e74207468697320746f6b656e00000000006064820152608401610bed565b610309811061131c5760405162461bcd60e51b815260206004820152602260248201527f546f6b656e2049442065786365656473204672657368204170657320737570706044820152616c7960f01b6064820152608401610bed565b61132581612265565b1561137d5760405162461bcd60e51b815260206004820152602260248201527f4170652068617320616c726561647920636f6e73756d65642061636964207669604482015261185b60f21b6064820152608401610bed565b60006113893384611b5c565b116113f05760405162461bcd60e51b815260206004820152603160248201527f596f75206d757374206f776e206174206c65617374206f6e6520636f6e73756d60448201527061626c65206f662074686973207479706560781b6064820152608401610bed565b6113fa823361259b565b610e2633826122f0565b610e2683838360405180602001604052806000815250611cae565b6060600061142c83611a32565b905060008167ffffffffffffffff811115611449576114496135cf565b604051908082528060200260200182016040528015611472578160200160208202803683370190505b50905060005b828110156114b95761148a8582610f5d565b82828151811061149c5761149c6135b9565b6020908102919091010152806114b181613548565b915050611478565b509392505050565b600a546001600160a01b031633146114eb5760405162461bcd60e51b8152600401610bed906133a4565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146115375760405162461bcd60e51b8152600401610bed906133a4565b601255565b6016546040516331a9108f60e11b8152600481018390526000916001600160a01b0316908190636352211e9060240160206040518083038186803b15801561158357600080fd5b505afa158015611597573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115bb9190612df6565b9392505050565b6000610b2b82612265565b60006115d860085490565b821061163b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bed565b6008828154811061164e5761164e6135b9565b90600052602060002001549050919050565b600a546001600160a01b0316331461168a5760405162461bcd60e51b8152600401610bed906133a4565b8051610c5a90600b906020840190612c61565b600a546001600160a01b031633146116c75760405162461bcd60e51b8152600401610bed906133a4565b60155460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114611718576040519150601f19603f3d011682016040523d82523d6000602084013e61171d565b606091505b5050905080610c5a5760405162461bcd60e51b81526020600482015260166024820152752a3930b739b332b9103330b4b632b2103a379030989760511b6044820152606401610bed565b601154600e546117b95760405162461bcd60e51b815260206004820152601760248201527f4d61696e2073616c65206973206e6f74206163746976650000000000000000006044820152606401610bed565b60105482111561180b5760405162461bcd60e51b815260206004820152601e60248201527f526571756573746564206d696e747320657863656564206d6178696d756d00006044820152606401610bed565b610309600f5461181b91906134ca565b82601154611829919061347f565b11156118475760405162461bcd60e51b8152600401610bed9061335d565b81600d5461185591906134ab565b3410156118a45760405162461bcd60e51b815260206004820152601a60248201527f45746865722073656e7420697320696e73756666696369656e740000000000006044820152606401610bed565b816011546118b2919061347f565b60115560005b82811015610e26576118e0336103096118d1848661347f565b6118db919061347f565b6122f0565b806118ea81613548565b9150506118b8565b6000818152600260205260408120546001600160a01b031680610b2b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bed565b600a546001600160a01b031633146119935760405162461bcd60e51b8152600401610bed906133a4565b6013805460ff1916911515919091179055565b600a546001600160a01b031633146119d05760405162461bcd60e51b8152600401610bed906133a4565b601055565b60005b8151811015610c5a5760008282815181106119f5576119f56135b9565b60200260200101519050611a0881612265565b15611a135750611a20565b611a1e81600061103f565b505b80611a2a81613548565b9150506119d8565b60006001600160a01b038216611a9d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bed565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611ae35760405162461bcd60e51b8152600401610bed906133a4565b611aed6000612608565b565b600a546001600160a01b03163314611b195760405162461bcd60e51b8152600401610bed906133a4565b600d55565b606060018054610b409061350d565b600a546001600160a01b03163314611b575760405162461bcd60e51b8152600401610bed906133a4565b600c55565b601754604051627eeac760e11b81526001600160a01b038481166004830152602482018490526000921690819062fdd58e9060440160206040518083038186803b158015611ba957600080fd5b505afa158015611bbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611be191906131c5565b949350505050565b6001600160a01b038216331415611c425760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bed565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611cb8338361230a565b611cd45760405162461bcd60e51b8152600401610bed906133d9565b611ce08484848461265a565b50505050565b600a546001600160a01b03163314611d105760405162461bcd60e51b8152600401610bed906133a4565b600f55565b6060611d2082612265565b611d845760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bed565b6000611d8e61268d565b90506000815111611dae57604051806020016040528060008152506115bb565b80611db88461269c565b604051602001611dc9929190613248565b6040516020818303038152906040529392505050565b600a546001600160a01b03163314611e095760405162461bcd60e51b8152600401610bed906133a4565b601154600f54611e1c90610309906134ca565b82601154611e2a919061347f565b1115611e485760405162461bcd60e51b8152600401610bed9061335d565b81601154611e56919061347f565b60115560005b82811015611ce057611e75846103096118d1848661347f565b80611e7f81613548565b915050611e5c565b600081604051602001611e9a919061322c565b60408051601f1981840301815291815281516020928301206000818152601490935291205490915060ff16611f095760405162461bcd60e51b815260206004820152601560248201527410db185a5b481251081a5cc81b9bdd081d985b1a59605a1b6044820152606401610bed565b601154600f54611f1c90610309906134ca565b601154611f2a90600161347f565b1115611f485760405162461bcd60e51b8152600401610bed9061335d565b6000828152601460205260409020805460ff19169055601154611f6c90600161347f565b601155610e26336118db6103098461347f565b600b8054611f8c9061350d565b80601f0160208091040260200160405190810160405280929190818152602001828054611fb89061350d565b80156120055780601f10611fda57610100808354040283529160200191612005565b820191906000526020600020905b815481529060010190602001808311611fe857829003601f168201915b505050505081565b60165460405162438b6360e81b81526001600160a01b0383811660048301526060921690819063438b63009060240160006040518083038186803b15801561205457600080fd5b505afa158015612068573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115bb919081019061303b565b600a546001600160a01b031633146120ba5760405162461bcd60e51b8152600401610bed906133a4565b6001600160a01b03811661211f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bed565b61212881612608565b50565b6016546040516370a0823160e01b81526001600160a01b038381166004830152600092169081906370a082319060240160206040518083038186803b15801561217357600080fd5b505afa158015612187573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115bb91906131c5565b60006121b63361200d565b905060005b8151811015610c5a5760008282815181106121d8576121d86135b9565b602002602001015190506121eb81612265565b156121f65750612203565b61220181600061103f565b505b8061220d81613548565b9150506121bb565b60006001600160e01b031982166380ac58cd60e01b148061224657506001600160e01b03198216635b5e139f60e01b145b80610b2b57506301ffc9a760e01b6001600160e01b0319831614610b2b565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122b7826118f2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610c5a82826040518060200160405280600081525061279a565b600061231582612265565b6123765760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bed565b6000612381836118f2565b9050806001600160a01b0316846001600160a01b031614806123bc5750836001600160a01b03166123b184610c5e565b6001600160a01b0316145b80611be157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611be1565b826001600160a01b0316612403826118f2565b6001600160a01b03161461246b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bed565b6001600160a01b0382166124cd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bed565b6124d88383836127cd565b6124e3600082612282565b6001600160a01b038316600090815260036020526040812080546001929061250c9084906134ca565b90915550506001600160a01b038216600090815260036020526040812080546001929061253a90849061347f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60175460405163ceff7a8f60e01b8152600481018490526001600160a01b03838116602483015290911690819063ceff7a8f90604401600060405180830381600087803b1580156125eb57600080fd5b505af11580156125ff573d6000803e3d6000fd5b50505050505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6126658484846123f0565b61267184848484612885565b611ce05760405162461bcd60e51b8152600401610bed9061330b565b6060600b8054610b409061350d565b6060816126c05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126ea57806126d481613548565b91506126e39050600a83613497565b91506126c4565b60008167ffffffffffffffff811115612705576127056135cf565b6040519080825280601f01601f19166020018201604052801561272f576020820181803683370190505b5090505b8415611be1576127446001836134ca565b9150612751600a86613563565b61275c90603061347f565b60f81b818381518110612771576127716135b9565b60200101906001600160f81b031916908160001a905350612793600a86613497565b9450612733565b6127a48383612992565b6127b16000848484612885565b610e265760405162461bcd60e51b8152600401610bed9061330b565b6001600160a01b0383166128285761282381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61284b565b816001600160a01b0316836001600160a01b03161461284b5761284b8382612ad1565b6001600160a01b03821661286257610e2681612b6e565b826001600160a01b0316826001600160a01b031614610e2657610e268282612c1d565b60006001600160a01b0384163b1561298757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906128c9903390899088908890600401613277565b602060405180830381600087803b1580156128e357600080fd5b505af1925050508015612913575060408051601f3d908101601f1916820190925261291091810190613146565b60015b61296d573d808015612941576040519150601f19603f3d011682016040523d82523d6000602084013e612946565b606091505b5080516129655760405162461bcd60e51b8152600401610bed9061330b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611be1565b506001949350505050565b6001600160a01b0382166129e85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bed565b6129f181612265565b15612a3e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bed565b612a4a600083836127cd565b6001600160a01b0382166000908152600360205260408120805460019290612a7390849061347f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612ade84611a32565b612ae891906134ca565b600083815260076020526040902054909150808214612b3b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612b80906001906134ca565b60008381526009602052604081205460088054939450909284908110612ba857612ba86135b9565b906000526020600020015490508060088381548110612bc957612bc96135b9565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c0157612c016135a3565b6001900381819060005260206000200160009055905550505050565b6000612c2883611a32565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612c6d9061350d565b90600052602060002090601f016020900481019282612c8f5760008555612cd5565b82601f10612ca857805160ff1916838001178555612cd5565b82800160010185558215612cd5579182015b82811115612cd5578251825591602001919060010190612cba565b50612ce1929150612ce5565b5090565b5b80821115612ce15760008155600101612ce6565b600067ffffffffffffffff831115612d1457612d146135cf565b612d27601f8401601f191660200161342a565b9050828152838383011115612d3b57600080fd5b828260208301376000602084830101529392505050565b600082601f830112612d6357600080fd5b81356020612d78612d738361345b565b61342a565b80838252828201915082860187848660051b8901011115612d9857600080fd5b60005b85811015612db757813584529284019290840190600101612d9b565b5090979650505050505050565b80358015158114612dd457600080fd5b919050565b600060208284031215612deb57600080fd5b81356115bb816135e5565b600060208284031215612e0857600080fd5b81516115bb816135e5565b60008060408385031215612e2657600080fd5b8235612e31816135e5565b91506020830135612e41816135e5565b809150509250929050565b600080600060608486031215612e6157600080fd5b8335612e6c816135e5565b92506020840135612e7c816135e5565b929592945050506040919091013590565b60008060008060808587031215612ea357600080fd5b8435612eae816135e5565b93506020850135612ebe816135e5565b925060408501359150606085013567ffffffffffffffff811115612ee157600080fd5b8501601f81018713612ef257600080fd5b612f0187823560208401612cfa565b91505092959194509250565b60008060408385031215612f2057600080fd5b8235612f2b816135e5565b9150612f3960208401612dc4565b90509250929050565b60008060408385031215612f5557600080fd5b8235612f60816135e5565b946020939093013593505050565b60006020808385031215612f8157600080fd5b823567ffffffffffffffff811115612f9857600080fd5b8301601f81018513612fa957600080fd5b8035612fb7612d738261345b565b80828252848201915084840188868560051b8701011115612fd757600080fd5b600094505b83851015612ffa578035835260019490940193918501918501612fdc565b50979650505050505050565b60006020828403121561301857600080fd5b813567ffffffffffffffff81111561302f57600080fd5b611be184828501612d52565b6000602080838503121561304e57600080fd5b825167ffffffffffffffff81111561306557600080fd5b8301601f8101851361307657600080fd5b8051613084612d738261345b565b80828252848201915084840188868560051b87010111156130a457600080fd5b600094505b83851015612ffa5780518352600194909401939185019185016130a9565b600080604083850312156130da57600080fd5b823567ffffffffffffffff8111156130f157600080fd5b6130fd85828601612d52565b9250506020830135612e41816135e5565b60006020828403121561312057600080fd5b6115bb82612dc4565b60006020828403121561313b57600080fd5b81356115bb816135fa565b60006020828403121561315857600080fd5b81516115bb816135fa565b60006020828403121561317557600080fd5b813567ffffffffffffffff81111561318c57600080fd5b8201601f8101841361319d57600080fd5b611be184823560208401612cfa565b6000602082840312156131be57600080fd5b5035919050565b6000602082840312156131d757600080fd5b5051919050565b600080604083850312156131f157600080fd5b50508035926020909101359150565b600081518084526132188160208601602086016134e1565b601f01601f19169290920160200192915050565b6000825161323e8184602087016134e1565b9190910192915050565b6000835161325a8184602088016134e1565b83519083019061326e8183602088016134e1565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906132aa90830184613200565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156132ec578351835292840192918401916001016132d0565b50909695505050505050565b6020815260006115bb6020830184613200565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f526571756573746564206d696e7473206578636565642072656d61696e696e6760408201526620737570706c7960c81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715613453576134536135cf565b604052919050565b600067ffffffffffffffff821115613475576134756135cf565b5060051b60200190565b6000821982111561349257613492613577565b500190565b6000826134a6576134a661358d565b500490565b60008160001904831182151516156134c5576134c5613577565b500290565b6000828210156134dc576134dc613577565b500390565b60005b838110156134fc5781810151838201526020016134e4565b83811115611ce05750506000910152565b600181811c9082168061352157607f821691505b6020821081141561354257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561355c5761355c613577565b5060010190565b6000826135725761357261358d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461212857600080fd5b6001600160e01b03198116811461212857600080fdfea26469706673582212203eadb386088c62ab08bc86825f41e991b882cc47aad6a45399a5704717607a4864736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000003ce2809c697066733a2f2f516d51694d34474e6d79436f433365655265644a5563364155454534593162795239736775424a483353553764682fe2809c00000000000000000000000000000000000000000000000000000000000000000000003c2cb11e53131da3986222a02e27ba791e18e33fe4e30c5261650c337d3191e430521e01f3c8675e968cb2dfbed38dfd4e818e11bf1e26efb9b6eb147edb21684f0e489aef2357e04871e1a1f2aea97978b3d209b4a0b174b77f29a3fa9cb117fd3df4c6415e960201c14ef0cbf6b55acd5876da348a698cc75b6c74d34ac454244920d0e9e8f55f4543696bdc1202f3d671aabf8a65500fe288073191e90702a8f259b9523313edec04f7cee93ddbb279325f7c1f11919b9970bb4b8d56d82d5471e48599b3611738bed50e05505673c084d6938051dc63c447ec0cd4ce5ac4dbc2b2607aae31fe9903a1ea4fa92eccdfa3a1b85cdada079aaefd5d98994bd482b46bb2d4fb2e500f89dc448d5c597f6c0ebf03ba9e0223a372129341e368b8f72b51d48d21e5e9fb4a8ed674fa3df52d67099bacc5896864052070256544afeaabea1ee7aa47da6336aa0621b174c99c7168d2b6124c660a07269670f12240bc2e2fb9111f56410157f71100cb8aad884ba994fafba8ae250c591b15a4145b1e70d4e1f7af97c94501091c795b3572edd06ac854799a972a5a073cb687b1f2a07acec9f1c815ac356083e1ec6930bc32690ca75a51998a0b0ef621a8a9ee9ae846e4ef4fc63afc7b6e282323c5af3bb24c5a13b70fc9d849794738f507e7015a36f0a8d4b821d8017decea9984388372ae4adf97e520c7fa62efda67367361eb2d23a901efd630c00fac05eae5fa5282845ba6a3fe42458896512af01f6d9f41ef6a1abc9bec6556534da28a079bd8c9df4753d3736160d6a5970e9e3e6acef32dfa7e681f6e579b77457d97248fd74cf800ce5dc48d260b75760596942fe78f170c79f46634d5894644e6e7276fdb61d1105a45f4b3f5345fc41a820bf56f745a86d030baba8880ed3acd1b73aa1068afd36ad22ec55a7cea4da2be5fabee43b75113518651dfaad7b158d60e73ee34053812a85181922c211253dceb61c77ab988a8f0851eae03d644576debb9e7eaeb03f2f055b314ec32cba206c9097fe1786cc2e82b098bb542ef976ee16434a0110dc5faa878380082fb00cb5bf90917c424545ec40f80cef34ad19f431978e4575af97e4d704e7b66687ae463334ebf9b2f45daddb93a7eeb17e9e7bea27c2bdcc048f0892082e632f78d7b24e6bf05eec2005af5c649ac6b285ccd9d6e63e0bee8b24ea3382c097d6c6fd5337a1cab182e6aea854886bc68c801a3b097ec98dc36f12523c96a1aea95392730c2dddfd5c9681768c44f4b3bfa7c11d3b5e586248f471a29d8d56551176c0155d2102f7039fcf62d748210e79069233c53ef8a73d73d567b63790f42f1972010f27cb57160501baaf835a9cf26a79496702a506eb5a433bac1a71c67d441c1ac4b89048449f74ef40dde35dc6b380046923275d2bc7ba49a096152d61d887f6919e006394b9489b57f2bbf493f460418f92892a213028bdf904172057b20556f96e2cad85c3a890a345c7d32623eaf5dbbd9b80a7f27cbe6edeeacf96bdfe4fee8cf8acce015b34ac1dcb0ddaaf884ad2d044977987093330dcc1cc0cb3e4384a870ab9c260f32b1e0eccee0aa4079392256618cee7a7df47203cb9a394971b1119071f1b78141e2dabf81fe7d3e467f929b22f95310b197ad572e2ab78565add61b447847d4baf243cef8c4a69c59a6155680d34dcf8d78b979b401434af1091b23eb521771150e06dfbf29de082ae0f24ca1943104503c1a603f4b5d4fbf39d981df22c89c32dd943db74a870c626f501517b16d157fc64cdbb6a6490e8b3aebff067ffca9858c2f052a7323e7bc9822195a802e93b8acd5f4ae81bb38673ea192c9387dcb9ee8e0a504f4c4867f6e338ca041c80774d416b4219e55a73f2b958ca947f9bb7341f02775a54e7d6fbe81536a766905fbf93c755db9f3a153046a97fbfe55886ed598574c1b3202d3b8fb55df3b104726dc5b86b10e8adaa599df0af50a073fe68dc28e8c4741c2ea06b0d73d23faa8245839a778649aeb90b0a14fa4c1af51bb24f7379f498c4f72f65eb2d61e638fef85b3d26d3abf1942a1e3e8c22df5bbe0b0459494f8f2b2e3dfede84b260f70f3a441fb5fe96f42c55d40a28cdfc96753df106ab199889705669b290439010e89a8861aa5aa51b02e2cc130eaa2f8d6fb6ed7e1b6b6a2d4b3237e221fd7e62bea4e1478f51ea2c2d5951e0ef647ce7c06c97ed67b0d307dd0316b6d95f5de68dd513b05c34e25e21a78ab34b8d231393e780c5d5c1b4382de41ef1fb7383244ed308639063b9007562aa9c5a46b1cb9b06bc453d82a8699f09e4fb6c36b63fa240c96740693c145d6bda03df592df5f3c6b5965860b9c84737b921566615d8f4349f488dd468035e696f452adae438b6e03f6eabb8e4e806c7d4507de42e65ba9c12645fc3a7993052c82a2009a5da0b7fd4fb0ee3a1748e217e73a8b3c17ecdb5e82054b27de9dc5808730477cb74eb5bc6588ac8c70ab4d3b9a042775cfe6933104118b1b1c91528637950ec38e1d8fa4eb0ee7f00d4b0d31b92b4b17374f3eeab1a95474d6f8bb7bda167c25f82d3a3d9b1474291e86e0f942363a370fa6a3a912db2dafada6c7b421e6ca7de789240f798ebb92f545c574b0ed2da15dc60050facbec039b5c7c926dcf57f4685c2039c543ce820c6d30bd1bdbbbf68f75d990ad82409200dd40c9d7ad81

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): “ipfs://QmQiM4GNmyCoC3eeRedJUc6AUEE4Y1byR9sguBJH3SU7dh/“
Arg [1] : _giveawayList (bytes32[]): System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[]

-----Encoded View---------------
66 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000000000000003c
Arg [3] : e2809c697066733a2f2f516d51694d34474e6d79436f433365655265644a5563
Arg [4] : 364155454534593162795239736775424a483353553764682fe2809c00000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000003c
Arg [6] : 2cb11e53131da3986222a02e27ba791e18e33fe4e30c5261650c337d3191e430
Arg [7] : 521e01f3c8675e968cb2dfbed38dfd4e818e11bf1e26efb9b6eb147edb21684f
Arg [8] : 0e489aef2357e04871e1a1f2aea97978b3d209b4a0b174b77f29a3fa9cb117fd
Arg [9] : 3df4c6415e960201c14ef0cbf6b55acd5876da348a698cc75b6c74d34ac45424
Arg [10] : 4920d0e9e8f55f4543696bdc1202f3d671aabf8a65500fe288073191e90702a8
Arg [11] : f259b9523313edec04f7cee93ddbb279325f7c1f11919b9970bb4b8d56d82d54
Arg [12] : 71e48599b3611738bed50e05505673c084d6938051dc63c447ec0cd4ce5ac4db
Arg [13] : c2b2607aae31fe9903a1ea4fa92eccdfa3a1b85cdada079aaefd5d98994bd482
Arg [14] : b46bb2d4fb2e500f89dc448d5c597f6c0ebf03ba9e0223a372129341e368b8f7
Arg [15] : 2b51d48d21e5e9fb4a8ed674fa3df52d67099bacc5896864052070256544afea
Arg [16] : abea1ee7aa47da6336aa0621b174c99c7168d2b6124c660a07269670f12240bc
Arg [17] : 2e2fb9111f56410157f71100cb8aad884ba994fafba8ae250c591b15a4145b1e
Arg [18] : 70d4e1f7af97c94501091c795b3572edd06ac854799a972a5a073cb687b1f2a0
Arg [19] : 7acec9f1c815ac356083e1ec6930bc32690ca75a51998a0b0ef621a8a9ee9ae8
Arg [20] : 46e4ef4fc63afc7b6e282323c5af3bb24c5a13b70fc9d849794738f507e7015a
Arg [21] : 36f0a8d4b821d8017decea9984388372ae4adf97e520c7fa62efda67367361eb
Arg [22] : 2d23a901efd630c00fac05eae5fa5282845ba6a3fe42458896512af01f6d9f41
Arg [23] : ef6a1abc9bec6556534da28a079bd8c9df4753d3736160d6a5970e9e3e6acef3
Arg [24] : 2dfa7e681f6e579b77457d97248fd74cf800ce5dc48d260b75760596942fe78f
Arg [25] : 170c79f46634d5894644e6e7276fdb61d1105a45f4b3f5345fc41a820bf56f74
Arg [26] : 5a86d030baba8880ed3acd1b73aa1068afd36ad22ec55a7cea4da2be5fabee43
Arg [27] : b75113518651dfaad7b158d60e73ee34053812a85181922c211253dceb61c77a
Arg [28] : b988a8f0851eae03d644576debb9e7eaeb03f2f055b314ec32cba206c9097fe1
Arg [29] : 786cc2e82b098bb542ef976ee16434a0110dc5faa878380082fb00cb5bf90917
Arg [30] : c424545ec40f80cef34ad19f431978e4575af97e4d704e7b66687ae463334ebf
Arg [31] : 9b2f45daddb93a7eeb17e9e7bea27c2bdcc048f0892082e632f78d7b24e6bf05
Arg [32] : eec2005af5c649ac6b285ccd9d6e63e0bee8b24ea3382c097d6c6fd5337a1cab
Arg [33] : 182e6aea854886bc68c801a3b097ec98dc36f12523c96a1aea95392730c2dddf
Arg [34] : d5c9681768c44f4b3bfa7c11d3b5e586248f471a29d8d56551176c0155d2102f
Arg [35] : 7039fcf62d748210e79069233c53ef8a73d73d567b63790f42f1972010f27cb5
Arg [36] : 7160501baaf835a9cf26a79496702a506eb5a433bac1a71c67d441c1ac4b8904
Arg [37] : 8449f74ef40dde35dc6b380046923275d2bc7ba49a096152d61d887f6919e006
Arg [38] : 394b9489b57f2bbf493f460418f92892a213028bdf904172057b20556f96e2ca
Arg [39] : d85c3a890a345c7d32623eaf5dbbd9b80a7f27cbe6edeeacf96bdfe4fee8cf8a
Arg [40] : cce015b34ac1dcb0ddaaf884ad2d044977987093330dcc1cc0cb3e4384a870ab
Arg [41] : 9c260f32b1e0eccee0aa4079392256618cee7a7df47203cb9a394971b1119071
Arg [42] : f1b78141e2dabf81fe7d3e467f929b22f95310b197ad572e2ab78565add61b44
Arg [43] : 7847d4baf243cef8c4a69c59a6155680d34dcf8d78b979b401434af1091b23eb
Arg [44] : 521771150e06dfbf29de082ae0f24ca1943104503c1a603f4b5d4fbf39d981df
Arg [45] : 22c89c32dd943db74a870c626f501517b16d157fc64cdbb6a6490e8b3aebff06
Arg [46] : 7ffca9858c2f052a7323e7bc9822195a802e93b8acd5f4ae81bb38673ea192c9
Arg [47] : 387dcb9ee8e0a504f4c4867f6e338ca041c80774d416b4219e55a73f2b958ca9
Arg [48] : 47f9bb7341f02775a54e7d6fbe81536a766905fbf93c755db9f3a153046a97fb
Arg [49] : fe55886ed598574c1b3202d3b8fb55df3b104726dc5b86b10e8adaa599df0af5
Arg [50] : 0a073fe68dc28e8c4741c2ea06b0d73d23faa8245839a778649aeb90b0a14fa4
Arg [51] : c1af51bb24f7379f498c4f72f65eb2d61e638fef85b3d26d3abf1942a1e3e8c2
Arg [52] : 2df5bbe0b0459494f8f2b2e3dfede84b260f70f3a441fb5fe96f42c55d40a28c
Arg [53] : dfc96753df106ab199889705669b290439010e89a8861aa5aa51b02e2cc130ea
Arg [54] : a2f8d6fb6ed7e1b6b6a2d4b3237e221fd7e62bea4e1478f51ea2c2d5951e0ef6
Arg [55] : 47ce7c06c97ed67b0d307dd0316b6d95f5de68dd513b05c34e25e21a78ab34b8
Arg [56] : d231393e780c5d5c1b4382de41ef1fb7383244ed308639063b9007562aa9c5a4
Arg [57] : 6b1cb9b06bc453d82a8699f09e4fb6c36b63fa240c96740693c145d6bda03df5
Arg [58] : 92df5f3c6b5965860b9c84737b921566615d8f4349f488dd468035e696f452ad
Arg [59] : ae438b6e03f6eabb8e4e806c7d4507de42e65ba9c12645fc3a7993052c82a200
Arg [60] : 9a5da0b7fd4fb0ee3a1748e217e73a8b3c17ecdb5e82054b27de9dc580873047
Arg [61] : 7cb74eb5bc6588ac8c70ab4d3b9a042775cfe6933104118b1b1c91528637950e
Arg [62] : c38e1d8fa4eb0ee7f00d4b0d31b92b4b17374f3eeab1a95474d6f8bb7bda167c
Arg [63] : 25f82d3a3d9b1474291e86e0f942363a370fa6a3a912db2dafada6c7b421e6ca
Arg [64] : 7de789240f798ebb92f545c574b0ed2da15dc60050facbec039b5c7c926dcf57
Arg [65] : f4685c2039c543ce820c6d30bd1bdbbbf68f75d990ad82409200dd40c9d7ad81


Deployed Bytecode Sourcemap

50950:9942:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44725:224;;;;;;;;;;-1:-1:-1;44725:224:0;;;;;:::i;:::-;;:::i;:::-;;;11495:14:1;;11488:22;11470:41;;11458:2;11443:18;44725:224:0;;;;;;;;32617:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;59415:202::-;;;;;;;;;;-1:-1:-1;59415:202:0;;;;;:::i;:::-;;:::i;:::-;;34176:221;;;;;;;;;;-1:-1:-1;34176:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9877:32:1;;;9859:51;;9847:2;9832:18;34176:221:0;9713:203:1;58692:100:0;;;;;;;;;;-1:-1:-1;58692:100:0;;;;;:::i;:::-;;:::i;33699:411::-;;;;;;;;;;-1:-1:-1;33699:411:0;;;;;:::i;:::-;;:::i;51677:62::-;;;;;;;;;;-1:-1:-1;51677:62:0;;;;-1:-1:-1;;;;;51677:62:0;;;59625:487;;;;;;;;;;-1:-1:-1;59625:487:0;;;;;:::i;:::-;;:::i;59110:96::-;;;;;;;;;;-1:-1:-1;59110:96:0;;;;;:::i;:::-;;:::i;45365:113::-;;;;;;;;;;-1:-1:-1;45453:10:0;:17;45365:113;;;24530:25:1;;;24518:2;24503:18;45365:113:0;24384:177:1;51468:46:0;;;;;;;;;;;;;;;;35066:339;;;;;;;;;;-1:-1:-1;35066:339:0;;;;;:::i;:::-;;:::i;51529:35::-;;;;;;;;;;-1:-1:-1;51529:35:0;;;;;;;;59214:140;;;;;;;;;;-1:-1:-1;59214:140:0;;;;;:::i;:::-;;:::i;45033:256::-;;;;;;;;;;-1:-1:-1;45033:256:0;;;;;:::i;:::-;;:::i;58917:83::-;;;;;;;;;;-1:-1:-1;58917:83:0;;;;;:::i;:::-;;:::i;53026:1419::-;;;;;;;;;;-1:-1:-1;53026:1419:0;;;;;:::i;:::-;;:::i;35476:185::-;;;;;;;;;;-1:-1:-1;35476:185:0;;;;;:::i;:::-;;:::i;57441:342::-;;;;;;;;;;-1:-1:-1;57441:342:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;59008:94::-;;;;;;;;;;-1:-1:-1;59008:94:0;;;;;:::i;:::-;;:::i;58182:127::-;;;;;;;;;;-1:-1:-1;58182:127:0;;;;;:::i;:::-;;:::i;56381:194::-;;;;;;;;;;-1:-1:-1;56381:194:0;;;;;:::i;:::-;;:::i;57793:104::-;;;;;;;;;;-1:-1:-1;57793:104:0;;;;;:::i;:::-;;:::i;45555:233::-;;;;;;;;;;-1:-1:-1;45555:233:0;;;;;:::i;:::-;;:::i;58804:101::-;;;;;;;;;;-1:-1:-1;58804:101:0;;;;;:::i;:::-;;:::i;60634:243::-;;;:::i;51279:28::-;;;;;;;;;;;;;;;;55493:668;;;;;;:::i;:::-;;:::i;32311:239::-;;;;;;;;;;-1:-1:-1;32311:239:0;;;;;:::i;:::-;;:::i;58545:109::-;;;;;;;;;;-1:-1:-1;58545:109:0;;;;;:::i;:::-;;:::i;51085:45::-;;;;;;;;;;;;51127:3;51085:45;;58431:106;;;;;;;;;;-1:-1:-1;58431:106:0;;;;;:::i;:::-;;:::i;55077:383::-;;;;;;;;;;-1:-1:-1;55077:383:0;;;;;:::i;:::-;;:::i;32041:208::-;;;;;;;;;;-1:-1:-1;32041:208:0;;;;;:::i;:::-;;:::i;12316:94::-;;;;;;;;;;;;;:::i;51197:35::-;;;;;;;;;;;;;;;;51339:30;;;;;;;;;;;;;;;;11665:87;;;;;;;;;;-1:-1:-1;11738:6:0;;-1:-1:-1;;;;;11738:6:0;11665:87;;57981:92;;;;;;;;;;-1:-1:-1;57981:92:0;;;;;:::i;:::-;;:::i;32786:104::-;;;;;;;;;;;;;:::i;58316:103::-;;;;;;;;;;-1:-1:-1;58316:103:0;;;;;:::i;:::-;;:::i;51883:72::-;;;;;;;;;;-1:-1:-1;51883:72:0;;;;-1:-1:-1;;;;;51883:72:0;;;56790:203;;;;;;;;;;-1:-1:-1;56790:203:0;;;;;:::i;:::-;;:::i;51239:33::-;;;;;;;;;;;;;;;;34469:295;;;;;;;;;;-1:-1:-1;34469:295:0;;;;;:::i;:::-;;:::i;51417:44::-;;;;;;;;;;;;;;;;51775:71;;;;;;;;;;-1:-1:-1;51775:71:0;;;;-1:-1:-1;;;;;51775:71:0;;;35732:328;;;;;;;;;;-1:-1:-1;35732:328:0;;;;;:::i;:::-;;:::i;58085:90::-;;;;;;;;;;-1:-1:-1;58085:90:0;;;;;:::i;:::-;;:::i;32961:334::-;;;;;;;;;;-1:-1:-1;32961:334:0;;;;;:::i;:::-;;:::i;51137:53::-;;;;;;;;;;;;51189:1;51137:53;;60120:502;;;;;;;;;;-1:-1:-1;60120:502:0;;;;;:::i;:::-;;:::i;52418:563::-;;;;;;;;;;-1:-1:-1;52418:563:0;;;;;:::i;:::-;;:::i;51049:26::-;;;;;;;;;;;;;:::i;51376:34::-;;;;;;;;;;;;;;;;56169:204;;;;;;;;;;-1:-1:-1;56169:204:0;;;;;:::i;:::-;;:::i;34835:164::-;;;;;;;;;;-1:-1:-1;34835:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34956:25:0;;;34932:4;34956:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34835:164;12565:192;;;;;;;;;;-1:-1:-1;12565:192:0;;;;;:::i;:::-;;:::i;51964:54::-;;;;;;;;;;-1:-1:-1;51964:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;56583:199;;;;;;;;;;-1:-1:-1;56583:199:0;;;;;:::i;:::-;;:::i;54501:520::-;;;;;;;;;;;;;:::i;44725:224::-;44827:4;-1:-1:-1;;;;;;44851:50:0;;-1:-1:-1;;;44851:50:0;;:90;;;44905:36;44929:11;44905:23;:36::i;:::-;44844:97;44725:224;-1:-1:-1;;44725:224:0:o;32617:100::-;32671:13;32704:5;32697:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32617:100;:::o;59415:202::-;11738:6;;-1:-1:-1;;;;;11738:6:0;10533:10;11885:23;11877:68;;;;-1:-1:-1;;;11877:68:0;;;;;;;:::i;:::-;;;;;;;;;59506:9:::1;59502:108;59521:13;:20;59517:1;:24;59502:108;;;59594:4;59562:11;:29;59574:13;59588:1;59574:16;;;;;;;;:::i;:::-;;;;;;;59562:29;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;59543:3;;;;;:::i;:::-;;;;59502:108;;;;59415:202:::0;:::o;34176:221::-;34252:7;34280:16;34288:7;34280;:16::i;:::-;34272:73;;;;-1:-1:-1;;;34272:73:0;;20202:2:1;34272:73:0;;;20184:21:1;20241:2;20221:18;;;20214:30;20280:34;20260:18;;;20253:62;-1:-1:-1;;;20331:18:1;;;20324:42;20383:19;;34272:73:0;20000:408:1;34272:73:0;-1:-1:-1;34365:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34365:24:0;;34176:221::o;58692:100::-;11738:6;;-1:-1:-1;;;;;11738:6:0;10533:10;11885:23;11877:68;;;;-1:-1:-1;;;11877:68:0;;;;;;;:::i;:::-;58762:9:::1;:22:::0;58692:100::o;33699:411::-;33780:13;33796:23;33811:7;33796:14;:23::i;:::-;33780:39;;33844:5;-1:-1:-1;;;;;33838:11:0;:2;-1:-1:-1;;;;;33838:11:0;;;33830:57;;;;-1:-1:-1;;;33830:57:0;;21802:2:1;33830:57:0;;;21784:21:1;21841:2;21821:18;;;21814:30;21880:34;21860:18;;;21853:62;-1:-1:-1;;;21931:18:1;;;21924:31;21972:19;;33830:57:0;21600:397:1;33830:57:0;10533:10;-1:-1:-1;;;;;33922:21:0;;;;:62;;-1:-1:-1;33947:37:0;33964:5;10533:10;34835:164;:::i;33947:37::-;33900:168;;;;-1:-1:-1;;;33900:168:0;;17835:2:1;33900:168:0;;;17817:21:1;17874:2;17854:18;;;17847:30;17913:34;17893:18;;;17886:62;17984:26;17964:18;;;17957:54;18028:19;;33900:168:0;17633:420:1;33900:168:0;34081:21;34090:2;34094:7;34081:8;:21::i;:::-;33769:341;33699:411;;:::o;59625:487::-;11738:6;;-1:-1:-1;;;;;11738:6:0;10533:10;11885:23;11877:68;;;;-1:-1:-1;;;11877:68:0;;;;;;;:::i;:::-;59807:9:::1;59803:300;59822:7;:14;59818:1;:18;59803:300;;;59867:17;59887:7;59895:1;59887:10;;;;;;;;:::i;:::-;;;;;;;59867:30;;59916:18;59924:9;59916:7;:18::i;:::-;59912:178;;;59969:8;;;59912:178;60049:25;60059:3;60064:9;60049;:25::i;:::-;59852:251;59803:300;59838:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59803:300;;59110:96:::0;11738:6;;-1:-1:-1;;;;;11738:6:0;10533:10;11885:23;11877:68;;;;-1:-1:-1;;;11877:68:0;;;;;;;:::i;:::-;59181:12:::1;:17:::0;;-1:-1:-1;;;;;;59181:17:0::1;-1:-1:-1::0;;;;;59181:17:0;;;::::1;::::0;;;::::1;::::0;;59110:96::o;35066:339::-;35261:41;10533:10;35294:7;35261:18;:41::i;:::-;35253:103;;;;-1:-1:-1;;;35253:103:0;;;;;;;:::i;:::-;35369:28;35379:4;35385:2;35389:7;35369:9;:28::i;59214:140::-;11738:6;;-1:-1:-1;;;;;11738:6:0;10533:10;11885:23;11877:68;;;;-1:-1:-1;;;11877:68:0;;;;;;;:::i;:::-;59303:25:::1;:43:::0;59214:140::o;45033:256::-;45130:7;45166:23;45183:5;45166:16;:23::i;:::-;45158:5;:31;45150:87;;;;-1:-1:-1;;;45150:87:0;;12769:2:1;45150:87:0;;;12751:21:1;12808:2;12788:18;;;12781:30;12847:34;12827:18;;;12820:62;-1:-1:-1;;;12898:18:1;;;12891:41;12949:19;;45150:87:0;12567:407:1;45150:87:0;-1:-1:-1;;;;;;45255:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;45033:256::o;58917:83::-;11738:6;;-1:-1:-1;;;;;11738:6:0;10533:10;11885:23;11877:68;;;;-1:-1:-1;;;11877:68:0;;;;;;;:::i;:::-;58985:2:::1;:7:::0;;-1:-1:-1;;;;;;58985:7:0::1;-1:-1:-1::0;;;;;58985:7:0;;;::::1;::::0;;;::::1;::::0;;58917:83::o;53026:1419::-;53130:8;51189:1;53155:40;;53151:1066;;;53245:23;53253:14;53245:7;:23::i;:::-;-1:-1:-1;;;;;53230:38:0;:10;-1:-1:-1;;;;;53230:38:0;;53221:110;;;;-1:-1:-1;;;53221:110:0;;17053:2:1;53221:110:0;;;17035:21:1;17092:2;17072:18;;;17065:30;17131:34;17111:18;;;17104:62;17202:28;17182:18;;;17175:56;17248:19;;53221:110:0;16851:422:1;53221:110:0;53401:8;;53383:15;;:26;;;;:::i;:::-;53355:24;;:55;53346:101;;;;-1:-1:-1;;;53346:101:0;;22204:2:1;53346:101:0;;;22186:21:1;;;22223:18;;;22216:30;22282:34;22262:18;;;22255:62;22334:18;;53346:101:0;22002:356:1;53346:101:0;53472:34;;;;:18;:34;;;;;;:39;53463:93;;;;-1:-1:-1;;;53463:93:0;;14357:2:1;53463:93:0;;;14339:21:1;14396:2;14376:18;;;14369:30;14435:34;14415:18;;;14408:62;-1:-1:-1;;;14486:18:1;;;14479:37;14533:19;;53463:93:0;14155:403:1;53463:93:0;53571:34;;;;:18;:34;;;;;53608:1;53571:38;;;;53641:24;;;53707:28;;53641:24;;53707:28;:::i;:::-;53680:24;:55;53151:1066;;;53820:16;;;;53811:79;;;;-1:-1:-1;;;53811:79:0;;15473:2:1;53811:79:0;;;15455:21:1;15512:2;15492:18;;;15485:30;15551:34;15531:18;;;15524:62;-1:-1:-1;;;15602:18:1;;;15595:37;15649:19;;53811:79:0;15271:403:1;53811:79:0;53927:26;53944:8;53927:16;:26::i;:::-;-1:-1:-1;;;;;53913:40:0;:10;-1:-1:-1;;;;;53913:40:0;;53905:112;;;;-1:-1:-1;;;53905:112:0;;22565:2:1;53905:112:0;;;22547:21:1;22604:2;22584:18;;;22577:30;22643:34;22623:18;;;22616:62;22714:29;22694:18;;;22687:57;22761:19;;53905:112:0;22363:423:1;53905:112:0;51127:3;54040:14;:32;54032:79;;;;-1:-1:-1;;;54032:79:0;;11948:2:1;54032:79:0;;;11930:21:1;11987:2;11967:18;;;11960:30;12026:34;12006:18;;;11999:62;-1:-1:-1;;;12077:18:1;;;12070:32;12119:19;;54032:79:0;11746:398:1;54032:79:0;54135:23;54143:14;54135:7;:23::i;:::-;54134:24;54126:79;;;;-1:-1:-1;;;54126:79:0;;23411:2:1;54126:79:0;;;23393:21:1;23450:2;23430:18;;;23423:30;23489:34;23469:18;;;23462:62;-1:-1:-1;;;23540:18:1;;;23533:32;23582:19;;54126:79:0;23209:398:1;54126:79:0;54282:1;54238:41;54256:10;54267:11;54238:17;:41::i;:::-;:45;54229:108;;;;-1:-1:-1;;;54229:108:0;;12351:2:1;54229:108:0;;;12333:21:1;12390:2;12370:18;;;12363:30;12429:34;12409:18;;;12402:62;-1:-1:-1;;;12480:18:1;;;12473:47;12537:19;;54229:108:0;12149:413:1;54229:108:0;54351:36;54363:11;54376:10;54351;:36::i;:::-;54400:37;54410:10;54422:14;54400:9;:37::i;35476:185::-;35614:39;35631:4;35637:2;35641:7;35614:39;;;;;;;;;;;;:16;:39::i;57441:342::-;57500:16;57529:18;57550:17;57560:6;57550:9;:17::i;:::-;57529:38;;57580:25;57622:10;57608:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57608:25:0;;57580:53;;57648:9;57644:106;57663:10;57659:1;:14;57644:106;;;57708:30;57728:6;57736:1;57708:19;:30::i;:::-;57694:8;57703:1;57694:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;57675:3;;;;:::i;:::-;;;;57644:106;;;-1:-1:-1;57767:8:0;57441:342;-1:-1:-1;;;57441:342:0:o;59008:94::-;11738:6;;-1:-1:-1;;;;;11738:6:0;10533:10;11885:23;11877:68;;;;-1:-1:-1;;;11877:68:0;;;;;;;:::i;:::-;59078:11:::1;:16:::0;;-1:-1:-1;;;;;;59078:16:0::1;-1:-1:-1::0;;;;;59078:16:0;;;::::1;::::0;;;::::1;::::0;;59008:94::o;58182:127::-;11738:6;;-1:-1:-1;;;;;11738:6:0;10533:10;11885:23;11877:68;;;;-1:-1:-1;;;11877:68:0;;;;;;;:::i;:::-;58263:24:::1;:38:::0;58182:127::o;56381:194::-;56510:11;;56540:27;;-1:-1:-1;;;56540:27:0;;;;;24530:25:1;;;56446:7:0;;-1:-1:-1;;;;;56510:11:0;;;;56540:17;;24503:18:1;;56540:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56533:34;56381:194;-1:-1:-1;;;56381:194:0:o;57793:104::-;57848:4;57872:17;57880:8;57872:7;:17::i;45555:233::-;45630:7;45666:30;45453:10;:17;;45365:113;45666:30;45658:5;:38;45650:95;;;;-1:-1:-1;;;45650:95:0;;23814:2:1;45650:95:0;;;23796:21:1;23853:2;23833:18;;;23826:30;23892:34;23872:18;;;23865:62;-1:-1:-1;;;23943:18:1;;;23936:42;23995:19;;45650:95:0;23612:408:1;45650:95:0;45763:10;45774:5;45763:17;;;;;;;;:::i;:::-;;;;;;;;;45756:24;;45555:233;;;:::o;58804:101::-;11738:6;;-1:-1:-1;;;;;11738:6:0;10533:10;11885:23;11877:68;;;;-1:-1:-1;;;11877:68:0;;;;;;;:::i;:::-;58875:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;60634:243::-:0;11738:6;;-1:-1:-1;;;;;11738:6:0;10533:10;11885:23;11877:68;;;;-1:-1:-1;;;11877:68:0;;;;;;;:::i;:::-;60785:2:::1;::::0;60777:37:::1;::::0;60716:21:::1;::::0;60697:16:::1;::::0;-1:-1:-1;;;;;60785:2:0;;::::1;::::0;60716:21;;60697:16;60777:37;60697:16;60777:37;60716:21;60785:2;60777:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60758:56;;;60833:7;60825:42;;;::::0;-1:-1:-1;;;60825:42:0;;15122:2:1;60825:42:0::1;::::0;::::1;15104:21:1::0;15161:2;15141:18;;;15134:30;-1:-1:-1;;;15180:18:1;;;15173:52;15242:18;;60825:42:0::1;14920:346:1::0;55493:668:0;55572:25;;55617:9;;55608:63;;;;-1:-1:-1;;;55608:63:0;;18260:2:1;55608:63:0;;;18242:21:1;18299:2;18279:18;;;18272:30;18338:25;18318:18;;;18311:53;18381:18;;55608:63:0;18058:347:1;55608:63:0;55698:14;;55691:3;:21;;55682:70;;;;-1:-1:-1;;;55682:70:0;;24227:2:1;55682:70:0;;;24209:21:1;24266:2;24246:18;;;24239:30;24305:32;24285:18;;;24278:60;24355:18;;55682:70:0;24025:354:1;55682:70:0;51127:3;55809:8;;:26;;;;:::i;:::-;55800:3;55772:25;;:31;;;;:::i;:::-;55771:65;;55763:117;;;;-1:-1:-1;;;55763:117:0;;;;;;;:::i;:::-;55921:3;55913:5;;:11;;;;:::i;:::-;55900:9;:24;;55891:66;;;;-1:-1:-1;;;55891:66:0;;17480:2:1;55891:66:0;;;17462:21:1;17519:2;17499:18;;;17492:30;17558:28;17538:18;;;17531:56;17604:18;;55891:66:0;17278:350:1;55891:66:0;56026:3;55998:25;;:31;;;;:::i;:::-;55970:25;:59;56044:9;56040:114;56059:3;56055:1;:7;56040:114;;;56083:59;56094:10;51127:3;56106:16;56121:1;56106:12;:16;:::i;:::-;:34;;;;:::i;:::-;56083:9;:59::i;:::-;56064:3;;;;:::i;:::-;;;;56040:114;;32311:239;32383:7;32419:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32419:16:0;32454:19;32446:73;;;;-1:-1:-1;;;32446:73:0;;19023:2:1;32446:73:0;;;19005:21:1;19062:2;19042:18;;;19035:30;19101:34;19081:18;;;19074:62;-1:-1:-1;;;19152:18:1;;;19145:39;19201:19;;32446:73:0;18821:405:1;58545:109:0;11738:6;;-1:-1:-1;;;;;11738:6:0;10533:10;11885:23;11877:68;;;;-1:-1:-1;;;11877:68:0;;;;;;;:::i;:::-;58618:16:::1;:28:::0;;-1:-1:-1;;58618:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58545:109::o;58431:106::-;11738:6;;-1:-1:-1;;;;;11738:6:0;10533:10;11885:23;11877:68;;;;-1:-1:-1;;;11877:68:0;;;;;;;:::i;:::-;58503:14:::1;:26:::0;58431:106::o;55077:383::-;55159:9;55155:298;55174:7;:14;55170:1;:18;55155:298;;;55219:17;55239:7;55247:1;55239:10;;;;;;;;:::i;:::-;;;;;;;55219:30;;55268:18;55276:9;55268:7;:18::i;:::-;55264:176;;;55321:8;;;55264:176;55401:23;55412:9;55422:1;55401:10;:23::i;:::-;55204:249;55155:298;55190:3;;;;:::i;:::-;;;;55155:298;;32041:208;32113:7;-1:-1:-1;;;;;32141:19:0;;32133:74;;;;-1:-1:-1;;;32133:74:0;;18612:2:1;32133:74:0;;;18594:21:1;18651:2;18631:18;;;18624:30;18690:34;18670:18;;;18663:62;-1:-1:-1;;;18741:18:1;;;18734:40;18791:19;;32133:74:0;18410:406:1;32133:74:0;-1:-1:-1;;;;;;32225:16:0;;;;;:9;:16;;;;;;;32041:208::o;12316:94::-;11738:6;;-1:-1:-1;;;;;11738:6:0;10533:10;11885:23;11877:68;;;;-1:-1:-1;;;11877:68:0;;;;;;;:::i;:::-;12381:21:::1;12399:1;12381:9;:21::i;:::-;12316:94::o:0;57981:92::-;11738:6;;-1:-1:-1;;;;;11738:6:0;10533:10;11885:23;11877:68;;;;-1:-1:-1;;;11877:68:0;;;;;;;:::i;:::-;58048:5:::1;:17:::0;57981:92::o;32786:104::-;32842:13;32875:7;32868:14;;;;;:::i;58316:103::-;11738:6;;-1:-1:-1;;;;;11738:6:0;10533:10;11885:23;11877:68;;;;-1:-1:-1;;;11877:68:0;;;;;;;:::i;:::-;58386:15:::1;:25:::0;58316:103::o;56790:203::-;56929:12;;56960:25;;-1:-1:-1;;;56960:25:0;;-1:-1:-1;;;;;10606:32:1;;;56960:25:0;;;10588:51:1;10655:18;;;10648:34;;;56867:7:0;;56929:12;;;;56960:13;;10561:18:1;;56960:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56953:32;56790:203;-1:-1:-1;;;;56790:203:0:o;34469:295::-;-1:-1:-1;;;;;34572:24:0;;10533:10;34572:24;;34564:62;;;;-1:-1:-1;;;34564:62:0;;16286:2:1;34564:62:0;;;16268:21:1;16325:2;16305:18;;;16298:30;16364:27;16344:18;;;16337:55;16409:18;;34564:62:0;16084:349:1;34564:62:0;10533:10;34639:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34639:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34639:53:0;;;;;;;;;;34708:48;;11470:41:1;;;34639:42:0;;10533:10;34708:48;;11443:18:1;34708:48:0;;;;;;;34469:295;;:::o;35732:328::-;35907:41;10533:10;35940:7;35907:18;:41::i;:::-;35899:103;;;;-1:-1:-1;;;35899:103:0;;;;;;;:::i;:::-;36013:39;36027:4;36033:2;36037:7;36046:5;36013:13;:39::i;:::-;35732:328;;;;:::o;58085:90::-;11738:6;;-1:-1:-1;;;;;11738:6:0;10533:10;11885:23;11877:68;;;;-1:-1:-1;;;11877:68:0;;;;;;;:::i;:::-;58149:8:::1;:18:::0;58085:90::o;32961:334::-;33034:13;33068:16;33076:7;33068;:16::i;:::-;33060:76;;;;-1:-1:-1;;;33060:76:0;;21386:2:1;33060:76:0;;;21368:21:1;21425:2;21405:18;;;21398:30;21464:34;21444:18;;;21437:62;-1:-1:-1;;;21515:18:1;;;21508:45;21570:19;;33060:76:0;21184:411:1;33060:76:0;33149:21;33173:10;:8;:10::i;:::-;33149:34;;33225:1;33207:7;33201:21;:25;:86;;;;;;;;;;;;;;;;;33253:7;33262:18;:7;:16;:18::i;:::-;33236:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33194:93;32961:334;-1:-1:-1;;;32961:334:0:o;60120:502::-;11738:6;;-1:-1:-1;;;;;11738:6:0;10533:10;11885:23;11877:68;;;;-1:-1:-1;;;11877:68:0;;;;;;;:::i;:::-;60222:25:::1;::::0;60307:8:::1;::::0;:26:::1;::::0;51127:3:::1;::::0;60307:26:::1;:::i;:::-;60295:6;60267:25;;:34;;;;:::i;:::-;60266:68;;60258:120;;;;-1:-1:-1::0;;;60258:120:0::1;;;;;;;:::i;:::-;60482:6;60454:25;;:34;;;;:::i;:::-;60426:25;:62:::0;60510:9:::1;60506:109;60525:6;60521:1;:10;60506:109;;;60552:51;60563:3:::0;51127::::1;60568:16;60583:1:::0;60568:12;:16:::1;:::i;60552:51::-;60533:3:::0;::::1;::::0;::::1;:::i;:::-;;;;60506:109;;52418:563:::0;52489:12;52531:14;52514:32;;;;;;;;:::i;:::-;;;;-1:-1:-1;;52514:32:0;;;;;;;;;52504:43;;52514:32;52504:43;;;;52567:17;;;;:11;:17;;;;;;52504:43;;-1:-1:-1;52567:17:0;;52558:61;;;;-1:-1:-1;;;52558:61:0;;13600:2:1;52558:61:0;;;13582:21:1;13639:2;13619:18;;;13612:30;-1:-1:-1;;;13658:18:1;;;13651:51;13719:18;;52558:61:0;13398:345:1;52558:61:0;52653:25;;52733:8;;:26;;51127:3;;52733:26;:::i;:::-;52698:25;;:29;;52726:1;52698:29;:::i;:::-;52697:63;;52689:115;;;;-1:-1:-1;;;52689:115:0;;;;;;;:::i;:::-;52835:5;52815:17;;;:11;:17;;;;;:25;;-1:-1:-1;;52815:25:0;;;52879;;:29;;52815:25;52879:29;:::i;:::-;52851:25;:57;52919:54;52930:10;52942:30;51127:3;52942:12;:30;:::i;51049:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56169:204::-;56304:11;;56334:31;;-1:-1:-1;;;56334:31:0;;-1:-1:-1;;;;;9877:32:1;;;56334:31:0;;;9859:51:1;56231:16:0;;56304:11;;;;56334:23;;9832:18:1;;56334:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56334:31:0;;;;;;;;;;;;:::i;12565:192::-;11738:6;;-1:-1:-1;;;;;11738:6:0;10533:10;11885:23;11877:68;;;;-1:-1:-1;;;11877:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12654:22:0;::::1;12646:73;;;::::0;-1:-1:-1;;;12646:73:0;;13950:2:1;12646:73:0::1;::::0;::::1;13932:21:1::0;13989:2;13969:18;;;13962:30;14028:34;14008:18;;;14001:62;-1:-1:-1;;;14079:18:1;;;14072:36;14125:19;;12646:73:0::1;13748:402:1::0;12646:73:0::1;12730:19;12740:8;12730:9;:19::i;:::-;12565:192:::0;:::o;56583:199::-;56717:11;;56747:27;;-1:-1:-1;;;56747:27:0;;-1:-1:-1;;;;;9877:32:1;;;56747:27:0;;;9859:51:1;56653:7:0;;56717:11;;;;56747:19;;9832:18:1;;56747:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;54501:520::-;54551:28;54582:27;54598:10;54582:15;:27::i;:::-;54551:58;;54626:9;54622:392;54641:11;:18;54637:1;:22;54622:392;;;54690:17;54710:11;54722:1;54710:14;;;;;;;;:::i;:::-;;;;;;;54690:34;;54830:18;54838:9;54830:7;:18::i;:::-;54826:177;;;54883:8;;;54826:177;54963:24;54974:9;54985:1;54963:10;:24::i;:::-;54675:339;54622:392;54661:3;;;;:::i;:::-;;;;54622:392;;31672:305;31774:4;-1:-1:-1;;;;;;31811:40:0;;-1:-1:-1;;;31811:40:0;;:105;;-1:-1:-1;;;;;;;31868:48:0;;-1:-1:-1;;;31868:48:0;31811:105;:158;;;-1:-1:-1;;;;;;;;;;23760:40:0;;;31933:36;23651:157;37570:127;37635:4;37659:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37659:16:0;:30;;;37570:127::o;41552:174::-;41627:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41627:29:0;-1:-1:-1;;;;;41627:29:0;;;;;;;;:24;;41681:23;41627:24;41681:14;:23::i;:::-;-1:-1:-1;;;;;41672:46:0;;;;;;;;;;;41552:174;;:::o;38554:110::-;38630:26;38640:2;38644:7;38630:26;;;;;;;;;;;;:9;:26::i;37864:348::-;37957:4;37982:16;37990:7;37982;:16::i;:::-;37974:73;;;;-1:-1:-1;;;37974:73:0;;16640:2:1;37974:73:0;;;16622:21:1;16679:2;16659:18;;;16652:30;16718:34;16698:18;;;16691:62;-1:-1:-1;;;16769:18:1;;;16762:42;16821:19;;37974:73:0;16438:408:1;37974:73:0;38058:13;38074:23;38089:7;38074:14;:23::i;:::-;38058:39;;38127:5;-1:-1:-1;;;;;38116:16:0;:7;-1:-1:-1;;;;;38116:16:0;;:51;;;;38160:7;-1:-1:-1;;;;;38136:31:0;:20;38148:7;38136:11;:20::i;:::-;-1:-1:-1;;;;;38136:31:0;;38116:51;:87;;;-1:-1:-1;;;;;;34956:25:0;;;34932:4;34956:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38171:32;34835:164;40856:578;41015:4;-1:-1:-1;;;;;40988:31:0;:23;41003:7;40988:14;:23::i;:::-;-1:-1:-1;;;;;40988:31:0;;40980:85;;;;-1:-1:-1;;;40980:85:0;;20976:2:1;40980:85:0;;;20958:21:1;21015:2;20995:18;;;20988:30;21054:34;21034:18;;;21027:62;-1:-1:-1;;;21105:18:1;;;21098:39;21154:19;;40980:85:0;20774:405:1;40980:85:0;-1:-1:-1;;;;;41084:16:0;;41076:65;;;;-1:-1:-1;;;41076:65:0;;15881:2:1;41076:65:0;;;15863:21:1;15920:2;15900:18;;;15893:30;15959:34;15939:18;;;15932:62;-1:-1:-1;;;16010:18:1;;;16003:34;16054:19;;41076:65:0;15679:400:1;41076:65:0;41154:39;41175:4;41181:2;41185:7;41154:20;:39::i;:::-;41258:29;41275:1;41279:7;41258:8;:29::i;:::-;-1:-1:-1;;;;;41300:15:0;;;;;;:9;:15;;;;;:20;;41319:1;;41300:15;:20;;41319:1;;41300:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41331:13:0;;;;;;:9;:13;;;;;:18;;41348:1;;41331:13;:18;;41348:1;;41331:18;:::i;:::-;;;;-1:-1:-1;;41360:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41360:21:0;-1:-1:-1;;;;;41360:21:0;;;;;;;;;41399:27;;41360:16;;41399:27;;;;;;;40856:578;;;:::o;57001:209::-;57126:12;;57150:52;;-1:-1:-1;;;57150:52:0;;;;;24740:25:1;;;-1:-1:-1;;;;;24801:32:1;;;24781:18;;;24774:60;57126:12:0;;;;;;57150:24;;24713:18:1;;57150:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57073:137;57001:209;;:::o;12765:173::-;12840:6;;;-1:-1:-1;;;;;12857:17:0;;;-1:-1:-1;;;;;;12857:17:0;;;;;;;12890:40;;12840:6;;;12857:17;12840:6;;12890:40;;12821:16;;12890:40;12810:128;12765:173;:::o;36942:315::-;37099:28;37109:4;37115:2;37119:7;37099:9;:28::i;:::-;37146:48;37169:4;37175:2;37179:7;37188:5;37146:22;:48::i;:::-;37138:111;;;;-1:-1:-1;;;37138:111:0;;;;;;;:::i;57316:113::-;57376:13;57409:12;57402:19;;;;;:::i;8069:723::-;8125:13;8346:10;8342:53;;-1:-1:-1;;8373:10:0;;;;;;;;;;;;-1:-1:-1;;;8373:10:0;;;;;8069:723::o;8342:53::-;8420:5;8405:12;8461:78;8468:9;;8461:78;;8494:8;;;;:::i;:::-;;-1:-1:-1;8517:10:0;;-1:-1:-1;8525:2:0;8517:10;;:::i;:::-;;;8461:78;;;8549:19;8581:6;8571:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8571:17:0;;8549:39;;8599:154;8606:10;;8599:154;;8633:11;8643:1;8633:11;;:::i;:::-;;-1:-1:-1;8702:10:0;8710:2;8702:5;:10;:::i;:::-;8689:24;;:2;:24;:::i;:::-;8676:39;;8659:6;8666;8659:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8659:56:0;;;;;;;;-1:-1:-1;8730:11:0;8739:2;8730:11;;:::i;:::-;;;8599:154;;38891:321;39021:18;39027:2;39031:7;39021:5;:18::i;:::-;39072:54;39103:1;39107:2;39111:7;39120:5;39072:22;:54::i;:::-;39050:154;;;;-1:-1:-1;;;39050:154:0;;;;;;;:::i;46401:589::-;-1:-1:-1;;;;;46607:18:0;;46603:187;;46642:40;46674:7;47817:10;:17;;47790:24;;;;:15;:24;;;;;:44;;;47845:24;;;;;;;;;;;;47713:164;46642:40;46603:187;;;46712:2;-1:-1:-1;;;;;46704:10:0;:4;-1:-1:-1;;;;;46704:10:0;;46700:90;;46731:47;46764:4;46770:7;46731:32;:47::i;:::-;-1:-1:-1;;;;;46804:16:0;;46800:183;;46837:45;46874:7;46837:36;:45::i;46800:183::-;46910:4;-1:-1:-1;;;;;46904:10:0;:2;-1:-1:-1;;;;;46904:10:0;;46900:83;;46931:40;46959:2;46963:7;46931:27;:40::i;42291:799::-;42446:4;-1:-1:-1;;;;;42467:13:0;;14034:20;14082:8;42463:620;;42503:72;;-1:-1:-1;;;42503:72:0;;-1:-1:-1;;;;;42503:36:0;;;;;:72;;10533:10;;42554:4;;42560:7;;42569:5;;42503:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42503:72:0;;;;;;;;-1:-1:-1;;42503:72:0;;;;;;;;;;;;:::i;:::-;;;42499:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42745:13:0;;42741:272;;42788:60;;-1:-1:-1;;;42788:60:0;;;;;;;:::i;42741:272::-;42963:6;42957:13;42948:6;42944:2;42940:15;42933:38;42499:529;-1:-1:-1;;;;;;42626:51:0;-1:-1:-1;;;42626:51:0;;-1:-1:-1;42619:58:0;;42463:620;-1:-1:-1;43067:4:0;42291:799;;;;;;:::o;39548:382::-;-1:-1:-1;;;;;39628:16:0;;39620:61;;;;-1:-1:-1;;;39620:61:0;;19433:2:1;39620:61:0;;;19415:21:1;;;19452:18;;;19445:30;19511:34;19491:18;;;19484:62;19563:18;;39620:61:0;19231:356:1;39620:61:0;39701:16;39709:7;39701;:16::i;:::-;39700:17;39692:58;;;;-1:-1:-1;;;39692:58:0;;14765:2:1;39692:58:0;;;14747:21:1;14804:2;14784:18;;;14777:30;14843;14823:18;;;14816:58;14891:18;;39692:58:0;14563:352:1;39692:58:0;39763:45;39792:1;39796:2;39800:7;39763:20;:45::i;:::-;-1:-1:-1;;;;;39821:13:0;;;;;;:9;:13;;;;;:18;;39838:1;;39821:13;:18;;39838:1;;39821:18;:::i;:::-;;;;-1:-1:-1;;39850:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39850:21:0;-1:-1:-1;;;;;39850:21:0;;;;;;;;39889:33;;39850:16;;;39889:33;;39850:16;;39889:33;39548:382;;:::o;48504:988::-;48770:22;48820:1;48795:22;48812:4;48795:16;:22::i;:::-;:26;;;;:::i;:::-;48832:18;48853:26;;;:17;:26;;;;;;48770:51;;-1:-1:-1;48986:28:0;;;48982:328;;-1:-1:-1;;;;;49053:18:0;;49031:19;49053:18;;;:12;:18;;;;;;;;:34;;;;;;;;;49104:30;;;;;;:44;;;49221:30;;:17;:30;;;;;:43;;;48982:328;-1:-1:-1;49406:26:0;;;;:17;:26;;;;;;;;49399:33;;;-1:-1:-1;;;;;49450:18:0;;;;;:12;:18;;;;;:34;;;;;;;49443:41;48504:988::o;49787:1079::-;50065:10;:17;50040:22;;50065:21;;50085:1;;50065:21;:::i;:::-;50097:18;50118:24;;;:15;:24;;;;;;50491:10;:26;;50040:46;;-1:-1:-1;50118:24:0;;50040:46;;50491:26;;;;;;:::i;:::-;;;;;;;;;50469:48;;50555:11;50530:10;50541;50530:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;50635:28;;;:15;:28;;;;;;;:41;;;50807:24;;;;;50800:31;50842:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;49858:1008;;;49787:1079;:::o;47291:221::-;47376:14;47393:20;47410:2;47393:16;:20::i;:::-;-1:-1:-1;;;;;47424:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;47469:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;47291:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:673::-;479:5;532:3;525:4;517:6;513:17;509:27;499:55;;550:1;547;540:12;499:55;586:6;573:20;612:4;636:60;652:43;692:2;652:43;:::i;:::-;636:60;:::i;:::-;718:3;742:2;737:3;730:15;770:2;765:3;761:12;754:19;;805:2;797:6;793:15;857:3;852:2;846;843:1;839:10;831:6;827:23;823:32;820:41;817:61;;;874:1;871;864:12;817:61;896:1;906:163;920:2;917:1;914:9;906:163;;;977:17;;965:30;;1015:12;;;;1047;;;;938:1;931:9;906:163;;;-1:-1:-1;1087:5:1;;425:673;-1:-1:-1;;;;;;;425:673:1:o;1103:160::-;1168:20;;1224:13;;1217:21;1207:32;;1197:60;;1253:1;1250;1243:12;1197:60;1103:160;;;:::o;1268:247::-;1327:6;1380:2;1368:9;1359:7;1355:23;1351:32;1348:52;;;1396:1;1393;1386:12;1348:52;1435:9;1422:23;1454:31;1479:5;1454:31;:::i;1520:251::-;1590:6;1643:2;1631:9;1622:7;1618:23;1614:32;1611:52;;;1659:1;1656;1649:12;1611:52;1691:9;1685:16;1710:31;1735:5;1710:31;:::i;1776:388::-;1844:6;1852;1905:2;1893:9;1884:7;1880:23;1876:32;1873:52;;;1921:1;1918;1911:12;1873:52;1960:9;1947:23;1979:31;2004:5;1979:31;:::i;:::-;2029:5;-1:-1:-1;2086:2:1;2071:18;;2058:32;2099:33;2058:32;2099:33;:::i;:::-;2151:7;2141:17;;;1776:388;;;;;:::o;2169:456::-;2246:6;2254;2262;2315:2;2303:9;2294:7;2290:23;2286:32;2283:52;;;2331:1;2328;2321:12;2283:52;2370:9;2357:23;2389:31;2414:5;2389:31;:::i;:::-;2439:5;-1:-1:-1;2496:2:1;2481:18;;2468:32;2509:33;2468:32;2509:33;:::i;:::-;2169:456;;2561:7;;-1:-1:-1;;;2615:2:1;2600:18;;;;2587:32;;2169:456::o;2630:794::-;2725:6;2733;2741;2749;2802:3;2790:9;2781:7;2777:23;2773:33;2770:53;;;2819:1;2816;2809:12;2770:53;2858:9;2845:23;2877:31;2902:5;2877:31;:::i;:::-;2927:5;-1:-1:-1;2984:2:1;2969:18;;2956:32;2997:33;2956:32;2997:33;:::i;:::-;3049:7;-1:-1:-1;3103:2:1;3088:18;;3075:32;;-1:-1:-1;3158:2:1;3143:18;;3130:32;3185:18;3174:30;;3171:50;;;3217:1;3214;3207:12;3171:50;3240:22;;3293:4;3285:13;;3281:27;-1:-1:-1;3271:55:1;;3322:1;3319;3312:12;3271:55;3345:73;3410:7;3405:2;3392:16;3387:2;3383;3379:11;3345:73;:::i;:::-;3335:83;;;2630:794;;;;;;;:::o;3429:315::-;3494:6;3502;3555:2;3543:9;3534:7;3530:23;3526:32;3523:52;;;3571:1;3568;3561:12;3523:52;3610:9;3597:23;3629:31;3654:5;3629:31;:::i;:::-;3679:5;-1:-1:-1;3703:35:1;3734:2;3719:18;;3703:35;:::i;:::-;3693:45;;3429:315;;;;;:::o;3749:::-;3817:6;3825;3878:2;3866:9;3857:7;3853:23;3849:32;3846:52;;;3894:1;3891;3884:12;3846:52;3933:9;3920:23;3952:31;3977:5;3952:31;:::i;:::-;4002:5;4054:2;4039:18;;;;4026:32;;-1:-1:-1;;;3749:315:1:o;4069:902::-;4153:6;4184:2;4227;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;4283:9;4270:23;4316:18;4308:6;4305:30;4302:50;;;4348:1;4345;4338:12;4302:50;4371:22;;4424:4;4416:13;;4412:27;-1:-1:-1;4402:55:1;;4453:1;4450;4443:12;4402:55;4489:2;4476:16;4512:60;4528:43;4568:2;4528:43;:::i;4512:60::-;4594:3;4618:2;4613:3;4606:15;4646:2;4641:3;4637:12;4630:19;;4677:2;4673;4669:11;4725:7;4720:2;4714;4711:1;4707:10;4703:2;4699:19;4695:28;4692:41;4689:61;;;4746:1;4743;4736:12;4689:61;4768:1;4759:10;;4778:163;4792:2;4789:1;4786:9;4778:163;;;4849:17;;4837:30;;4810:1;4803:9;;;;;4887:12;;;;4919;;4778:163;;;-1:-1:-1;4960:5:1;4069:902;-1:-1:-1;;;;;;;4069:902:1:o;4976:348::-;5060:6;5113:2;5101:9;5092:7;5088:23;5084:32;5081:52;;;5129:1;5126;5119:12;5081:52;5169:9;5156:23;5202:18;5194:6;5191:30;5188:50;;;5234:1;5231;5224:12;5188:50;5257:61;5310:7;5301:6;5290:9;5286:22;5257:61;:::i;5329:892::-;5424:6;5455:2;5498;5486:9;5477:7;5473:23;5469:32;5466:52;;;5514:1;5511;5504:12;5466:52;5547:9;5541:16;5580:18;5572:6;5569:30;5566:50;;;5612:1;5609;5602:12;5566:50;5635:22;;5688:4;5680:13;;5676:27;-1:-1:-1;5666:55:1;;5717:1;5714;5707:12;5666:55;5746:2;5740:9;5769:60;5785:43;5825:2;5785:43;:::i;5769:60::-;5851:3;5875:2;5870:3;5863:15;5903:2;5898:3;5894:12;5887:19;;5934:2;5930;5926:11;5982:7;5977:2;5971;5968:1;5964:10;5960:2;5956:19;5952:28;5949:41;5946:61;;;6003:1;6000;5993:12;5946:61;6025:1;6016:10;;6035:156;6049:2;6046:1;6043:9;6035:156;;;6106:10;;6094:23;;6067:1;6060:9;;;;;6137:12;;;;6169;;6035:156;;6226:483;6319:6;6327;6380:2;6368:9;6359:7;6355:23;6351:32;6348:52;;;6396:1;6393;6386:12;6348:52;6436:9;6423:23;6469:18;6461:6;6458:30;6455:50;;;6501:1;6498;6491:12;6455:50;6524:61;6577:7;6568:6;6557:9;6553:22;6524:61;:::i;:::-;6514:71;;;6635:2;6624:9;6620:18;6607:32;6648:31;6673:5;6648:31;:::i;6714:180::-;6770:6;6823:2;6811:9;6802:7;6798:23;6794:32;6791:52;;;6839:1;6836;6829:12;6791:52;6862:26;6878:9;6862:26;:::i;6899:245::-;6957:6;7010:2;6998:9;6989:7;6985:23;6981:32;6978:52;;;7026:1;7023;7016:12;6978:52;7065:9;7052:23;7084:30;7108:5;7084:30;:::i;7149:249::-;7218:6;7271:2;7259:9;7250:7;7246:23;7242:32;7239:52;;;7287:1;7284;7277:12;7239:52;7319:9;7313:16;7338:30;7362:5;7338:30;:::i;7403:450::-;7472:6;7525:2;7513:9;7504:7;7500:23;7496:32;7493:52;;;7541:1;7538;7531:12;7493:52;7581:9;7568:23;7614:18;7606:6;7603:30;7600:50;;;7646:1;7643;7636:12;7600:50;7669:22;;7722:4;7714:13;;7710:27;-1:-1:-1;7700:55:1;;7751:1;7748;7741:12;7700:55;7774:73;7839:7;7834:2;7821:16;7816:2;7812;7808:11;7774:73;:::i;7858:180::-;7917:6;7970:2;7958:9;7949:7;7945:23;7941:32;7938:52;;;7986:1;7983;7976:12;7938:52;-1:-1:-1;8009:23:1;;7858:180;-1:-1:-1;7858:180:1:o;8043:184::-;8113:6;8166:2;8154:9;8145:7;8141:23;8137:32;8134:52;;;8182:1;8179;8172:12;8134:52;-1:-1:-1;8205:16:1;;8043:184;-1:-1:-1;8043:184:1:o;8232:248::-;8300:6;8308;8361:2;8349:9;8340:7;8336:23;8332:32;8329:52;;;8377:1;8374;8367:12;8329:52;-1:-1:-1;;8400:23:1;;;8470:2;8455:18;;;8442:32;;-1:-1:-1;8232:248:1:o;8485:257::-;8526:3;8564:5;8558:12;8591:6;8586:3;8579:19;8607:63;8663:6;8656:4;8651:3;8647:14;8640:4;8633:5;8629:16;8607:63;:::i;:::-;8724:2;8703:15;-1:-1:-1;;8699:29:1;8690:39;;;;8731:4;8686:50;;8485:257;-1:-1:-1;;8485:257:1:o;8747:276::-;8878:3;8916:6;8910:13;8932:53;8978:6;8973:3;8966:4;8958:6;8954:17;8932:53;:::i;:::-;9001:16;;;;;8747:276;-1:-1:-1;;8747:276:1:o;9028:470::-;9207:3;9245:6;9239:13;9261:53;9307:6;9302:3;9295:4;9287:6;9283:17;9261:53;:::i;:::-;9377:13;;9336:16;;;;9399:57;9377:13;9336:16;9433:4;9421:17;;9399:57;:::i;:::-;9472:20;;9028:470;-1:-1:-1;;;;9028:470:1:o;9921:488::-;-1:-1:-1;;;;;10190:15:1;;;10172:34;;10242:15;;10237:2;10222:18;;10215:43;10289:2;10274:18;;10267:34;;;10337:3;10332:2;10317:18;;10310:31;;;10115:4;;10358:45;;10383:19;;10375:6;10358:45;:::i;:::-;10350:53;9921:488;-1:-1:-1;;;;;;9921:488:1:o;10693:632::-;10864:2;10916:21;;;10986:13;;10889:18;;;11008:22;;;10835:4;;10864:2;11087:15;;;;11061:2;11046:18;;;10835:4;11130:169;11144:6;11141:1;11138:13;11130:169;;;11205:13;;11193:26;;11274:15;;;;11239:12;;;;11166:1;11159:9;11130:169;;;-1:-1:-1;11316:3:1;;10693:632;-1:-1:-1;;;;;;10693:632:1:o;11522:219::-;11671:2;11660:9;11653:21;11634:4;11691:44;11731:2;11720:9;11716:18;11708:6;11691:44;:::i;12979:414::-;13181:2;13163:21;;;13220:2;13200:18;;;13193:30;13259:34;13254:2;13239:18;;13232:62;-1:-1:-1;;;13325:2:1;13310:18;;13303:48;13383:3;13368:19;;12979:414::o;19592:403::-;19794:2;19776:21;;;19833:2;19813:18;;;19806:30;19872:34;19867:2;19852:18;;19845:62;-1:-1:-1;;;19938:2:1;19923:18;;19916:37;19985:3;19970:19;;19592:403::o;20413:356::-;20615:2;20597:21;;;20634:18;;;20627:30;20693:34;20688:2;20673:18;;20666:62;20760:2;20745:18;;20413:356::o;22791:413::-;22993:2;22975:21;;;23032:2;23012:18;;;23005:30;23071:34;23066:2;23051:18;;23044:62;-1:-1:-1;;;23137:2:1;23122:18;;23115:47;23194:3;23179:19;;22791:413::o;24845:275::-;24916:2;24910:9;24981:2;24962:13;;-1:-1:-1;;24958:27:1;24946:40;;25016:18;25001:34;;25037:22;;;24998:62;24995:88;;;25063:18;;:::i;:::-;25099:2;25092:22;24845:275;;-1:-1:-1;24845:275:1:o;25125:183::-;25185:4;25218:18;25210:6;25207:30;25204:56;;;25240:18;;:::i;:::-;-1:-1:-1;25285:1:1;25281:14;25297:4;25277:25;;25125:183::o;25313:128::-;25353:3;25384:1;25380:6;25377:1;25374:13;25371:39;;;25390:18;;:::i;:::-;-1:-1:-1;25426:9:1;;25313:128::o;25446:120::-;25486:1;25512;25502:35;;25517:18;;:::i;:::-;-1:-1:-1;25551:9:1;;25446:120::o;25571:168::-;25611:7;25677:1;25673;25669:6;25665:14;25662:1;25659:21;25654:1;25647:9;25640:17;25636:45;25633:71;;;25684:18;;:::i;:::-;-1:-1:-1;25724:9:1;;25571:168::o;25744:125::-;25784:4;25812:1;25809;25806:8;25803:34;;;25817:18;;:::i;:::-;-1:-1:-1;25854:9:1;;25744:125::o;25874:258::-;25946:1;25956:113;25970:6;25967:1;25964:13;25956:113;;;26046:11;;;26040:18;26027:11;;;26020:39;25992:2;25985:10;25956:113;;;26087:6;26084:1;26081:13;26078:48;;;-1:-1:-1;;26122:1:1;26104:16;;26097:27;25874:258::o;26137:380::-;26216:1;26212:12;;;;26259;;;26280:61;;26334:4;26326:6;26322:17;26312:27;;26280:61;26387:2;26379:6;26376:14;26356:18;26353:38;26350:161;;;26433:10;26428:3;26424:20;26421:1;26414:31;26468:4;26465:1;26458:15;26496:4;26493:1;26486:15;26350:161;;26137:380;;;:::o;26522:135::-;26561:3;-1:-1:-1;;26582:17:1;;26579:43;;;26602:18;;:::i;:::-;-1:-1:-1;26649:1:1;26638:13;;26522:135::o;26662:112::-;26694:1;26720;26710:35;;26725:18;;:::i;:::-;-1:-1:-1;26759:9:1;;26662:112::o;26779:127::-;26840:10;26835:3;26831:20;26828:1;26821:31;26871:4;26868:1;26861:15;26895:4;26892:1;26885:15;26911:127;26972:10;26967:3;26963:20;26960:1;26953:31;27003:4;27000:1;26993:15;27027:4;27024:1;27017:15;27043:127;27104:10;27099:3;27095:20;27092:1;27085:31;27135:4;27132:1;27125:15;27159:4;27156:1;27149:15;27175:127;27236:10;27231:3;27227:20;27224:1;27217:31;27267:4;27264:1;27257:15;27291:4;27288:1;27281:15;27307:127;27368:10;27363:3;27359:20;27356:1;27349:31;27399:4;27396:1;27389:15;27423:4;27420:1;27413:15;27439:131;-1:-1:-1;;;;;27514:31:1;;27504:42;;27494:70;;27560:1;27557;27550:12;27575:131;-1:-1:-1;;;;;;27649:32:1;;27639:43;;27629:71;;27696:1;27693;27686:12

Swarm Source

ipfs://3eadb386088c62ab08bc86825f41e991b882cc47aad6a45399a5704717607a48
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

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