ETH Price: $3,378.15 (-1.92%)
Gas: 2 Gwei

Token

Mutant Wolf Pack (MWP)
 

Overview

Max Total Supply

3,000 MWP

Holders

1,016

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
tlieberman22.eth
Balance
15 MWP
0x729cfa0f61946c8a558da84103f332d310a9d26a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Mutant Wolf Pack is a collection of 3,000 hand drawn and carefully generated NFTs living in Ethereum Blockchain inspired by the 80's horror comics and punk rock culture. The roadmap includes apparel and clothing line, NFT staking, Artist Launchpad & 3D voxel Sandbox development.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MutantWolfPack

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-23
*/

// SPDX-License-Identifier: unlicensed
// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (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 generally not needed starting with Solidity 0.8, since 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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_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 {
        _transferOwnership(address(0));
    }

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

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

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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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: ERC721A/ERC721A.sol



// Creator: Chiru Labs



pragma solidity ^0.8.4;











error ApprovalCallerNotOwnerNorApproved();

error ApprovalQueryForNonexistentToken();

error ApproveToCaller();

error ApprovalToCurrentOwner();

error BalanceQueryForZeroAddress();

error MintedQueryForZeroAddress();

error BurnedQueryForZeroAddress();

error AuxQueryForZeroAddress();

error MintToZeroAddress();

error MintZeroQuantity();

error OwnerIndexOutOfBounds();

error OwnerQueryForNonexistentToken();

error TokenIndexOutOfBounds();

error TransferCallerNotOwnerNorApproved();

error TransferFromIncorrectOwner();

error TransferToNonERC721ReceiverImplementer();

error TransferToZeroAddress();

error URIQueryForNonexistentToken();



/**

 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including

 * the Metadata extension. Built to optimize for lower gas during batch mints.

 *

 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).

 *

 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.

 *

 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).

 */

contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {

    using Address for address;

    using Strings for uint256;



    // Compiler will pack this into a single 256bit word.

    struct TokenOwnership {

        // The address of the owner.

        address addr;

        // Keeps track of the start time of ownership with minimal overhead for tokenomics.

        uint64 startTimestamp;

        // Whether the token has been burned.

        bool burned;

    }



    // Compiler will pack this into a single 256bit word.

    struct AddressData {

        // Realistically, 2**64-1 is more than enough.

        uint64 balance;

        // Keeps track of mint count with minimal overhead for tokenomics.

        uint64 numberMinted;

        // Keeps track of burn count with minimal overhead for tokenomics.

        uint64 numberBurned;

        // For miscellaneous variable(s) pertaining to the address

        // (e.g. number of whitelist mint slots used).

        // If there are multiple variables, please pack them into a uint64.

        uint64 aux;

    }



    // The tokenId of the next token to be minted.

    uint256 internal _currentIndex;



    // The number of tokens burned.

    uint256 internal _burnCounter;



    // Token name

    string private _name;



    // Token symbol

    string private _symbol;



    // Mapping from token ID to ownership details

    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.

    mapping(uint256 => TokenOwnership) internal _ownerships;



    // Mapping owner address to address data

    mapping(address => AddressData) private _addressData;



    // Mapping from token ID to approved address

    mapping(uint256 => address) private _tokenApprovals;



    // Mapping from owner to operator approvals

    mapping(address => mapping(address => bool)) private _operatorApprovals;



    constructor(string memory name_, string memory symbol_) {

        _name = name_;

        _symbol = symbol_;

        _currentIndex = _startTokenId();

    }



    /**

     * To change the starting tokenId, please override this function.

     */

    function _startTokenId() internal view virtual returns (uint256) {

        return 0;

    }



    /**

     * @dev See {IERC721Enumerable-totalSupply}.

     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.

     */

    function totalSupply() public view returns (uint256) {

        // Counter underflow is impossible as _burnCounter cannot be incremented

        // more than _currentIndex - _startTokenId() times

        unchecked {

            return _currentIndex - _burnCounter - _startTokenId();

        }

    }



    /**

     * Returns the total amount of tokens minted in the contract.

     */

    function _totalMinted() internal view returns (uint256) {

        // Counter underflow is impossible as _currentIndex does not decrement,

        // and it is initialized to _startTokenId()

        unchecked {

            return _currentIndex - _startTokenId();

        }

    }



    /**

     * @dev 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 override returns (uint256) {

        if (owner == address(0)) revert BalanceQueryForZeroAddress();

        return uint256(_addressData[owner].balance);

    }



    /**

     * Returns the number of tokens minted by `owner`.

     */

    function _numberMinted(address owner) internal view returns (uint256) {

        if (owner == address(0)) revert MintedQueryForZeroAddress();

        return uint256(_addressData[owner].numberMinted);

    }



    /**

     * Returns the number of tokens burned by or on behalf of `owner`.

     */

    function _numberBurned(address owner) internal view returns (uint256) {

        if (owner == address(0)) revert BurnedQueryForZeroAddress();

        return uint256(_addressData[owner].numberBurned);

    }



    /**

     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).

     */

    function _getAux(address owner) internal view returns (uint64) {

        if (owner == address(0)) revert AuxQueryForZeroAddress();

        return _addressData[owner].aux;

    }



    /**

     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).

     * If there are multiple variables, please pack them into a uint64.

     */

    function _setAux(address owner, uint64 aux) internal {

        if (owner == address(0)) revert AuxQueryForZeroAddress();

        _addressData[owner].aux = aux;

    }



    /**

     * Gas spent here starts off proportional to the maximum mint batch size.

     * It gradually moves to O(1) as tokens get transferred around in the collection over time.

     */

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {

        uint256 curr = tokenId;



        unchecked {

            if (_startTokenId() <= curr && curr < _currentIndex) {

                TokenOwnership memory ownership = _ownerships[curr];

                if (!ownership.burned) {

                    if (ownership.addr != address(0)) {

                        return ownership;

                    }

                    // Invariant:

                    // There will always be an ownership that has an address and is not burned

                    // before an ownership that does not have an address and is not burned.

                    // Hence, curr will not underflow.

                    while (true) {

                        curr--;

                        ownership = _ownerships[curr];

                        if (ownership.addr != address(0)) {

                            return ownership;

                        }

                    }

                }

            }

        }

        revert OwnerQueryForNonexistentToken();

    }



    /**

     * @dev See {IERC721-ownerOf}.

     */

    function ownerOf(uint256 tokenId) public view override returns (address) {

        return ownershipOf(tokenId).addr;

    }



    /**

     * @dev See {IERC721Metadata-name}.

     */

    function name() public view virtual override returns (string memory) {

        return _name;

    }



    /**

     * @dev See {IERC721Metadata-symbol}.

     */

    function symbol() public view virtual override returns (string memory) {

        return _symbol;

    }



    /**

     * @dev See {IERC721Metadata-tokenURI}.

     */

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {

        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();



        string memory baseURI = _baseURI();

        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, 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 override {

        address owner = ERC721A.ownerOf(tokenId);

        if (to == owner) revert ApprovalToCurrentOwner();



        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {

            revert ApprovalCallerNotOwnerNorApproved();

        }



        _approve(to, tokenId, owner);

    }



    /**

     * @dev See {IERC721-getApproved}.

     */

    function getApproved(uint256 tokenId) public view override returns (address) {

        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();



        return _tokenApprovals[tokenId];

    }



    /**

     * @dev See {IERC721-setApprovalForAll}.

     */

    function setApprovalForAll(address operator, bool approved) public virtual override {

        if (operator == _msgSender()) revert ApproveToCaller();



        _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 {

        _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 {

        _transfer(from, to, tokenId);

        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {

            revert TransferToNonERC721ReceiverImplementer();

        }

    }



    /**

     * @dev Returns whether `tokenId` exists.

     *

     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.

     *

     * Tokens start existing when they are minted (`_mint`),

     */

    function _exists(uint256 tokenId) internal view returns (bool) {

        return _startTokenId() <= tokenId && tokenId < _currentIndex &&

            !_ownerships[tokenId].burned;

    }



    function _safeMint(address to, uint256 quantity) internal {

        _safeMint(to, quantity, '');

    }



    /**

     * @dev Safely mints `quantity` tokens and transfers them to `to`.

     *

     * Requirements:

     *

     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.

     * - `quantity` must be greater than 0.

     *

     * Emits a {Transfer} event.

     */

    function _safeMint(

        address to,

        uint256 quantity,

        bytes memory _data

    ) internal {

        _mint(to, quantity, _data, true);

    }



    /**

     * @dev Mints `quantity` tokens and transfers them to `to`.

     *

     * Requirements:

     *

     * - `to` cannot be the zero address.

     * - `quantity` must be greater than 0.

     *

     * Emits a {Transfer} event.

     */

    function _mint(

        address to,

        uint256 quantity,

        bytes memory _data,

        bool safe

    ) internal {

        uint256 startTokenId = _currentIndex;

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

        if (quantity == 0) revert MintZeroQuantity();



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



        // Overflows are incredibly unrealistic.

        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1

        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1

        unchecked {

            _addressData[to].balance += uint64(quantity);

            _addressData[to].numberMinted += uint64(quantity);



            _ownerships[startTokenId].addr = to;

            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);



            uint256 updatedIndex = startTokenId;

            uint256 end = updatedIndex + quantity;



            if (safe && to.isContract()) {

                do {

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

                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {

                        revert TransferToNonERC721ReceiverImplementer();

                    }

                } while (updatedIndex != end);

                // Reentrancy protection

                if (_currentIndex != startTokenId) revert();

            } else {

                do {

                    emit Transfer(address(0), to, updatedIndex++);

                } while (updatedIndex != end);

            }

            _currentIndex = updatedIndex;

        }

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

    }



    /**

     * @dev Transfers `tokenId` from `from` to `to`.

     *

     * Requirements:

     *

     * - `to` cannot be the zero address.

     * - `tokenId` token must be owned by `from`.

     *

     * Emits a {Transfer} event.

     */

    function _transfer(

        address from,

        address to,

        uint256 tokenId

    ) private {

        TokenOwnership memory prevOwnership = ownershipOf(tokenId);



        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||

            isApprovedForAll(prevOwnership.addr, _msgSender()) ||

            getApproved(tokenId) == _msgSender());



        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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



        _beforeTokenTransfers(from, to, tokenId, 1);



        // Clear approvals from the previous owner

        _approve(address(0), tokenId, prevOwnership.addr);



        // Underflow of the sender's balance is impossible because we check for

        // ownership above and the recipient's balance can't realistically overflow.

        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.

        unchecked {

            _addressData[from].balance -= 1;

            _addressData[to].balance += 1;



            _ownerships[tokenId].addr = to;

            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);



            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.

            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.

            uint256 nextTokenId = tokenId + 1;

            if (_ownerships[nextTokenId].addr == address(0)) {

                // This will suffice for checking _exists(nextTokenId),

                // as a burned slot cannot contain the zero address.

                if (nextTokenId < _currentIndex) {

                    _ownerships[nextTokenId].addr = prevOwnership.addr;

                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;

                }

            }

        }



        emit Transfer(from, to, tokenId);

        _afterTokenTransfers(from, to, tokenId, 1);

    }



    /**

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

        TokenOwnership memory prevOwnership = ownershipOf(tokenId);



        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);



        // Clear approvals from the previous owner

        _approve(address(0), tokenId, prevOwnership.addr);



        // Underflow of the sender's balance is impossible because we check for

        // ownership above and the recipient's balance can't realistically overflow.

        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.

        unchecked {

            _addressData[prevOwnership.addr].balance -= 1;

            _addressData[prevOwnership.addr].numberBurned += 1;



            // Keep track of who burned the token, and the timestamp of burning.

            _ownerships[tokenId].addr = prevOwnership.addr;

            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            _ownerships[tokenId].burned = true;



            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.

            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.

            uint256 nextTokenId = tokenId + 1;

            if (_ownerships[nextTokenId].addr == address(0)) {

                // This will suffice for checking _exists(nextTokenId),

                // as a burned slot cannot contain the zero address.

                if (nextTokenId < _currentIndex) {

                    _ownerships[nextTokenId].addr = prevOwnership.addr;

                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;

                }

            }

        }



        emit Transfer(prevOwnership.addr, address(0), tokenId);

        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);



        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.

        unchecked {

            _burnCounter++;

        }

    }



    /**

     * @dev Approve `to` to operate on `tokenId`

     *

     * Emits a {Approval} event.

     */

    function _approve(

        address to,

        uint256 tokenId,

        address owner

    ) private {

        _tokenApprovals[tokenId] = to;

        emit Approval(owner, to, tokenId);

    }



    /**

     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.

     *

     * @param from address representing the previous owner of the given token ID

     * @param to target address that will receive the tokens

     * @param tokenId uint256 ID of the token to be transferred

     * @param _data bytes optional data to send along with the call

     * @return bool whether the call correctly returned the expected magic value

     */

    function _checkContractOnERC721Received(

        address from,

        address to,

        uint256 tokenId,

        bytes memory _data

    ) private returns (bool) {

        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {

            return retval == IERC721Receiver(to).onERC721Received.selector;

        } catch (bytes memory reason) {

            if (reason.length == 0) {

                revert TransferToNonERC721ReceiverImplementer();

            } else {

                assembly {

                    revert(add(32, reason), mload(reason))

                }

            }

        }

    }



    /**

     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.

     * And also called before burning one token.

     *

     * startTokenId - the first token id to be transferred

     * quantity - the amount to be transferred

     *

     * Calling conditions:

     *

     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be

     * transferred to `to`.

     * - When `from` is zero, `tokenId` will be minted for `to`.

     * - When `to` is zero, `tokenId` will be burned by `from`.

     * - `from` and `to` are never both zero.

     */

    function _beforeTokenTransfers(

        address from,

        address to,

        uint256 startTokenId,

        uint256 quantity

    ) internal virtual {}



    /**

     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes

     * minting.

     * And also called after one token has been burned.

     *

     * startTokenId - the first token id to be transferred

     * quantity - the amount to be transferred

     *

     * Calling conditions:

     *

     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been

     * transferred to `to`.

     * - When `from` is zero, `tokenId` has been minted for `to`.

     * - When `to` is zero, `tokenId` has been burned by `from`.

     * - `from` and `to` are never both zero.

     */

    function _afterTokenTransfers(

        address from,

        address to,

        uint256 startTokenId,

        uint256 quantity

    ) internal virtual {}

}


// File: contracts/MutantWolfPack.sol



pragma solidity 0.8.10;






contract MutantWolfPack is Ownable, ERC721A{

    using Strings for uint256;

    using SafeMath for uint256;



    //Configuration  //editable

    bool       public isFreemint;

    bool       public isPublicSale;



    uint256    public max_supply              = 3000;



    uint256    public freemint_qty            = 300;

    uint256    public reserved_qty            = 20;



    uint256    public maxMintsPerTransaction  = 5;

    uint256    public freeMintPerWallet       = 2;



    uint256    public publicsale_price        = 0.025 ether;

    

    address    public proxyRegistryAddress;

    address    public signer;



    string     public baseExtension           = "";

    string     private __baseURI;



    //Distribution //editable

    uint256 public lastIndexPrimary;

    uint256 public lastIndexTeam;



    mapping(uint256 => uint256) public percentage;

    mapping(uint256 => address) public recipient;



    //DB

    mapping(address => uint256) public mintedOnFreemint;



    event Mint(address indexed sender, uint256 indexed type_mint, uint256 timestamp);

    

    constructor(

        string memory ___baseURI,

        address _signer,

        address _proxyRegistryAddress,



        uint256[] memory _primaryPercentage,

        address[] memory _primaryReceipient,

        uint256[] memory _split,

        address[] memory _addressTeam

    )

    ERC721A("Mutant Wolf Pack", "MWP")

    {

        __baseURI = ___baseURI;

        signer = _signer;

        proxyRegistryAddress = _proxyRegistryAddress;



        _setDistribution(

            _primaryPercentage,

            _primaryReceipient,

            _split,

            _addressTeam

        );

    }    



    //General Part

    function _startTokenId() internal view virtual override returns (uint256) {

        return 1;

    }

    

    function _baseURI() internal view virtual override returns (string memory) {

        return __baseURI;

    }

    

    function baseURI() public view returns(string memory){

        return _baseURI();

    }

    

    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(), baseExtension)) : "";

    }



    //Set Configuration Part

    //1

    function setBaseURI(string memory _baseURIArg) external onlyOwner {

        __baseURI = _baseURIArg;

    }



    //2

    function setMaxSupply(uint _maxSupply) external onlyOwner {

        max_supply = _maxSupply;

    }



    //3

    function setMaxMintsPerTransaction(uint _maxMintsPerTransaction) external onlyOwner {

        maxMintsPerTransaction = _maxMintsPerTransaction;

    }



    //4

    function setSigner(address _signer) external onlyOwner {

        signer = _signer;

    }

    

    //5

    function setBaseExtension(string memory _baseExt) external onlyOwner {

        baseExtension =  _baseExt;

    }



    //6

    function setPublicSaleActive() external onlyOwner{

        if(isPublicSale == false){

            isPublicSale = true;

        }

        else{

            isPublicSale = false;

        }

    }

    

    //7

    function setProxy(address _proxy) external onlyOwner {

        proxyRegistryAddress =  _proxy;

    }



    //8

    function setPublicSalePrice(uint256 _price) external onlyOwner{

        publicsale_price = _price;

    }



    //9

    function setFreeMintLimit(uint256 _limit) external onlyOwner{

        freeMintPerWallet = _limit;

    }



    //10

    function setFreeMintQTY(uint256 _qty) external onlyOwner{

        freemint_qty = _qty;

    }



    //11

    function setReservedQTY(uint256 _qty) external onlyOwner{

        reserved_qty = _qty;

    }



    //12

    function setFreeMintActive() external onlyOwner{

        if(isFreemint == false){

            isFreemint = true;

        }

        else{

            isFreemint = false;

        }

    }



    //13

    function setDistribution(

        uint256[] memory _primaryPercentage,

        address[] memory _primaryReceipient,

        uint256[] memory _split,

        address[] memory _addressTeam

    ) external onlyOwner{

        _setDistribution(

            _primaryPercentage,

            _primaryReceipient,

            _split,

            _addressTeam

        );

    }



    //Internal

    function _setDistribution(

        uint256[] memory _primaryPercentage,

        address[] memory _primaryReceipient,

        uint256[] memory _split,

        address[] memory _addressTeam

    ) internal {

        require(

            _primaryPercentage.length == _primaryReceipient.length &&

            _split.length == _addressTeam.length, "length must same"

        );



        for(uint256 i=0; i< _primaryPercentage.length; i++){

            percentage[i+1] = _primaryPercentage[i];

            recipient[i+1] = _primaryReceipient[i];

        }

        lastIndexPrimary = _primaryPercentage.length;



        for(uint256 i=0; i< _split.length; i++){

            percentage[lastIndexPrimary +1 +i] = _split[i];

            recipient[lastIndexPrimary +1 +i] = _addressTeam[i];

        }

        lastIndexTeam = lastIndexPrimary + _split.length;

    }



    //Mint Part

    //Mint Internal

    function _mintNFT(address _to, uint256 _amount) internal {

        _safeMint(_to, _amount);

    }



    //Public Sale Mint

    function publicSaleMint(uint256 _amount) external payable{

        require(_amount > 0 , "amount must not zero");

        require(isPublicSale == true, "Public sale is not active");

        require(_amount <= maxMintsPerTransaction, "Max mints per transaction constraint violation");

        require(msg.value == _amount * publicsale_price, "Wrong Ether Value For Public Sale");



        require(totalSupply() + reserved_qty + freemint_qty + _amount <= max_supply, "Tokens supply reached limit");

        _mintNFT(msg.sender, _amount);



        emit Mint(msg.sender, 1, block.timestamp);

    }



    //Public sale and free mint

    function publicWithFreeMint(uint256 _amountTotal, uint256 _amountFree, bytes memory _signature) external payable{

        require(_amountTotal > 0 && _amountFree > 0 && _amountTotal > _amountFree, "all amount must not zero");

        require(recoverSigner(prefixed(keccak256(abi.encodePacked(

                                    msg.sender,

                                    _amountTotal,

                                    _amountFree,

                                    mintedOnFreemint[msg.sender],

                                    uint8(1)

                            ))), _signature)== signer, "You have not access for minting");

        require(isFreemint == true && isPublicSale == true, "Public sale and Free mint must active");



        //free part

        require(_amountFree <= freemint_qty, "Freemint Supply Not Enough For Minting");

        require(mintedOnFreemint[msg.sender] + _amountFree <= freeMintPerWallet, "Max mints for free mint constraint violation");



        //public part

        require(_amountTotal <= maxMintsPerTransaction, "Max mints per transaction constraint violation");

        require(msg.value == (_amountTotal.sub(_amountFree)) * publicsale_price, "Wrong Ether Value For Public Sale");

        require(totalSupply() + reserved_qty + freemint_qty + _amountTotal <= max_supply, "Tokens supply reached limit");



        freemint_qty-=_amountFree; //1

        mintedOnFreemint[msg.sender] += _amountFree; //2

        

        _mintNFT(msg.sender, _amountTotal);



        emit Mint(msg.sender, 2, block.timestamp);

    }



    //Free Mint

    function freeMint(uint256 _amount, bytes memory _signature) external {

        require(_amount > 0 , "amount must not zero");

        require(recoverSigner(prefixed(keccak256(abi.encodePacked(

                                    msg.sender,

                                    _amount,

                                    mintedOnFreemint[msg.sender],

                                    uint8(2)

                            ))), _signature)== signer, "You have not access for minting");



        require(isFreemint == true, "Free mint is not active");

        require(_amount <= freemint_qty, "Freemint Supply Not Enough For Minting");

        require(mintedOnFreemint[msg.sender] + _amount <= freeMintPerWallet, "Max mints for free mint constraint violation");

        

        freemint_qty-=_amount; //1

        mintedOnFreemint[msg.sender] += _amount; //2

        

        _mintNFT(msg.sender, _amount);



        emit Mint(msg.sender, 3, block.timestamp);

    }



    //Reserved Mint

    function reservedMint(address[] memory _to, uint256[] memory _amount) external onlyOwner{

        require(_to.length == _amount.length, "must same length");

        uint reserved = reserved_qty;

        for(uint i=0; i<_to.length; i++){

            require(_amount[i] <= reserved ,"Reserved supply reached limit");

            _mintNFT(_to[i],_amount[i]);

            reserved-= _amount[i];

        }

        reserved_qty=reserved;



        emit Mint(msg.sender, 4, block.timestamp);

    }



    //Withdraw Part

    function withdraw() external onlyOwner{

        uint256 balance = address(this).balance;

        uint256 percent100 = 100*(10**18);



        uint teamvalue = balance;

        uint256 sentValue;



        //primary distribution

        for(uint256 j=0; j<lastIndexPrimary; j++){

            sentValue = (percentage[j+1].mul(balance)).div(percent100);

            _sent(recipient[j+1], sentValue);

            teamvalue = teamvalue.sub(sentValue);

        }



        //team distribution

        balance = teamvalue;

        for(uint256 i=lastIndexPrimary; i<lastIndexTeam; i++){

            if(i != lastIndexTeam-1){

                sentValue = (percentage[i+1].mul(teamvalue)).div(percent100);

                balance = balance.sub(sentValue);

            }

            else{

                sentValue= balance;

            }

            _sent(recipient[i+1], sentValue);

        }

    }



    function _sent(address _to, uint256 _value) private returns (bool){

        (bool sent,) =payable(_to).call{value: _value}("");

        return sent;

    }





    //signature part

    function prefixed(bytes32 hash) internal pure returns (bytes32) {

        return keccak256(abi.encodePacked(

        '\x19Ethereum Signed Message:\n32', 

        hash

        ));

    }



    function recoverSigner(bytes32 message, bytes memory sig)

        internal

        pure

        returns (address)

    {

        uint8 v;

        bytes32 r;

        bytes32 s;

    

        (v, r, s) = splitSignature(sig);

    

        return ecrecover(message, v, r, s);

    }



    function splitSignature(bytes memory sig)

        internal

        pure

        returns (uint8, bytes32, bytes32)

    {

        require(sig.length == 65);

    

        bytes32 r;

        bytes32 s;

        uint8 v;

    

        assembly {

            // first 32 bytes, after the length prefix

            r := mload(add(sig, 32))

            // second 32 bytes

            s := mload(add(sig, 64))

            // final byte (first byte of the next 32 bytes)

            v := byte(0, mload(add(sig, 96)))

        }

    

        return (v, r, s);

    }



    //Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings

    function isApprovedForAll(address owner, address operator)

        override

        public

        view

        returns (bool)

    {

        // Whitelist OpenSea proxy contract for easy trading.

        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);

        if (address(proxyRegistry.proxies(owner)) == operator) {

            return true;

        }



        return super.isApprovedForAll(owner, operator);

    }

}



contract OwnableDelegateProxy { }

contract ProxyRegistry {

    mapping(address => OwnableDelegateProxy) public proxies;

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"___baseURI","type":"string"},{"internalType":"address","name":"_signer","type":"address"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"uint256[]","name":"_primaryPercentage","type":"uint256[]"},{"internalType":"address[]","name":"_primaryReceipient","type":"address[]"},{"internalType":"uint256[]","name":"_split","type":"uint256[]"},{"internalType":"address[]","name":"_addressTeam","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"type_mint","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Mint","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freemint_qty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreemint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastIndexPrimary","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastIndexTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedOnFreemint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"percentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountTotal","type":"uint256"},{"internalType":"uint256","name":"_amountFree","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"publicWithFreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicsale_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"recipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved_qty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseExt","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURIArg","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_primaryPercentage","type":"uint256[]"},{"internalType":"address[]","name":"_primaryReceipient","type":"address[]"},{"internalType":"uint256[]","name":"_split","type":"uint256[]"},{"internalType":"address[]","name":"_addressTeam","type":"address[]"}],"name":"setDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setFreeMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"setFreeMintQTY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintsPerTransaction","type":"uint256"}],"name":"setMaxMintsPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxy","type":"address"}],"name":"setProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"setReservedQTY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610bb8600a5561012c600b556014600c556005600d556002600e556658d15e17628000600f5560a06040819052600060808190526200004191601291620003d2565b503480156200004f57600080fd5b5060405162003a6838038062003a68833981016040819052620000729162000677565b6040518060400160405280601081526020016f4d7574616e7420576f6c66205061636b60801b8152506040518060400160405280600381526020016204d57560ec1b815250620000d1620000cb6200016460201b60201c565b62000168565b8151620000e6906003906020850190620003d2565b508051620000fc906004906020840190620003d2565b506001805550508651620001189060139060208a0190620003d2565b50601180546001600160a01b038089166001600160a01b03199283161790925560108054928816929091169190911790556200015784848484620001b8565b505050505050506200081f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82518451148015620001cb575080518251145b6200020f5760405162461bcd60e51b815260206004820152601060248201526f6c656e677468206d7573742073616d6560801b604482015260640160405180910390fd5b60005b8451811015620002d1578481815181106200023157620002316200077d565b6020026020010151601660008360016200024c9190620007a9565b8152602001908152602001600020819055508381815181106200027357620002736200077d565b6020026020010151601760008360016200028e9190620007a9565b8152602081019190915260400160002080546001600160a01b0319166001600160a01b039290921691909117905580620002c881620007c4565b91505062000212565b50835160145560005b8251811015620003b757828181518110620002f957620002f96200077d565b602002602001015160166000836014546001620003179190620007a9565b620003239190620007a9565b8152602001908152602001600020819055508181815181106200034a576200034a6200077d565b602002602001015160176000836014546001620003689190620007a9565b620003749190620007a9565b8152602081019190915260400160002080546001600160a01b0319166001600160a01b039290921691909117905580620003ae81620007c4565b915050620002da565b508151601454620003c99190620007a9565b60155550505050565b828054620003e090620007e2565b90600052602060002090601f0160209004810192826200040457600085556200044f565b82601f106200041f57805160ff19168380011785556200044f565b828001600101855582156200044f579182015b828111156200044f57825182559160200191906001019062000432565b506200045d92915062000461565b5090565b5b808211156200045d576000815560010162000462565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620004b957620004b962000478565b604052919050565b600082601f830112620004d357600080fd5b81516001600160401b03811115620004ef57620004ef62000478565b602062000505601f8301601f191682016200048e565b82815285828487010111156200051a57600080fd5b60005b838110156200053a5785810183015182820184015282016200051d565b838111156200054c5760008385840101525b5095945050505050565b80516001600160a01b03811681146200056e57600080fd5b919050565b60006001600160401b038211156200058f576200058f62000478565b5060051b60200190565b600082601f830112620005ab57600080fd5b81516020620005c4620005be8362000573565b6200048e565b82815260059290921b84018101918181019086841115620005e457600080fd5b8286015b84811015620006015780518352918301918301620005e8565b509695505050505050565b600082601f8301126200061e57600080fd5b8151602062000631620005be8362000573565b82815260059290921b840181019181810190868411156200065157600080fd5b8286015b848110156200060157620006698162000556565b835291830191830162000655565b600080600080600080600060e0888a0312156200069357600080fd5b87516001600160401b0380821115620006ab57600080fd5b620006b98b838c01620004c1565b9850620006c960208b0162000556565b9750620006d960408b0162000556565b965060608a0151915080821115620006f057600080fd5b620006fe8b838c0162000599565b955060808a01519150808211156200071557600080fd5b620007238b838c016200060c565b945060a08a01519150808211156200073a57600080fd5b620007488b838c0162000599565b935060c08a01519150808211156200075f57600080fd5b506200076e8a828b016200060c565b91505092959891949750929550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115620007bf57620007bf62000793565b500190565b6000600019821415620007db57620007db62000793565b5060010190565b600181811c90821680620007f757607f821691505b602082108114156200081957634e487b7160e01b600052602260045260246000fd5b50919050565b613239806200082f6000396000f3fe6080604052600436106102ff5760003560e01c80638a333b5011610190578063c87b56dd116100dc578063e27fd8ec11610095578063eaf27d381161006f578063eaf27d38146108bb578063f2fde38b146108db578063fbc32832146108fb578063fd12dbf01461091b57600080fd5b8063e27fd8ec14610858578063e44d428914610885578063e985e9c51461089b57600080fd5b8063c87b56dd146107ac578063c930ec23146107cc578063cd7c0326146107e2578063cf95bb8f14610802578063da3ef23f14610822578063e158ebad1461084257600080fd5b8063acc498ef11610149578063bd2f6eb811610123578063bd2f6eb81461072b578063be5e5c1b1461074b578063c1ab22ec14610781578063c66828621461079757600080fd5b8063acc498ef146106e5578063b3ab66b0146106f8578063b88d4fde1461070b57600080fd5b80638a333b501461063d5780638da5cb5b1461065357806395d89b411461067157806397107d6d14610686578063a22cb465146106a6578063a5a865dc146106c657600080fd5b806355f804b31161024f57806370a0823111610208578063791a2519116101e2578063791a2519146105bd57806379268b07146105dd5780637f099df4146105fd578063817415c41461061d57600080fd5b806370a0823114610572578063715018a614610592578063779b3bb4146105a757600080fd5b806355f804b3146104c75780636352211e146104e757806364aa0c79146105075780636c0360eb1461051d5780636c19e783146105325780636f8b44b01461055257600080fd5b80631e5aa81c116102bc5780633ccfd60b116102965780633ccfd60b146104635780633e11ab3f1461047857806342842e0e1461048d578063542ee347146104ad57600080fd5b80631e5aa81c1461040d578063238ac9331461042357806323b872dd1461044357600080fd5b806301ffc9a71461030457806304dd0b3f1461033957806306fdde0314610374578063081812fc14610396578063095ea7b3146103ce57806318160ddd146103f0575b600080fd5b34801561031057600080fd5b5061032461031f3660046128a8565b610930565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b506103666103543660046128da565b60186020526000908152604090205481565b604051908152602001610330565b34801561038057600080fd5b50610389610982565b604051610330919061294f565b3480156103a257600080fd5b506103b66103b1366004612962565b610a14565b6040516001600160a01b039091168152602001610330565b3480156103da57600080fd5b506103ee6103e936600461297b565b610a58565b005b3480156103fc57600080fd5b506002546001540360001901610366565b34801561041957600080fd5b5061036660145481565b34801561042f57600080fd5b506011546103b6906001600160a01b031681565b34801561044f57600080fd5b506103ee61045e3660046129a7565b610ae6565b34801561046f57600080fd5b506103ee610af1565b34801561048457600080fd5b506103ee610c4e565b34801561049957600080fd5b506103ee6104a83660046129a7565b610ca6565b3480156104b957600080fd5b506009546103249060ff1681565b3480156104d357600080fd5b506103ee6104e2366004612a85565b610cc1565b3480156104f357600080fd5b506103b6610502366004612962565b610d02565b34801561051357600080fd5b50610366600d5481565b34801561052957600080fd5b50610389610d14565b34801561053e57600080fd5b506103ee61054d3660046128da565b610d23565b34801561055e57600080fd5b506103ee61056d366004612962565b610d6f565b34801561057e57600080fd5b5061036661058d3660046128da565b610d9e565b34801561059e57600080fd5b506103ee610dec565b3480156105b357600080fd5b50610366600f5481565b3480156105c957600080fd5b506103ee6105d8366004612962565b610e20565b3480156105e957600080fd5b506103ee6105f8366004612962565b610e4f565b34801561060957600080fd5b506103ee610618366004612962565b610e7e565b34801561062957600080fd5b506103ee610638366004612aed565b610ead565b34801561064957600080fd5b50610366600a5481565b34801561065f57600080fd5b506000546001600160a01b03166103b6565b34801561067d57600080fd5b50610389611136565b34801561069257600080fd5b506103ee6106a13660046128da565b611145565b3480156106b257600080fd5b506103ee6106c1366004612b33565b611191565b3480156106d257600080fd5b5060095461032490610100900460ff1681565b6103ee6106f3366004612b71565b611220565b6103ee610706366004612962565b611576565b34801561071757600080fd5b506103ee610726366004612bc0565b611723565b34801561073757600080fd5b506103ee610746366004612962565b611774565b34801561075757600080fd5b506103b6610766366004612962565b6017602052600090815260409020546001600160a01b031681565b34801561078d57600080fd5b50610366600e5481565b3480156107a357600080fd5b506103896117a3565b3480156107b857600080fd5b506103896107c7366004612962565b611831565b3480156107d857600080fd5b50610366600c5481565b3480156107ee57600080fd5b506010546103b6906001600160a01b031681565b34801561080e57600080fd5b506103ee61081d366004612962565b6118ff565b34801561082e57600080fd5b506103ee61083d366004612a85565b61192e565b34801561084e57600080fd5b5061036660155481565b34801561086457600080fd5b50610366610873366004612962565b60166020526000908152604090205481565b34801561089157600080fd5b50610366600b5481565b3480156108a757600080fd5b506103246108b6366004612c2b565b61196b565b3480156108c757600080fd5b506103ee6108d6366004612d4b565b611a2c565b3480156108e757600080fd5b506103ee6108f63660046128da565b611a62565b34801561090757600080fd5b506103ee610916366004612deb565b611afd565b34801561092757600080fd5b506103ee611c81565b60006001600160e01b031982166380ac58cd60e01b148061096157506001600160e01b03198216635b5e139f60e01b145b8061097c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461099190612e44565b80601f01602080910402602001604051908101604052809291908181526020018280546109bd90612e44565b8015610a0a5780601f106109df57610100808354040283529160200191610a0a565b820191906000526020600020905b8154815290600101906020018083116109ed57829003601f168201915b5050505050905090565b6000610a1f82611cd0565b610a3c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610a6382610d02565b9050806001600160a01b0316836001600160a01b03161415610a985760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ab85750610ab6813361196b565b155b15610ad6576040516367d9dca160e11b815260040160405180910390fd5b610ae1838383611d09565b505050565b610ae1838383611d65565b6000546001600160a01b03163314610b245760405162461bcd60e51b8152600401610b1b90612e7f565b60405180910390fd5b4768056bc75e2d63100000816000805b601454811015610bcb57610b7884610b728760166000610b55876001612eca565b815260200190815260200160002054611f7690919063ffffffff16565b90611f82565b9150610bac60176000610b8c846001612eca565b81526020810191909152604001600020546001600160a01b031683611f8e565b50610bb78383611fec565b925080610bc381612ee2565b915050610b34565b5060145491935083915b601554811015610c47576001601554610bee9190612efd565b8114610c1e57610c0b84610b728560166000610b55876001612eca565b9150610c178583611fec565b9450610c22565b8491505b610c3460176000610b8c846001612eca565b5080610c3f81612ee2565b915050610bd5565b5050505050565b6000546001600160a01b03163314610c785760405162461bcd60e51b8152600401610b1b90612e7f565b600954610100900460ff16610c98576009805461ff001916610100179055565b6009805461ff00191690555b565b610ae183838360405180602001604052806000815250611723565b6000546001600160a01b03163314610ceb5760405162461bcd60e51b8152600401610b1b90612e7f565b8051610cfe9060139060208401906127f9565b5050565b6000610d0d82611ff8565b5192915050565b6060610d1e61211f565b905090565b6000546001600160a01b03163314610d4d5760405162461bcd60e51b8152600401610b1b90612e7f565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610d995760405162461bcd60e51b8152600401610b1b90612e7f565b600a55565b60006001600160a01b038216610dc7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610e165760405162461bcd60e51b8152600401610b1b90612e7f565b610ca4600061212e565b6000546001600160a01b03163314610e4a5760405162461bcd60e51b8152600401610b1b90612e7f565b600f55565b6000546001600160a01b03163314610e795760405162461bcd60e51b8152600401610b1b90612e7f565b600d55565b6000546001600160a01b03163314610ea85760405162461bcd60e51b8152600401610b1b90612e7f565b600b55565b60008211610ef45760405162461bcd60e51b8152602060048201526014602482015273616d6f756e74206d757374206e6f74207a65726f60601b6044820152606401610b1b565b6011543360008181526018602090815260409182902054915160609390931b6bffffffffffffffffffffffff191690830152603482018590526054820152600160f91b60748201526001600160a01b0390911690610fba90610fb4906075015b60408051601f1981840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c8085019190915282518085039091018152605c909301909152815191012090565b8361217e565b6001600160a01b0316146110105760405162461bcd60e51b815260206004820152601f60248201527f596f752068617665206e6f742061636365737320666f72206d696e74696e67006044820152606401610b1b565b60095460ff1615156001146110675760405162461bcd60e51b815260206004820152601760248201527f46726565206d696e74206973206e6f74206163746976650000000000000000006044820152606401610b1b565b600b548211156110895760405162461bcd60e51b8152600401610b1b90612f14565b600e54336000908152601860205260409020546110a7908490612eca565b11156110c55760405162461bcd60e51b8152600401610b1b90612f5a565b81600b60008282546110d79190612efd565b909155505033600090815260186020526040812080548492906110fb908490612eca565b9091555061110b905033836121fd565b60405142815260039033906000805160206131e4833981519152906020015b60405180910390a35050565b60606004805461099190612e44565b6000546001600160a01b0316331461116f5760405162461bcd60e51b8152600401610b1b90612e7f565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382163314156111bb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910161112a565b6000831180156112305750600082115b801561123b57508183115b6112875760405162461bcd60e51b815260206004820152601860248201527f616c6c20616d6f756e74206d757374206e6f74207a65726f00000000000000006044820152606401610b1b565b6011543360008181526018602090815260409182902054915160609390931b6bffffffffffffffffffffffff19169083015260348201869052605482018590526074820152600160f81b60948201526001600160a01b03909116906112f290610fb490609501610f54565b6001600160a01b0316146113485760405162461bcd60e51b815260206004820152601f60248201527f596f752068617665206e6f742061636365737320666f72206d696e74696e67006044820152606401610b1b565b60095460ff161515600114801561136c575060095460ff6101009091041615156001145b6113c65760405162461bcd60e51b815260206004820152602560248201527f5075626c69632073616c6520616e642046726565206d696e74206d7573742061604482015264637469766560d81b6064820152608401610b1b565b600b548211156113e85760405162461bcd60e51b8152600401610b1b90612f14565b600e5433600090815260186020526040902054611406908490612eca565b11156114245760405162461bcd60e51b8152600401610b1b90612f5a565b600d548311156114465760405162461bcd60e51b8152600401610b1b90612fa6565b600f546114538484611fec565b61145d9190612ff4565b341461147b5760405162461bcd60e51b8152600401610b1b90613013565b600a5483600b54600c546114986002546001546000199190030190565b6114a29190612eca565b6114ac9190612eca565b6114b69190612eca565b11156115045760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e7320737570706c792072656163686564206c696d697400000000006044820152606401610b1b565b81600b60008282546115169190612efd565b9091555050336000908152601860205260408120805484929061153a908490612eca565b9091555061154a905033846121fd565b60405142815260029033906000805160206131e4833981519152906020015b60405180910390a3505050565b600081116115bd5760405162461bcd60e51b8152602060048201526014602482015273616d6f756e74206d757374206e6f74207a65726f60601b6044820152606401610b1b565b60095460ff61010090910416151560011461161a5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610b1b565b600d5481111561163c5760405162461bcd60e51b8152600401610b1b90612fa6565b600f546116499082612ff4565b34146116675760405162461bcd60e51b8152600401610b1b90613013565b600a5481600b54600c546116846002546001546000199190030190565b61168e9190612eca565b6116989190612eca565b6116a29190612eca565b11156116f05760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e7320737570706c792072656163686564206c696d697400000000006044820152606401610b1b565b6116fa33826121fd565b60405142815260019033906000805160206131e48339815191529060200160405180910390a350565b61172e848484611d65565b6001600160a01b0383163b15158015611750575061174e84848484612207565b155b1561176e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b0316331461179e5760405162461bcd60e51b8152600401610b1b90612e7f565b600e55565b601280546117b090612e44565b80601f01602080910402602001604051908101604052809291908181526020018280546117dc90612e44565b80156118295780601f106117fe57610100808354040283529160200191611829565b820191906000526020600020905b81548152906001019060200180831161180c57829003601f168201915b505050505081565b606061183c82611cd0565b6118a05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b1b565b60006118aa61211f565b905060008151116118ca57604051806020016040528060008152506118f8565b806118d4846122ef565b60126040516020016118e893929190613054565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146119295760405162461bcd60e51b8152600401610b1b90612e7f565b600c55565b6000546001600160a01b031633146119585760405162461bcd60e51b8152600401610b1b90612e7f565b8051610cfe9060129060208401906127f9565b60105460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa1580156119bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e19190613118565b6001600160a01b031614156119fa57600191505061097c565b6001600160a01b0380851660009081526008602090815260408083209387168352929052205460ff165b949350505050565b6000546001600160a01b03163314611a565760405162461bcd60e51b8152600401610b1b90612e7f565b61176e848484846123ec565b6000546001600160a01b03163314611a8c5760405162461bcd60e51b8152600401610b1b90612e7f565b6001600160a01b038116611af15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b1b565b611afa8161212e565b50565b6000546001600160a01b03163314611b275760405162461bcd60e51b8152600401610b1b90612e7f565b8051825114611b6b5760405162461bcd60e51b815260206004820152601060248201526f0daeae6e840e6c2daca40d8cadccee8d60831b6044820152606401610b1b565b600c5460005b8351811015611c585781838281518110611b8d57611b8d613135565b60200260200101511115611be35760405162461bcd60e51b815260206004820152601d60248201527f526573657276656420737570706c792072656163686564206c696d69740000006044820152606401610b1b565b611c1f848281518110611bf857611bf8613135565b6020026020010151848381518110611c1257611c12613135565b60200260200101516121fd565b828181518110611c3157611c31613135565b602002602001015182611c449190612efd565b915080611c5081612ee2565b915050611b71565b50600c81905560405142815260049033906000805160206131e483398151915290602001611569565b6000546001600160a01b03163314611cab5760405162461bcd60e51b8152600401610b1b90612e7f565b60095460ff16611cc4576009805460ff19166001179055565b6009805460ff19169055565b600081600111158015611ce4575060015482105b801561097c575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611d7082611ff8565b80519091506000906001600160a01b0316336001600160a01b03161480611d9e57508151611d9e903361196b565b80611db9575033611dae84610a14565b6001600160a01b0316145b905080611dd957604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611e0e5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611e3557604051633a954ecd60e21b815260040160405180910390fd5b611e456000848460000151611d09565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611f2f57600154811015611f2f57825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c47565b60006118f88284612ff4565b60006118f88284613161565b600080836001600160a01b03168360405160006040518083038185875af1925050503d8060008114611fdc576040519150601f19603f3d011682016040523d82523d6000602084013e611fe1565b606091505b509095945050505050565b60006118f88284612efd565b60408051606081018252600080825260208201819052918101919091528180600111158015612028575060015481105b1561210657600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906121045780516001600160a01b03161561209b579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156120ff579392505050565b61209b565b505b604051636f96cda160e11b815260040160405180910390fd5b60606013805461099190612e44565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008060008061218d856125de565b6040805160008152602081018083528b905260ff8516918101919091526060810183905260808101829052929550909350915060019060a0016020604051602081039080840390855afa1580156121e8573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b610cfe828261260d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061223c903390899088908890600401613175565b6020604051808303816000875af1925050508015612277575060408051601f3d908101601f19168201909252612274918101906131b2565b60015b6122d2573d8080156122a5576040519150601f19603f3d011682016040523d82523d6000602084013e6122aa565b606091505b5080516122ca576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060816123135750506040805180820190915260018152600360fc1b602082015290565b8160005b811561233d578061232781612ee2565b91506123369050600a83613161565b9150612317565b6000816001600160401b03811115612357576123576129e8565b6040519080825280601f01601f191660200182016040528015612381576020820181803683370190505b5090505b8415611a2457612396600183612efd565b91506123a3600a866131cf565b6123ae906030612eca565b60f81b8183815181106123c3576123c3613135565b60200101906001600160f81b031916908160001a9053506123e5600a86613161565b9450612385565b825184511480156123fe575080518251145b61243d5760405162461bcd60e51b815260206004820152601060248201526f6c656e677468206d7573742073616d6560801b6044820152606401610b1b565b60005b84518110156124f15784818151811061245b5761245b613135565b6020026020010151601660008360016124749190612eca565b81526020019081526020016000208190555083818151811061249857612498613135565b6020026020010151601760008360016124b19190612eca565b8152602081019190915260400160002080546001600160a01b0319166001600160a01b0392909216919091179055806124e981612ee2565b915050612440565b50835160145560005b82518110156125c55782818151811061251557612515613135565b6020026020010151601660008360145460016125319190612eca565b61253b9190612eca565b81526020019081526020016000208190555081818151811061255f5761255f613135565b60200260200101516017600083601454600161257b9190612eca565b6125859190612eca565b8152602081019190915260400160002080546001600160a01b0319166001600160a01b0392909216919091179055806125bd81612ee2565b9150506124fa565b5081516014546125d59190612eca565b60155550505050565b600080600083516041146125f157600080fd5b5050506020810151604082015160609092015160001a92909190565b610cfe828260405180602001604052806000815250610ae1838383600180546001600160a01b03851661265257604051622e076360e81b815260040160405180910390fd5b836126705760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561272157506001600160a01b0387163b15155b156127aa575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46127726000888480600101955088612207565b61278f576040516368d2bf6b60e11b815260040160405180910390fd5b808214156127275782600154146127a557600080fd5b6127f0565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156127ab575b50600155610c47565b82805461280590612e44565b90600052602060002090601f016020900481019282612827576000855561286d565b82601f1061284057805160ff191683800117855561286d565b8280016001018555821561286d579182015b8281111561286d578251825591602001919060010190612852565b5061287992915061287d565b5090565b5b80821115612879576000815560010161287e565b6001600160e01b031981168114611afa57600080fd5b6000602082840312156128ba57600080fd5b81356118f881612892565b6001600160a01b0381168114611afa57600080fd5b6000602082840312156128ec57600080fd5b81356118f8816128c5565b60005b838110156129125781810151838201526020016128fa565b8381111561176e5750506000910152565b6000815180845261293b8160208601602086016128f7565b601f01601f19169290920160200192915050565b6020815260006118f86020830184612923565b60006020828403121561297457600080fd5b5035919050565b6000806040838503121561298e57600080fd5b8235612999816128c5565b946020939093013593505050565b6000806000606084860312156129bc57600080fd5b83356129c7816128c5565b925060208401356129d7816128c5565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612a2657612a266129e8565b604052919050565b60006001600160401b03831115612a4757612a476129e8565b612a5a601f8401601f19166020016129fe565b9050828152838383011115612a6e57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612a9757600080fd5b81356001600160401b03811115612aad57600080fd5b8201601f81018413612abe57600080fd5b611a2484823560208401612a2e565b600082601f830112612ade57600080fd5b6118f883833560208501612a2e565b60008060408385031215612b0057600080fd5b8235915060208301356001600160401b03811115612b1d57600080fd5b612b2985828601612acd565b9150509250929050565b60008060408385031215612b4657600080fd5b8235612b51816128c5565b915060208301358015158114612b6657600080fd5b809150509250929050565b600080600060608486031215612b8657600080fd5b833592506020840135915060408401356001600160401b03811115612baa57600080fd5b612bb686828701612acd565b9150509250925092565b60008060008060808587031215612bd657600080fd5b8435612be1816128c5565b93506020850135612bf1816128c5565b92506040850135915060608501356001600160401b03811115612c1357600080fd5b612c1f87828801612acd565b91505092959194509250565b60008060408385031215612c3e57600080fd5b8235612c49816128c5565b91506020830135612b66816128c5565b60006001600160401b03821115612c7257612c726129e8565b5060051b60200190565b600082601f830112612c8d57600080fd5b81356020612ca2612c9d83612c59565b6129fe565b82815260059290921b84018101918181019086841115612cc157600080fd5b8286015b84811015612cdc5780358352918301918301612cc5565b509695505050505050565b600082601f830112612cf857600080fd5b81356020612d08612c9d83612c59565b82815260059290921b84018101918181019086841115612d2757600080fd5b8286015b84811015612cdc578035612d3e816128c5565b8352918301918301612d2b565b60008060008060808587031215612d6157600080fd5b84356001600160401b0380821115612d7857600080fd5b612d8488838901612c7c565b95506020870135915080821115612d9a57600080fd5b612da688838901612ce7565b94506040870135915080821115612dbc57600080fd5b612dc888838901612c7c565b93506060870135915080821115612dde57600080fd5b50612c1f87828801612ce7565b60008060408385031215612dfe57600080fd5b82356001600160401b0380821115612e1557600080fd5b612e2186838701612ce7565b93506020850135915080821115612e3757600080fd5b50612b2985828601612c7c565b600181811c90821680612e5857607f821691505b60208210811415612e7957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612edd57612edd612eb4565b500190565b6000600019821415612ef657612ef6612eb4565b5060010190565b600082821015612f0f57612f0f612eb4565b500390565b60208082526026908201527f467265656d696e7420537570706c79204e6f7420456e6f75676820466f72204d604082015265696e74696e6760d01b606082015260800190565b6020808252602c908201527f4d6178206d696e747320666f722066726565206d696e7420636f6e737472616960408201526b373a103b34b7b630ba34b7b760a11b606082015260800190565b6020808252602e908201527f4d6178206d696e747320706572207472616e73616374696f6e20636f6e73747260408201526d30b4b73a103b34b7b630ba34b7b760911b606082015260800190565b600081600019048311821515161561300e5761300e612eb4565b500290565b60208082526021908201527f57726f6e672045746865722056616c756520466f72205075626c69632053616c6040820152606560f81b606082015260800190565b6000845160206130678285838a016128f7565b85519184019161307a8184848a016128f7565b8554920191600090600181811c908083168061309757607f831692505b8583108114156130b557634e487b7160e01b85526022600452602485fd5b8080156130c957600181146130da57613107565b60ff19851688528388019550613107565b60008b81526020902060005b858110156130ff5781548a8201529084019088016130e6565b505083880195505b50939b9a5050505050505050505050565b60006020828403121561312a57600080fd5b81516118f8816128c5565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b6000826131705761317061314b565b500490565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131a890830184612923565b9695505050505050565b6000602082840312156131c457600080fd5b81516118f881612892565b6000826131de576131de61314b565b50069056fe4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4fa2646970667358221220171fe0e29eb7be12c8630359e76315908df1992375e046bceb7ffb09e542ef8864736f6c634300080a003300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000008d51be960dd304ca0be6c5b112ff3a99b18b9cdc000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f697066732d61737365742e6d7574616e74776f6c667061636b2e636f6d2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000002b5e3af16b188000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000eac05884ea59a40de7944e296a6a01f4739fd8700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000056bc75e2d6310000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000eac05884ea59a40de7944e296a6a01f4739fd87

Deployed Bytecode

0x6080604052600436106102ff5760003560e01c80638a333b5011610190578063c87b56dd116100dc578063e27fd8ec11610095578063eaf27d381161006f578063eaf27d38146108bb578063f2fde38b146108db578063fbc32832146108fb578063fd12dbf01461091b57600080fd5b8063e27fd8ec14610858578063e44d428914610885578063e985e9c51461089b57600080fd5b8063c87b56dd146107ac578063c930ec23146107cc578063cd7c0326146107e2578063cf95bb8f14610802578063da3ef23f14610822578063e158ebad1461084257600080fd5b8063acc498ef11610149578063bd2f6eb811610123578063bd2f6eb81461072b578063be5e5c1b1461074b578063c1ab22ec14610781578063c66828621461079757600080fd5b8063acc498ef146106e5578063b3ab66b0146106f8578063b88d4fde1461070b57600080fd5b80638a333b501461063d5780638da5cb5b1461065357806395d89b411461067157806397107d6d14610686578063a22cb465146106a6578063a5a865dc146106c657600080fd5b806355f804b31161024f57806370a0823111610208578063791a2519116101e2578063791a2519146105bd57806379268b07146105dd5780637f099df4146105fd578063817415c41461061d57600080fd5b806370a0823114610572578063715018a614610592578063779b3bb4146105a757600080fd5b806355f804b3146104c75780636352211e146104e757806364aa0c79146105075780636c0360eb1461051d5780636c19e783146105325780636f8b44b01461055257600080fd5b80631e5aa81c116102bc5780633ccfd60b116102965780633ccfd60b146104635780633e11ab3f1461047857806342842e0e1461048d578063542ee347146104ad57600080fd5b80631e5aa81c1461040d578063238ac9331461042357806323b872dd1461044357600080fd5b806301ffc9a71461030457806304dd0b3f1461033957806306fdde0314610374578063081812fc14610396578063095ea7b3146103ce57806318160ddd146103f0575b600080fd5b34801561031057600080fd5b5061032461031f3660046128a8565b610930565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b506103666103543660046128da565b60186020526000908152604090205481565b604051908152602001610330565b34801561038057600080fd5b50610389610982565b604051610330919061294f565b3480156103a257600080fd5b506103b66103b1366004612962565b610a14565b6040516001600160a01b039091168152602001610330565b3480156103da57600080fd5b506103ee6103e936600461297b565b610a58565b005b3480156103fc57600080fd5b506002546001540360001901610366565b34801561041957600080fd5b5061036660145481565b34801561042f57600080fd5b506011546103b6906001600160a01b031681565b34801561044f57600080fd5b506103ee61045e3660046129a7565b610ae6565b34801561046f57600080fd5b506103ee610af1565b34801561048457600080fd5b506103ee610c4e565b34801561049957600080fd5b506103ee6104a83660046129a7565b610ca6565b3480156104b957600080fd5b506009546103249060ff1681565b3480156104d357600080fd5b506103ee6104e2366004612a85565b610cc1565b3480156104f357600080fd5b506103b6610502366004612962565b610d02565b34801561051357600080fd5b50610366600d5481565b34801561052957600080fd5b50610389610d14565b34801561053e57600080fd5b506103ee61054d3660046128da565b610d23565b34801561055e57600080fd5b506103ee61056d366004612962565b610d6f565b34801561057e57600080fd5b5061036661058d3660046128da565b610d9e565b34801561059e57600080fd5b506103ee610dec565b3480156105b357600080fd5b50610366600f5481565b3480156105c957600080fd5b506103ee6105d8366004612962565b610e20565b3480156105e957600080fd5b506103ee6105f8366004612962565b610e4f565b34801561060957600080fd5b506103ee610618366004612962565b610e7e565b34801561062957600080fd5b506103ee610638366004612aed565b610ead565b34801561064957600080fd5b50610366600a5481565b34801561065f57600080fd5b506000546001600160a01b03166103b6565b34801561067d57600080fd5b50610389611136565b34801561069257600080fd5b506103ee6106a13660046128da565b611145565b3480156106b257600080fd5b506103ee6106c1366004612b33565b611191565b3480156106d257600080fd5b5060095461032490610100900460ff1681565b6103ee6106f3366004612b71565b611220565b6103ee610706366004612962565b611576565b34801561071757600080fd5b506103ee610726366004612bc0565b611723565b34801561073757600080fd5b506103ee610746366004612962565b611774565b34801561075757600080fd5b506103b6610766366004612962565b6017602052600090815260409020546001600160a01b031681565b34801561078d57600080fd5b50610366600e5481565b3480156107a357600080fd5b506103896117a3565b3480156107b857600080fd5b506103896107c7366004612962565b611831565b3480156107d857600080fd5b50610366600c5481565b3480156107ee57600080fd5b506010546103b6906001600160a01b031681565b34801561080e57600080fd5b506103ee61081d366004612962565b6118ff565b34801561082e57600080fd5b506103ee61083d366004612a85565b61192e565b34801561084e57600080fd5b5061036660155481565b34801561086457600080fd5b50610366610873366004612962565b60166020526000908152604090205481565b34801561089157600080fd5b50610366600b5481565b3480156108a757600080fd5b506103246108b6366004612c2b565b61196b565b3480156108c757600080fd5b506103ee6108d6366004612d4b565b611a2c565b3480156108e757600080fd5b506103ee6108f63660046128da565b611a62565b34801561090757600080fd5b506103ee610916366004612deb565b611afd565b34801561092757600080fd5b506103ee611c81565b60006001600160e01b031982166380ac58cd60e01b148061096157506001600160e01b03198216635b5e139f60e01b145b8061097c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461099190612e44565b80601f01602080910402602001604051908101604052809291908181526020018280546109bd90612e44565b8015610a0a5780601f106109df57610100808354040283529160200191610a0a565b820191906000526020600020905b8154815290600101906020018083116109ed57829003601f168201915b5050505050905090565b6000610a1f82611cd0565b610a3c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610a6382610d02565b9050806001600160a01b0316836001600160a01b03161415610a985760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ab85750610ab6813361196b565b155b15610ad6576040516367d9dca160e11b815260040160405180910390fd5b610ae1838383611d09565b505050565b610ae1838383611d65565b6000546001600160a01b03163314610b245760405162461bcd60e51b8152600401610b1b90612e7f565b60405180910390fd5b4768056bc75e2d63100000816000805b601454811015610bcb57610b7884610b728760166000610b55876001612eca565b815260200190815260200160002054611f7690919063ffffffff16565b90611f82565b9150610bac60176000610b8c846001612eca565b81526020810191909152604001600020546001600160a01b031683611f8e565b50610bb78383611fec565b925080610bc381612ee2565b915050610b34565b5060145491935083915b601554811015610c47576001601554610bee9190612efd565b8114610c1e57610c0b84610b728560166000610b55876001612eca565b9150610c178583611fec565b9450610c22565b8491505b610c3460176000610b8c846001612eca565b5080610c3f81612ee2565b915050610bd5565b5050505050565b6000546001600160a01b03163314610c785760405162461bcd60e51b8152600401610b1b90612e7f565b600954610100900460ff16610c98576009805461ff001916610100179055565b6009805461ff00191690555b565b610ae183838360405180602001604052806000815250611723565b6000546001600160a01b03163314610ceb5760405162461bcd60e51b8152600401610b1b90612e7f565b8051610cfe9060139060208401906127f9565b5050565b6000610d0d82611ff8565b5192915050565b6060610d1e61211f565b905090565b6000546001600160a01b03163314610d4d5760405162461bcd60e51b8152600401610b1b90612e7f565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610d995760405162461bcd60e51b8152600401610b1b90612e7f565b600a55565b60006001600160a01b038216610dc7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610e165760405162461bcd60e51b8152600401610b1b90612e7f565b610ca4600061212e565b6000546001600160a01b03163314610e4a5760405162461bcd60e51b8152600401610b1b90612e7f565b600f55565b6000546001600160a01b03163314610e795760405162461bcd60e51b8152600401610b1b90612e7f565b600d55565b6000546001600160a01b03163314610ea85760405162461bcd60e51b8152600401610b1b90612e7f565b600b55565b60008211610ef45760405162461bcd60e51b8152602060048201526014602482015273616d6f756e74206d757374206e6f74207a65726f60601b6044820152606401610b1b565b6011543360008181526018602090815260409182902054915160609390931b6bffffffffffffffffffffffff191690830152603482018590526054820152600160f91b60748201526001600160a01b0390911690610fba90610fb4906075015b60408051601f1981840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c8085019190915282518085039091018152605c909301909152815191012090565b8361217e565b6001600160a01b0316146110105760405162461bcd60e51b815260206004820152601f60248201527f596f752068617665206e6f742061636365737320666f72206d696e74696e67006044820152606401610b1b565b60095460ff1615156001146110675760405162461bcd60e51b815260206004820152601760248201527f46726565206d696e74206973206e6f74206163746976650000000000000000006044820152606401610b1b565b600b548211156110895760405162461bcd60e51b8152600401610b1b90612f14565b600e54336000908152601860205260409020546110a7908490612eca565b11156110c55760405162461bcd60e51b8152600401610b1b90612f5a565b81600b60008282546110d79190612efd565b909155505033600090815260186020526040812080548492906110fb908490612eca565b9091555061110b905033836121fd565b60405142815260039033906000805160206131e4833981519152906020015b60405180910390a35050565b60606004805461099190612e44565b6000546001600160a01b0316331461116f5760405162461bcd60e51b8152600401610b1b90612e7f565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382163314156111bb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910161112a565b6000831180156112305750600082115b801561123b57508183115b6112875760405162461bcd60e51b815260206004820152601860248201527f616c6c20616d6f756e74206d757374206e6f74207a65726f00000000000000006044820152606401610b1b565b6011543360008181526018602090815260409182902054915160609390931b6bffffffffffffffffffffffff19169083015260348201869052605482018590526074820152600160f81b60948201526001600160a01b03909116906112f290610fb490609501610f54565b6001600160a01b0316146113485760405162461bcd60e51b815260206004820152601f60248201527f596f752068617665206e6f742061636365737320666f72206d696e74696e67006044820152606401610b1b565b60095460ff161515600114801561136c575060095460ff6101009091041615156001145b6113c65760405162461bcd60e51b815260206004820152602560248201527f5075626c69632073616c6520616e642046726565206d696e74206d7573742061604482015264637469766560d81b6064820152608401610b1b565b600b548211156113e85760405162461bcd60e51b8152600401610b1b90612f14565b600e5433600090815260186020526040902054611406908490612eca565b11156114245760405162461bcd60e51b8152600401610b1b90612f5a565b600d548311156114465760405162461bcd60e51b8152600401610b1b90612fa6565b600f546114538484611fec565b61145d9190612ff4565b341461147b5760405162461bcd60e51b8152600401610b1b90613013565b600a5483600b54600c546114986002546001546000199190030190565b6114a29190612eca565b6114ac9190612eca565b6114b69190612eca565b11156115045760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e7320737570706c792072656163686564206c696d697400000000006044820152606401610b1b565b81600b60008282546115169190612efd565b9091555050336000908152601860205260408120805484929061153a908490612eca565b9091555061154a905033846121fd565b60405142815260029033906000805160206131e4833981519152906020015b60405180910390a3505050565b600081116115bd5760405162461bcd60e51b8152602060048201526014602482015273616d6f756e74206d757374206e6f74207a65726f60601b6044820152606401610b1b565b60095460ff61010090910416151560011461161a5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610b1b565b600d5481111561163c5760405162461bcd60e51b8152600401610b1b90612fa6565b600f546116499082612ff4565b34146116675760405162461bcd60e51b8152600401610b1b90613013565b600a5481600b54600c546116846002546001546000199190030190565b61168e9190612eca565b6116989190612eca565b6116a29190612eca565b11156116f05760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e7320737570706c792072656163686564206c696d697400000000006044820152606401610b1b565b6116fa33826121fd565b60405142815260019033906000805160206131e48339815191529060200160405180910390a350565b61172e848484611d65565b6001600160a01b0383163b15158015611750575061174e84848484612207565b155b1561176e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b0316331461179e5760405162461bcd60e51b8152600401610b1b90612e7f565b600e55565b601280546117b090612e44565b80601f01602080910402602001604051908101604052809291908181526020018280546117dc90612e44565b80156118295780601f106117fe57610100808354040283529160200191611829565b820191906000526020600020905b81548152906001019060200180831161180c57829003601f168201915b505050505081565b606061183c82611cd0565b6118a05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b1b565b60006118aa61211f565b905060008151116118ca57604051806020016040528060008152506118f8565b806118d4846122ef565b60126040516020016118e893929190613054565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146119295760405162461bcd60e51b8152600401610b1b90612e7f565b600c55565b6000546001600160a01b031633146119585760405162461bcd60e51b8152600401610b1b90612e7f565b8051610cfe9060129060208401906127f9565b60105460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa1580156119bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e19190613118565b6001600160a01b031614156119fa57600191505061097c565b6001600160a01b0380851660009081526008602090815260408083209387168352929052205460ff165b949350505050565b6000546001600160a01b03163314611a565760405162461bcd60e51b8152600401610b1b90612e7f565b61176e848484846123ec565b6000546001600160a01b03163314611a8c5760405162461bcd60e51b8152600401610b1b90612e7f565b6001600160a01b038116611af15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b1b565b611afa8161212e565b50565b6000546001600160a01b03163314611b275760405162461bcd60e51b8152600401610b1b90612e7f565b8051825114611b6b5760405162461bcd60e51b815260206004820152601060248201526f0daeae6e840e6c2daca40d8cadccee8d60831b6044820152606401610b1b565b600c5460005b8351811015611c585781838281518110611b8d57611b8d613135565b60200260200101511115611be35760405162461bcd60e51b815260206004820152601d60248201527f526573657276656420737570706c792072656163686564206c696d69740000006044820152606401610b1b565b611c1f848281518110611bf857611bf8613135565b6020026020010151848381518110611c1257611c12613135565b60200260200101516121fd565b828181518110611c3157611c31613135565b602002602001015182611c449190612efd565b915080611c5081612ee2565b915050611b71565b50600c81905560405142815260049033906000805160206131e483398151915290602001611569565b6000546001600160a01b03163314611cab5760405162461bcd60e51b8152600401610b1b90612e7f565b60095460ff16611cc4576009805460ff19166001179055565b6009805460ff19169055565b600081600111158015611ce4575060015482105b801561097c575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611d7082611ff8565b80519091506000906001600160a01b0316336001600160a01b03161480611d9e57508151611d9e903361196b565b80611db9575033611dae84610a14565b6001600160a01b0316145b905080611dd957604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611e0e5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611e3557604051633a954ecd60e21b815260040160405180910390fd5b611e456000848460000151611d09565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611f2f57600154811015611f2f57825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c47565b60006118f88284612ff4565b60006118f88284613161565b600080836001600160a01b03168360405160006040518083038185875af1925050503d8060008114611fdc576040519150601f19603f3d011682016040523d82523d6000602084013e611fe1565b606091505b509095945050505050565b60006118f88284612efd565b60408051606081018252600080825260208201819052918101919091528180600111158015612028575060015481105b1561210657600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906121045780516001600160a01b03161561209b579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156120ff579392505050565b61209b565b505b604051636f96cda160e11b815260040160405180910390fd5b60606013805461099190612e44565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008060008061218d856125de565b6040805160008152602081018083528b905260ff8516918101919091526060810183905260808101829052929550909350915060019060a0016020604051602081039080840390855afa1580156121e8573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b610cfe828261260d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061223c903390899088908890600401613175565b6020604051808303816000875af1925050508015612277575060408051601f3d908101601f19168201909252612274918101906131b2565b60015b6122d2573d8080156122a5576040519150601f19603f3d011682016040523d82523d6000602084013e6122aa565b606091505b5080516122ca576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060816123135750506040805180820190915260018152600360fc1b602082015290565b8160005b811561233d578061232781612ee2565b91506123369050600a83613161565b9150612317565b6000816001600160401b03811115612357576123576129e8565b6040519080825280601f01601f191660200182016040528015612381576020820181803683370190505b5090505b8415611a2457612396600183612efd565b91506123a3600a866131cf565b6123ae906030612eca565b60f81b8183815181106123c3576123c3613135565b60200101906001600160f81b031916908160001a9053506123e5600a86613161565b9450612385565b825184511480156123fe575080518251145b61243d5760405162461bcd60e51b815260206004820152601060248201526f6c656e677468206d7573742073616d6560801b6044820152606401610b1b565b60005b84518110156124f15784818151811061245b5761245b613135565b6020026020010151601660008360016124749190612eca565b81526020019081526020016000208190555083818151811061249857612498613135565b6020026020010151601760008360016124b19190612eca565b8152602081019190915260400160002080546001600160a01b0319166001600160a01b0392909216919091179055806124e981612ee2565b915050612440565b50835160145560005b82518110156125c55782818151811061251557612515613135565b6020026020010151601660008360145460016125319190612eca565b61253b9190612eca565b81526020019081526020016000208190555081818151811061255f5761255f613135565b60200260200101516017600083601454600161257b9190612eca565b6125859190612eca565b8152602081019190915260400160002080546001600160a01b0319166001600160a01b0392909216919091179055806125bd81612ee2565b9150506124fa565b5081516014546125d59190612eca565b60155550505050565b600080600083516041146125f157600080fd5b5050506020810151604082015160609092015160001a92909190565b610cfe828260405180602001604052806000815250610ae1838383600180546001600160a01b03851661265257604051622e076360e81b815260040160405180910390fd5b836126705760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561272157506001600160a01b0387163b15155b156127aa575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46127726000888480600101955088612207565b61278f576040516368d2bf6b60e11b815260040160405180910390fd5b808214156127275782600154146127a557600080fd5b6127f0565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156127ab575b50600155610c47565b82805461280590612e44565b90600052602060002090601f016020900481019282612827576000855561286d565b82601f1061284057805160ff191683800117855561286d565b8280016001018555821561286d579182015b8281111561286d578251825591602001919060010190612852565b5061287992915061287d565b5090565b5b80821115612879576000815560010161287e565b6001600160e01b031981168114611afa57600080fd5b6000602082840312156128ba57600080fd5b81356118f881612892565b6001600160a01b0381168114611afa57600080fd5b6000602082840312156128ec57600080fd5b81356118f8816128c5565b60005b838110156129125781810151838201526020016128fa565b8381111561176e5750506000910152565b6000815180845261293b8160208601602086016128f7565b601f01601f19169290920160200192915050565b6020815260006118f86020830184612923565b60006020828403121561297457600080fd5b5035919050565b6000806040838503121561298e57600080fd5b8235612999816128c5565b946020939093013593505050565b6000806000606084860312156129bc57600080fd5b83356129c7816128c5565b925060208401356129d7816128c5565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612a2657612a266129e8565b604052919050565b60006001600160401b03831115612a4757612a476129e8565b612a5a601f8401601f19166020016129fe565b9050828152838383011115612a6e57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612a9757600080fd5b81356001600160401b03811115612aad57600080fd5b8201601f81018413612abe57600080fd5b611a2484823560208401612a2e565b600082601f830112612ade57600080fd5b6118f883833560208501612a2e565b60008060408385031215612b0057600080fd5b8235915060208301356001600160401b03811115612b1d57600080fd5b612b2985828601612acd565b9150509250929050565b60008060408385031215612b4657600080fd5b8235612b51816128c5565b915060208301358015158114612b6657600080fd5b809150509250929050565b600080600060608486031215612b8657600080fd5b833592506020840135915060408401356001600160401b03811115612baa57600080fd5b612bb686828701612acd565b9150509250925092565b60008060008060808587031215612bd657600080fd5b8435612be1816128c5565b93506020850135612bf1816128c5565b92506040850135915060608501356001600160401b03811115612c1357600080fd5b612c1f87828801612acd565b91505092959194509250565b60008060408385031215612c3e57600080fd5b8235612c49816128c5565b91506020830135612b66816128c5565b60006001600160401b03821115612c7257612c726129e8565b5060051b60200190565b600082601f830112612c8d57600080fd5b81356020612ca2612c9d83612c59565b6129fe565b82815260059290921b84018101918181019086841115612cc157600080fd5b8286015b84811015612cdc5780358352918301918301612cc5565b509695505050505050565b600082601f830112612cf857600080fd5b81356020612d08612c9d83612c59565b82815260059290921b84018101918181019086841115612d2757600080fd5b8286015b84811015612cdc578035612d3e816128c5565b8352918301918301612d2b565b60008060008060808587031215612d6157600080fd5b84356001600160401b0380821115612d7857600080fd5b612d8488838901612c7c565b95506020870135915080821115612d9a57600080fd5b612da688838901612ce7565b94506040870135915080821115612dbc57600080fd5b612dc888838901612c7c565b93506060870135915080821115612dde57600080fd5b50612c1f87828801612ce7565b60008060408385031215612dfe57600080fd5b82356001600160401b0380821115612e1557600080fd5b612e2186838701612ce7565b93506020850135915080821115612e3757600080fd5b50612b2985828601612c7c565b600181811c90821680612e5857607f821691505b60208210811415612e7957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612edd57612edd612eb4565b500190565b6000600019821415612ef657612ef6612eb4565b5060010190565b600082821015612f0f57612f0f612eb4565b500390565b60208082526026908201527f467265656d696e7420537570706c79204e6f7420456e6f75676820466f72204d604082015265696e74696e6760d01b606082015260800190565b6020808252602c908201527f4d6178206d696e747320666f722066726565206d696e7420636f6e737472616960408201526b373a103b34b7b630ba34b7b760a11b606082015260800190565b6020808252602e908201527f4d6178206d696e747320706572207472616e73616374696f6e20636f6e73747260408201526d30b4b73a103b34b7b630ba34b7b760911b606082015260800190565b600081600019048311821515161561300e5761300e612eb4565b500290565b60208082526021908201527f57726f6e672045746865722056616c756520466f72205075626c69632053616c6040820152606560f81b606082015260800190565b6000845160206130678285838a016128f7565b85519184019161307a8184848a016128f7565b8554920191600090600181811c908083168061309757607f831692505b8583108114156130b557634e487b7160e01b85526022600452602485fd5b8080156130c957600181146130da57613107565b60ff19851688528388019550613107565b60008b81526020902060005b858110156130ff5781548a8201529084019088016130e6565b505083880195505b50939b9a5050505050505050505050565b60006020828403121561312a57600080fd5b81516118f8816128c5565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b6000826131705761317061314b565b500490565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131a890830184612923565b9695505050505050565b6000602082840312156131c457600080fd5b81516118f881612892565b6000826131de576131de61314b565b50069056fe4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4fa2646970667358221220171fe0e29eb7be12c8630359e76315908df1992375e046bceb7ffb09e542ef8864736f6c634300080a0033

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

00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000008d51be960dd304ca0be6c5b112ff3a99b18b9cdc000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f697066732d61737365742e6d7574616e74776f6c667061636b2e636f6d2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000002b5e3af16b188000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000eac05884ea59a40de7944e296a6a01f4739fd8700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000056bc75e2d6310000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000eac05884ea59a40de7944e296a6a01f4739fd87

-----Decoded View---------------
Arg [0] : ___baseURI (string): https://ipfs-asset.mutantwolfpack.com/
Arg [1] : _signer (address): 0x8d51Be960dd304CA0BE6c5b112ff3A99B18B9cDC
Arg [2] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [3] : _primaryPercentage (uint256[]): 50000000000000000000
Arg [4] : _primaryReceipient (address[]): 0x0Eac05884eA59A40De7944e296A6a01F4739fd87
Arg [5] : _split (uint256[]): 100000000000000000000
Arg [6] : _addressTeam (address[]): 0x0Eac05884eA59A40De7944e296A6a01F4739fd87

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000008d51be960dd304ca0be6c5b112ff3a99b18b9cdc
Arg [2] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [8] : 68747470733a2f2f697066732d61737365742e6d7574616e74776f6c66706163
Arg [9] : 6b2e636f6d2f0000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [11] : 000000000000000000000000000000000000000000000002b5e3af16b1880000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [13] : 0000000000000000000000000eac05884ea59a40de7944e296a6a01f4739fd87
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [15] : 0000000000000000000000000000000000000000000000056bc75e2d63100000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [17] : 0000000000000000000000000eac05884ea59a40de7944e296a6a01f4739fd87


Deployed Bytecode Sourcemap

53735:12880:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35222:315;;;;;;;;;;-1:-1:-1;35222:315:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;35222:315:0;;;;;;;;54752:51;;;;;;;;;;-1:-1:-1;54752:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1126:25:1;;;1114:2;1099:18;54752:51:0;980:177:1;38785:104:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40382:212::-;;;;;;;;;;-1:-1:-1;40382:212:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2262:32:1;;;2244:51;;2232:2;2217:18;40382:212:0;2098:203:1;39917:389:0;;;;;;;;;;-1:-1:-1;39917:389:0;;;;;:::i;:::-;;:::i;:::-;;34427:315;;;;;;;;;;-1:-1:-1;34689:12:0;;55699:1;34673:13;:28;-1:-1:-1;;34673:46:0;34427:315;;54548:31;;;;;;;;;;;;;;;;54382:24;;;;;;;;;;-1:-1:-1;54382:24:0;;;;-1:-1:-1;;;;;54382:24:0;;;41299:182;;;;;;;;;;-1:-1:-1;41299:182:0;;;;;:::i;:::-;;:::i;63695:963::-;;;;;;;;;;;;;:::i;57091:213::-;;;;;;;;;;;;;:::i;41562:197::-;;;;;;;;;;-1:-1:-1;41562:197:0;;;;;:::i;:::-;;:::i;53895:28::-;;;;;;;;;;-1:-1:-1;53895:28:0;;;;;;;;56390:112;;;;;;;;;;-1:-1:-1;56390:112:0;;;;;:::i;:::-;;:::i;38580:128::-;;;;;;;;;;-1:-1:-1;38580:128:0;;;;;:::i;:::-;;:::i;54151:45::-;;;;;;;;;;;;;;;;55856:93;;;;;;;;;;;;;:::i;56830:94::-;;;;;;;;;;-1:-1:-1;56830:94:0;;;;;:::i;:::-;;:::i;56525:104::-;;;;;;;;;;-1:-1:-1;56525:104:0;;;;;:::i;:::-;;:::i;35611:212::-;;;;;;;;;;-1:-1:-1;35611:212:0;;;;;:::i;:::-;;:::i;11797:103::-;;;;;;;;;;;;;:::i;54263:55::-;;;;;;;;;;;;;;;;57460:110;;;;;;;;;;-1:-1:-1;57460:110:0;;;;;:::i;:::-;;:::i;56652:155::-;;;;;;;;;;-1:-1:-1;56652:155:0;;;;;:::i;:::-;;:::i;57726:98::-;;;;;;;;;;-1:-1:-1;57726:98:0;;;;;:::i;:::-;;:::i;62081:1022::-;;;;;;;;;;-1:-1:-1;62081:1022:0;;;;;:::i;:::-;;:::i;53975:48::-;;;;;;;;;;;;;;;;11146:87;;;;;;;;;;-1:-1:-1;11192:7:0;11219:6;-1:-1:-1;;;;;11219:6:0;11146:87;;38968:108;;;;;;;;;;;;;:::i;57331:106::-;;;;;;;;;;-1:-1:-1;57331:106:0;;;;;:::i;:::-;;:::i;40676:297::-;;;;;;;;;;-1:-1:-1;40676:297:0;;;;;:::i;:::-;;:::i;53932:30::-;;;;;;;;;;-1:-1:-1;53932:30:0;;;;;;;;;;;60411:1639;;;;;;:::i;:::-;;:::i;59741:623::-;;;;;;:::i;:::-;;:::i;41840:389::-;;;;;;;;;;-1:-1:-1;41840:389:0;;;;;:::i;:::-;;:::i;57593:109::-;;;;;;;;;;-1:-1:-1;57593:109:0;;;;;:::i;:::-;;:::i;54683:44::-;;;;;;;;;;-1:-1:-1;54683:44:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;54683:44:0;;;54205:45;;;;;;;;;;;;;;;;54419:46;;;;;;;;;;;;;:::i;55965:370::-;;;;;;;;;;-1:-1:-1;55965:370:0;;;;;:::i;:::-;;:::i;54092:46::-;;;;;;;;;;;;;;;;54335:38;;;;;;;;;;-1:-1:-1;54335:38:0;;;;-1:-1:-1;;;;;54335:38:0;;;57848:98;;;;;;;;;;-1:-1:-1;57848:98:0;;;;;:::i;:::-;;:::i;56951:117::-;;;;;;;;;;-1:-1:-1;56951:117:0;;;;;:::i;:::-;;:::i;54588:28::-;;;;;;;;;;;;;;;;54629:45;;;;;;;;;;-1:-1:-1;54629:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;54036:47;;;;;;;;;;;;;;;;66139:471;;;;;;;;;;-1:-1:-1;66139:471:0;;;;;:::i;:::-;;:::i;58199:400::-;;;;;;;;;;-1:-1:-1;58199:400:0;;;;;:::i;:::-;;:::i;12055:201::-;;;;;;;;;;-1:-1:-1;12055:201:0;;;;;:::i;:::-;;:::i;63138:522::-;;;;;;;;;;-1:-1:-1;63138:522:0;;;;;:::i;:::-;;:::i;57970:205::-;;;;;;;;;;;;;:::i;35222:315::-;35324:4;-1:-1:-1;;;;;;35365:40:0;;-1:-1:-1;;;35365:40:0;;:107;;-1:-1:-1;;;;;;;35424:48:0;;-1:-1:-1;;;35424:48:0;35365:107;:162;;;-1:-1:-1;;;;;;;;;;23687:40:0;;;35491:36;35343:184;35222:315;-1:-1:-1;;35222:315:0:o;38785:104::-;38839:13;38874:5;38867:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38785:104;:::o;40382:212::-;40450:7;40477:16;40485:7;40477;:16::i;:::-;40472:64;;40502:34;;-1:-1:-1;;;40502:34:0;;;;;;;;;;;40472:64;-1:-1:-1;40560:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40560:24:0;;40382:212::o;39917:389::-;39992:13;40008:24;40024:7;40008:15;:24::i;:::-;39992:40;;40055:5;-1:-1:-1;;;;;40049:11:0;:2;-1:-1:-1;;;;;40049:11:0;;40045:48;;;40069:24;;-1:-1:-1;;;40069:24:0;;;;;;;;;;;40045:48;9950:10;-1:-1:-1;;;;;40114:21:0;;;;;;:63;;-1:-1:-1;40140:37:0;40157:5;9950:10;66139:471;:::i;40140:37::-;40139:38;40114:63;40110:142;;;40203:35;;-1:-1:-1;;;40203:35:0;;;;;;;;;;;40110:142;40268:28;40277:2;40281:7;40290:5;40268:8;:28::i;:::-;39979:327;39917:389;;:::o;41299:182::-;41443:28;41453:4;41459:2;41463:7;41443:9;:28::i;63695:963::-;11192:7;11219:6;-1:-1:-1;;;;;11219:6:0;9950:10;11366:23;11358:68;;;;-1:-1:-1;;;11358:68:0;;;;;;;:::i;:::-;;;;;;;;;63764:21:::1;63819:12;63764:21:::0;63746:15:::1;::::0;63953:232:::1;63972:16;;63970:1;:18;63953:232;;;64023:46;64058:10:::0;64024:28:::1;64044:7:::0;64024:10:::1;:15;64035:3;:1:::0;64037::::1;64035:3;:::i;:::-;64024:15;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;64023:34:::0;::::1;:46::i;:::-;64011:58:::0;-1:-1:-1;64086:32:0::1;64092:9;:14;64102:3;:1:::0;64104::::1;64102:3;:::i;:::-;64092:14:::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;64092:14:0;;-1:-1:-1;;;;;64092:14:0::1;64108:9:::0;64086:5:::1;:32::i;:::-;-1:-1:-1::0;64147:24:0::1;:9:::0;64161;64147:13:::1;:24::i;:::-;64135:36:::0;-1:-1:-1;63990:3:0;::::1;::::0;::::1;:::i;:::-;;;;63953:232;;;-1:-1:-1::0;64278:16:0::1;::::0;64242:9;;-1:-1:-1;64242:9:0;;64264:385:::1;64298:13;;64296:1;:15;64264:385;;;64356:1;64342:13;;:15;;;;:::i;:::-;64337:1;:20;64334:253;;64391:48;64428:10:::0;64392:30:::1;64412:9:::0;64392:10:::1;:15;64403:3;:1:::0;64405::::1;64403:3;:::i;64391:48::-;64379:60:::0;-1:-1:-1;64470:22:0::1;:7:::0;64379:60;64470:11:::1;:22::i;:::-;64460:32;;64334:253;;;64562:7;64551:18;;64334:253;64603:32;64609:9;:14;64619:3;:1:::0;64621::::1;64619:3;:::i;64603:32::-;-1:-1:-1::0;64313:3:0;::::1;::::0;::::1;:::i;:::-;;;;64264:385;;;;63733:925;;;;63695:963::o:0;57091:213::-;11192:7;11219:6;-1:-1:-1;;;;;11219:6:0;9950:10;11366:23;11358:68;;;;-1:-1:-1;;;11358:68:0;;;;;;;:::i;:::-;57156:12:::1;::::0;::::1;::::0;::::1;;;57153:142;;57195:12;:19:::0;;-1:-1:-1;;57195:19:0::1;;;::::0;;57091:213::o;57153:142::-:1;57261:12;:20:::0;;-1:-1:-1;;57261:20:0::1;::::0;;57153:142:::1;57091:213::o:0;41562:197::-;41710:39;41727:4;41733:2;41737:7;41710:39;;;;;;;;;;;;:16;:39::i;56390:112::-;11192:7;11219:6;-1:-1:-1;;;;;11219:6:0;9950:10;11366:23;11358:68;;;;-1:-1:-1;;;11358:68:0;;;;;;;:::i;:::-;56469:23;;::::1;::::0;:9:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;56390:112:::0;:::o;38580:128::-;38644:7;38673:20;38685:7;38673:11;:20::i;:::-;:25;;38580:128;-1:-1:-1;;38580:128:0:o;55856:93::-;55895:13;55929:10;:8;:10::i;:::-;55922:17;;55856:93;:::o;56830:94::-;11192:7;11219:6;-1:-1:-1;;;;;11219:6:0;9950:10;11366:23;11358:68;;;;-1:-1:-1;;;11358:68:0;;;;;;;:::i;:::-;56898:6:::1;:16:::0;;-1:-1:-1;;;;;;56898:16:0::1;-1:-1:-1::0;;;;;56898:16:0;;;::::1;::::0;;;::::1;::::0;;56830:94::o;56525:104::-;11192:7;11219:6;-1:-1:-1;;;;;11219:6:0;9950:10;11366:23;11358:68;;;;-1:-1:-1;;;11358:68:0;;;;;;;:::i;:::-;56596:10:::1;:23:::0;56525:104::o;35611:212::-;35675:7;-1:-1:-1;;;;;35701:19:0;;35697:60;;35729:28;;-1:-1:-1;;;35729:28:0;;;;;;;;;;;35697:60;-1:-1:-1;;;;;;35785:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;35785:27:0;;35611:212::o;11797:103::-;11192:7;11219:6;-1:-1:-1;;;;;11219:6:0;9950:10;11366:23;11358:68;;;;-1:-1:-1;;;11358:68:0;;;;;;;:::i;:::-;11862:30:::1;11889:1;11862:18;:30::i;57460:110::-:0;11192:7;11219:6;-1:-1:-1;;;;;11219:6:0;9950:10;11366:23;11358:68;;;;-1:-1:-1;;;11358:68:0;;;;;;;:::i;:::-;57535:16:::1;:25:::0;57460:110::o;56652:155::-;11192:7;11219:6;-1:-1:-1;;;;;11219:6:0;9950:10;11366:23;11358:68;;;;-1:-1:-1;;;11358:68:0;;;;;;;:::i;:::-;56749:22:::1;:48:::0;56652:155::o;57726:98::-;11192:7;11219:6;-1:-1:-1;;;;;11219:6:0;9950:10;11366:23;11358:68;;;;-1:-1:-1;;;11358:68:0;;;;;;;:::i;:::-;57795:12:::1;:19:::0;57726:98::o;62081:1022::-;62181:1;62171:7;:11;62163:45;;;;-1:-1:-1;;;62163:45:0;;11664:2:1;62163:45:0;;;11646:21:1;11703:2;11683:18;;;11676:30;-1:-1:-1;;;11722:18:1;;;11715:50;11782:18;;62163:45:0;11462:344:1;62163:45:0;62546:6;;62319:10;62546:6;62418:28;;;:16;:28;;;;;;;;;;62262:266;;12040:2:1;12036:15;;;;-1:-1:-1;;12032:53:1;62262:266:0;;;12020:66:1;12102:12;;;12095:28;;;12139:12;;;12132:28;-1:-1:-1;;;12176:12:1;;;12169:58;-1:-1:-1;;;;;62546:6:0;;;;62229:314;;62243:287;;12243:12:1;;62262:266:0;;;;-1:-1:-1;;62262:266:0;;;;;;;;;62252:277;;62262:266;62252:277;;;;21089:66:1;64967:94:0;;;21077:79:1;21172:12;;;;21165:28;;;;64967:94:0;;;;;;;;;;21209:12:1;;;;64967:94:0;;;64957:105;;;;;;64873:199;62243:287;62532:10;62229:13;:314::i;:::-;-1:-1:-1;;;;;62229:323:0;;62221:367;;;;-1:-1:-1;;;62221:367:0;;12468:2:1;62221:367:0;;;12450:21:1;12507:2;12487:18;;;12480:30;12546:33;12526:18;;;12519:61;12597:18;;62221:367:0;12266:355:1;62221:367:0;62613:10;;;;:18;;:10;:18;62605:54;;;;-1:-1:-1;;;62605:54:0;;12828:2:1;62605:54:0;;;12810:21:1;12867:2;12847:18;;;12840:30;12906:25;12886:18;;;12879:53;12949:18;;62605:54:0;12626:347:1;62605:54:0;62691:12;;62680:7;:23;;62672:74;;;;-1:-1:-1;;;62672:74:0;;;;;;;:::i;:::-;62809:17;;62784:10;62767:28;;;;:16;:28;;;;;;:38;;62798:7;;62767:38;:::i;:::-;:59;;62759:116;;;;-1:-1:-1;;;62759:116:0;;;;;;;:::i;:::-;62914:7;62900:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;62955:10:0;62938:28;;;;:16;:28;;;;;:39;;62970:7;;62938:28;:39;;62970:7;;62938:39;:::i;:::-;;;;-1:-1:-1;63006:29:0;;-1:-1:-1;63015:10:0;63027:7;63006:8;:29::i;:::-;63057:36;;63077:15;1126:25:1;;63074:1:0;;63062:10;;-1:-1:-1;;;;;;;;;;;63057:36:0;1114:2:1;1099:18;63057:36:0;;;;;;;;62081:1022;;:::o;38968:108::-;39024:13;39059:7;39052:14;;;;;:::i;57331:106::-;11192:7;11219:6;-1:-1:-1;;;;;11219:6:0;9950:10;11366:23;11358:68;;;;-1:-1:-1;;;11358:68:0;;;;;;;:::i;:::-;57397:20:::1;:30:::0;;-1:-1:-1;;;;;;57397:30:0::1;-1:-1:-1::0;;;;;57397:30:0;;;::::1;::::0;;;::::1;::::0;;57331:106::o;40676:297::-;-1:-1:-1;;;;;40777:24:0;;9950:10;40777:24;40773:54;;;40810:17;;-1:-1:-1;;;40810:17:0;;;;;;;;;;;40773:54;9950:10;40844:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40844:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;40844:53:0;;;;;;;;;;40915:48;;540:41:1;;;40844:42:0;;9950:10;40915:48;;513:18:1;40915:48:0;400:187:1;60411:1639:0;60559:1;60544:12;:16;:35;;;;;60578:1;60564:11;:15;60544:35;:65;;;;;60598:11;60583:12;:26;60544:65;60536:102;;;;-1:-1:-1;;;60536:102:0;;14000:2:1;60536:102:0;;;13982:21:1;14039:2;14019:18;;;14012:30;14078:26;14058:18;;;14051:54;14122:18;;60536:102:0;13798:348:1;60536:102:0;61033:6;;60749:10;61033:6;60905:28;;;:16;:28;;;;;;;;;;60692:323;;14408:2:1;14404:15;;;;-1:-1:-1;;14400:53:1;60692:323:0;;;14388:66:1;14470:12;;;14463:28;;;14507:12;;;14500:28;;;14544:12;;;14537:28;-1:-1:-1;;;14581:13:1;;;14574:59;-1:-1:-1;;;;;61033:6:0;;;;60659:371;;60673:344;;14649:13:1;;60692:323:0;14151:517:1;60659:371:0;-1:-1:-1;;;;;60659:380:0;;60651:424;;;;-1:-1:-1;;;60651:424:0;;12468:2:1;60651:424:0;;;12450:21:1;12507:2;12487:18;;;12480:30;12546:33;12526:18;;;12519:61;12597:18;;60651:424:0;12266:355:1;60651:424:0;61096:10;;;;:18;;:10;:18;:42;;;;-1:-1:-1;61118:12:0;;;;;;;;:20;;:12;:20;61096:42;61088:92;;;;-1:-1:-1;;;61088:92:0;;14875:2:1;61088:92:0;;;14857:21:1;14914:2;14894:18;;;14887:30;14953:34;14933:18;;;14926:62;-1:-1:-1;;;15004:18:1;;;14997:35;15049:19;;61088:92:0;14673:401:1;61088:92:0;61243:12;;61228:11;:27;;61220:78;;;;-1:-1:-1;;;61220:78:0;;;;;;;:::i;:::-;61365:17;;61336:10;61319:28;;;;:16;:28;;;;;;:42;;61350:11;;61319:42;:::i;:::-;:63;;61311:120;;;;-1:-1:-1;;;61311:120:0;;;;;;;:::i;:::-;61497:22;;61481:12;:38;;61473:97;;;;-1:-1:-1;;;61473:97:0;;;;;;;:::i;:::-;61638:16;;61605:29;:12;61622:11;61605:16;:29::i;:::-;61604:50;;;;:::i;:::-;61591:9;:63;61583:109;;;;-1:-1:-1;;;61583:109:0;;;;;;;:::i;:::-;61775:10;;61759:12;61744;;61729;;61713:13;34689:12;;55699:1;34673:13;-1:-1:-1;;34673:28:0;;;:46;;34427:315;61713:13;:28;;;;:::i;:::-;:43;;;;:::i;:::-;:58;;;;:::i;:::-;:72;;61705:112;;;;-1:-1:-1;;;61705:112:0;;16271:2:1;61705:112:0;;;16253:21:1;16310:2;16290:18;;;16283:30;16349:29;16329:18;;;16322:57;16396:18;;61705:112:0;16069:351:1;61705:112:0;61848:11;61834:12;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;61893:10:0;61876:28;;;;:16;:28;;;;;:43;;61908:11;;61876:28;:43;;61908:11;;61876:43;:::i;:::-;;;;-1:-1:-1;61948:34:0;;-1:-1:-1;61957:10:0;61969:12;61948:8;:34::i;:::-;62004:36;;62024:15;1126:25:1;;62021:1:0;;62009:10;;-1:-1:-1;;;;;;;;;;;62004:36:0;1114:2:1;1099:18;62004:36:0;;;;;;;;60411:1639;;;:::o;59741:623::-;59829:1;59819:7;:11;59811:45;;;;-1:-1:-1;;;59811:45:0;;11664:2:1;59811:45:0;;;11646:21:1;11703:2;11683:18;;;11676:30;-1:-1:-1;;;11722:18:1;;;11715:50;11782:18;;59811:45:0;11462:344:1;59811:45:0;59877:12;;;;;;;;:20;;:12;:20;59869:58;;;;-1:-1:-1;;;59869:58:0;;16627:2:1;59869:58:0;;;16609:21:1;16666:2;16646:18;;;16639:30;16705:27;16685:18;;;16678:55;16750:18;;59869:58:0;16425:349:1;59869:58:0;59959:22;;59948:7;:33;;59940:92;;;;-1:-1:-1;;;59940:92:0;;;;;;;:::i;:::-;60076:16;;60066:26;;:7;:26;:::i;:::-;60053:9;:39;60045:85;;;;-1:-1:-1;;;60045:85:0;;;;;;;:::i;:::-;60212:10;;60201:7;60186:12;;60171;;60155:13;34689:12;;55699:1;34673:13;-1:-1:-1;;34673:28:0;;;:46;;34427:315;60155:13;:28;;;;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;:67;;60147:107;;;;-1:-1:-1;;;60147:107:0;;16271:2:1;60147:107:0;;;16253:21:1;16310:2;16290:18;;;16283:30;16349:29;16329:18;;;16322:57;16396:18;;60147:107:0;16069:351:1;60147:107:0;60267:29;60276:10;60288:7;60267:8;:29::i;:::-;60318:36;;60338:15;1126:25:1;;60335:1:0;;60323:10;;-1:-1:-1;;;;;;;;;;;60318:36:0;1114:2:1;1099:18;60318:36:0;;;;;;;59741:623;:::o;41840:389::-;42019:28;42029:4;42035:2;42039:7;42019:9;:28::i;:::-;-1:-1:-1;;;;;42064:13:0;;13757:20;13805:8;;42064:76;;;;;42084:56;42115:4;42121:2;42125:7;42134:5;42084:30;:56::i;:::-;42083:57;42064:76;42060:160;;;42166:40;;-1:-1:-1;;;42166:40:0;;;;;;;;;;;42060:160;41840:389;;;;:::o;57593:109::-;11192:7;11219:6;-1:-1:-1;;;;;11219:6:0;9950:10;11366:23;11358:68;;;;-1:-1:-1;;;11358:68:0;;;;;;;:::i;:::-;57666:17:::1;:26:::0;57593:109::o;54419:46::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55965:370::-;56039:13;56074:17;56082:8;56074:7;:17::i;:::-;56066:77;;;;-1:-1:-1;;;56066:77:0;;16981:2:1;56066:77:0;;;16963:21:1;17020:2;17000:18;;;16993:30;17059:34;17039:18;;;17032:62;-1:-1:-1;;;17110:18:1;;;17103:45;17165:19;;56066:77:0;16779:411:1;56066:77:0;56160:24;56187:10;:8;:10::i;:::-;56160:37;;56244:1;56223:10;56217:24;:28;:108;;;;;;;;;;;;;;;;;56272:10;56284:19;:8;:17;:19::i;:::-;56305:13;56255:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56217:108;56210:115;55965:370;-1:-1:-1;;;55965:370:0:o;57848:98::-;11192:7;11219:6;-1:-1:-1;;;;;11219:6:0;9950:10;11366:23;11358:68;;;;-1:-1:-1;;;11358:68:0;;;;;;;:::i;:::-;57917:12:::1;:19:::0;57848:98::o;56951:117::-;11192:7;11219:6;-1:-1:-1;;;;;11219:6:0;9950:10;11366:23;11358:68;;;;-1:-1:-1;;;11358:68:0;;;;;;;:::i;:::-;57033:25;;::::1;::::0;:13:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;66139:471::-:0;66407:20;;66453:28;;-1:-1:-1;;;66453:28:0;;-1:-1:-1;;;;;2262:32:1;;;66453:28:0;;;2244:51:1;66272:4:0;;66407:20;;;66445:49;;;;66407:20;;66453:21;;2217:18:1;;66453:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;66445:49:0;;66441:97;;;66520:4;66513:11;;;;;66441:97;-1:-1:-1;;;;;41177:25:0;;;41151:4;41177:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;66561:39;66554:46;66139:471;-1:-1:-1;;;;66139:471:0:o;58199:400::-;11192:7;11219:6;-1:-1:-1;;;;;11219:6:0;9950:10;11366:23;11358:68;;;;-1:-1:-1;;;11358:68:0;;;;;;;:::i;:::-;58438:151:::1;58471:18;58506;58541:6;58564:12;58438:16;:151::i;12055:201::-:0;11192:7;11219:6;-1:-1:-1;;;;;11219:6:0;9950:10;11366:23;11358:68;;;;-1:-1:-1;;;11358:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12144:22:0;::::1;12136:73;;;::::0;-1:-1:-1;;;12136:73:0;;19340:2:1;12136:73:0::1;::::0;::::1;19322:21:1::0;19379:2;19359:18;;;19352:30;19418:34;19398:18;;;19391:62;-1:-1:-1;;;19469:18:1;;;19462:36;19515:19;;12136:73:0::1;19138:402:1::0;12136:73:0::1;12220:28;12239:8;12220:18;:28::i;:::-;12055:201:::0;:::o;63138:522::-;11192:7;11219:6;-1:-1:-1;;;;;11219:6:0;9950:10;11366:23;11358:68;;;;-1:-1:-1;;;11358:68:0;;;;;;;:::i;:::-;63261:7:::1;:14;63247:3;:10;:28;63239:57;;;::::0;-1:-1:-1;;;63239:57:0;;19747:2:1;63239:57:0::1;::::0;::::1;19729:21:1::0;19786:2;19766:18;;;19759:30;-1:-1:-1;;;19805:18:1;;;19798:46;19861:18;;63239:57:0::1;19545:340:1::0;63239:57:0::1;63325:12;::::0;63309:13:::1;63350:209;63366:3;:10;63364:1;:12;63350:209;;;63421:8;63407:7;63415:1;63407:10;;;;;;;;:::i;:::-;;;;;;;:22;;63399:64;;;::::0;-1:-1:-1;;;63399:64:0;;20224:2:1;63399:64:0::1;::::0;::::1;20206:21:1::0;20263:2;20243:18;;;20236:30;20302:31;20282:18;;;20275:59;20351:18;;63399:64:0::1;20022:353:1::0;63399:64:0::1;63480:27;63489:3;63493:1;63489:6;;;;;;;;:::i;:::-;;;;;;;63496:7;63504:1;63496:10;;;;;;;;:::i;:::-;;;;;;;63480:8;:27::i;:::-;63535:7;63543:1;63535:10;;;;;;;;:::i;:::-;;;;;;;63524:21;;;;;:::i;:::-;::::0;-1:-1:-1;63378:3:0;::::1;::::0;::::1;:::i;:::-;;;;63350:209;;;-1:-1:-1::0;63571:12:0::1;:21:::0;;;63614:36:::1;::::0;63634:15:::1;1126:25:1::0;;63631:1:0::1;::::0;63619:10:::1;::::0;-1:-1:-1;;;;;;;;;;;63614:36:0;1114:2:1;1099:18;63614:36:0::1;980:177:1::0;57970:205:0;11192:7;11219:6;-1:-1:-1;;;;;11219:6:0;9950:10;11366:23;11358:68;;;;-1:-1:-1;;;11358:68:0;;;;;;;:::i;:::-;58033:10:::1;::::0;::::1;;58030:136;;58070:10;:17:::0;;-1:-1:-1;;58070:17:0::1;58083:4;58070:17;::::0;;57091:213::o;58030:136::-:1;58134:10;:18:::0;;-1:-1:-1;;58134:18:0::1;::::0;;57970:205::o;42502:193::-;42559:4;42604:7;55699:1;42585:26;;:53;;;;;42625:13;;42615:7;:23;42585:53;:100;;;;-1:-1:-1;;42658:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;42658:27:0;;;;42657:28;;42502:193::o;50503:210::-;50628:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;50628:29:0;-1:-1:-1;;;;;50628:29:0;;;;;;;;;50675:28;;50628:24;;50675:28;;;;;;;50503:210;;;:::o;45797:2202::-;45922:35;45960:20;45972:7;45960:11;:20::i;:::-;46039:18;;45922:58;;-1:-1:-1;45997:22:0;;-1:-1:-1;;;;;46023:34:0;9950:10;-1:-1:-1;;;;;46023:34:0;;:103;;;-1:-1:-1;46093:18:0;;46076:50;;9950:10;66139:471;:::i;46076:50::-;46023:158;;;-1:-1:-1;9950:10:0;46145:20;46157:7;46145:11;:20::i;:::-;-1:-1:-1;;;;;46145:36:0;;46023:158;45997:185;;46204:17;46199:66;;46230:35;;-1:-1:-1;;;46230:35:0;;;;;;;;;;;46199:66;46304:4;-1:-1:-1;;;;;46282:26:0;:13;:18;;;-1:-1:-1;;;;;46282:26:0;;46278:67;;46317:28;;-1:-1:-1;;;46317:28:0;;;;;;;;;;;46278:67;-1:-1:-1;;;;;46362:16:0;;46358:52;;46387:23;;-1:-1:-1;;;46387:23:0;;;;;;;;;;;46358:52;46541:49;46558:1;46562:7;46571:13;:18;;;46541:8;:49::i;:::-;-1:-1:-1;;;;;46898:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;46898:31:0;;;-1:-1:-1;;;;;46898:31:0;;;-1:-1:-1;;46898:31:0;;;;;;;46946:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;46946:29:0;;;;;;;;;;;46996:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;47043:61:0;;;;-1:-1:-1;;;47088:15:0;47043:61;;;;;;;;;;;47386:11;;;47418:24;;;;;:29;47386:11;;47418:29;47414:459;;47649:13;;47635:11;:27;47631:225;;;47721:18;;;47689:24;;;:11;:24;;;;;;;;:50;;47806:28;;;;-1:-1:-1;;;;;47764:70:0;-1:-1:-1;;;47764:70:0;-1:-1:-1;;;;;;47764:70:0;;;-1:-1:-1;;;;;47689:50:0;;;47764:70;;;;;;;47631:225;46871:1015;47926:7;47922:2;-1:-1:-1;;;;;47907:27:0;47916:4;-1:-1:-1;;;;;47907:27:0;;;;;;;;;;;47947:42;41840:389;3640:98;3698:7;3725:5;3729:1;3725;:5;:::i;4039:98::-;4097:7;4124:5;4128:1;4124;:5;:::i;64670:163::-;64731:4;64750:9;64771:3;-1:-1:-1;;;;;64763:17:0;64788:6;64763:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64749:50:0;;64670:163;-1:-1:-1;;;;;64670:163:0:o;3283:98::-;3341:7;3368:5;3372:1;3368;:5;:::i;37350:1158::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;37462:7:0;;55699:1;37517:23;;:47;;;;;37551:13;;37544:4;:20;37517:47;37513:922;;;37587:31;37621:17;;;:11;:17;;;;;;;;;37587:51;;;;;;;;;-1:-1:-1;;;;;37587:51:0;;;;-1:-1:-1;;;37587:51:0;;-1:-1:-1;;;;;37587:51:0;;;;;;;;-1:-1:-1;;;37587:51:0;;;;;;;;;;;;;;37659:759;;37711:14;;-1:-1:-1;;;;;37711:28:0;;37707:105;;37777:9;37350:1158;-1:-1:-1;;;37350:1158:0:o;37707:105::-;-1:-1:-1;;;38166:6:0;38213:17;;;;:11;:17;;;;;;;;;38201:29;;;;;;;;;-1:-1:-1;;;;;38201:29:0;;;;;-1:-1:-1;;;38201:29:0;;-1:-1:-1;;;;;38201:29:0;;;;;;;;-1:-1:-1;;;38201:29:0;;;;;;;;;;;;;38263:28;38259:113;;38333:9;37350:1158;-1:-1:-1;;;37350:1158:0:o;38259:113::-;38124:273;;;37566:869;37513:922;38467:31;;-1:-1:-1;;;38467:31:0;;;;;;;;;;;55726:114;55786:13;55821:9;55814:16;;;;;:::i;12416:191::-;12490:16;12509:6;;-1:-1:-1;;;;;12526:17:0;;;-1:-1:-1;;;;;;12526:17:0;;;;;;12559:40;;12509:6;;;;;;;12559:40;;12490:16;12559:40;12479:128;12416:191;:::o;65084:311::-;65198:7;65227;65247:9;65269;65311:19;65326:3;65311:14;:19::i;:::-;65358:27;;;;;;;;;;;;21459:25:1;;;21532:4;21520:17;;21500:18;;;21493:45;;;;21554:18;;;21547:34;;;21597:18;;;21590:34;;;65299:31:0;;-1:-1:-1;65299:31:0;;-1:-1:-1;65299:31:0;-1:-1:-1;65358:27:0;;21431:19:1;;65358:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;65358:27:0;;-1:-1:-1;;65358:27:0;;;65084:311;-1:-1:-1;;;;;;;65084:311:0:o;59600:103::-;59670:23;59680:3;59685:7;59670:9;:23::i;51227:701::-;51423:72;;-1:-1:-1;;;51423:72:0;;51400:4;;-1:-1:-1;;;;;51423:36:0;;;;;:72;;9950:10;;51474:4;;51480:7;;51489:5;;51423:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51423:72:0;;;;;;;;-1:-1:-1;;51423:72:0;;;;;;;;;;;;:::i;:::-;;;51419:500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51663:13:0;;51659:247;;51711:40;;-1:-1:-1;;;51711:40:0;;;;;;;;;;;51659:247;51860:6;51854:13;51845:6;51841:2;51837:15;51830:38;51419:500;-1:-1:-1;;;;;;51544:55:0;-1:-1:-1;;;51544:55:0;;-1:-1:-1;51227:701:0;;;;;;:::o;7432:723::-;7488:13;7709:10;7705:53;;-1:-1:-1;;7736:10:0;;;;;;;;;;;;-1:-1:-1;;;7736:10:0;;;;;7432:723::o;7705:53::-;7783:5;7768:12;7824:78;7831:9;;7824:78;;7857:8;;;;:::i;:::-;;-1:-1:-1;7880:10:0;;-1:-1:-1;7888:2:0;7880:10;;:::i;:::-;;;7824:78;;;7912:19;7944:6;-1:-1:-1;;;;;7934:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7934:17:0;;7912:39;;7962:154;7969:10;;7962:154;;7996:11;8006:1;7996:11;;:::i;:::-;;-1:-1:-1;8065:10:0;8073:2;8065:5;:10;:::i;:::-;8052:24;;:2;:24;:::i;:::-;8039:39;;8022:6;8029;8022:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8022:56:0;;;;;;;;-1:-1:-1;8093:11:0;8102:2;8093:11;;:::i;:::-;;;7962:154;;58629:917;58913:18;:25;58884:18;:25;:54;:109;;;;;58974:12;:19;58957:6;:13;:36;58884:109;58860:166;;;;-1:-1:-1;;;58860:166:0;;22702:2:1;58860:166:0;;;22684:21:1;22741:2;22721:18;;;22714:30;-1:-1:-1;;;22760:18:1;;;22753:46;22816:18;;58860:166:0;22500:340:1;58860:166:0;59047:9;59043:176;59063:18;:25;59060:1;:28;59043:176;;;59129:18;59148:1;59129:21;;;;;;;;:::i;:::-;;;;;;;59111:10;:15;59122:1;59124;59122:3;;;;:::i;:::-;59111:15;;;;;;;;;;;:39;;;;59184:18;59203:1;59184:21;;;;;;;;:::i;:::-;;;;;;;59167:9;:14;59177:1;59179;59177:3;;;;:::i;:::-;59167:14;;;;;;;;;;;-1:-1:-1;59167:14:0;:38;;-1:-1:-1;;;;;;59167:38:0;-1:-1:-1;;;;;59167:38:0;;;;;;;;;;59090:3;;;;:::i;:::-;;;;59043:176;;;-1:-1:-1;59250:25:0;;59231:16;:44;59296:9;59292:184;59312:6;:13;59309:1;:16;59292:184;;;59385:6;59392:1;59385:9;;;;;;;;:::i;:::-;;;;;;;59348:10;:34;59380:1;59359:16;;59377:1;59359:19;;;;:::i;:::-;:22;;;;:::i;:::-;59348:34;;;;;;;;;;;:46;;;;59447:12;59460:1;59447:15;;;;;;;;:::i;:::-;;;;;;;59411:9;:33;59442:1;59421:16;;59439:1;59421:19;;;;:::i;:::-;:22;;;;:::i;:::-;59411:33;;;;;;;;;;;-1:-1:-1;59411:33:0;:51;;-1:-1:-1;;;;;;59411:51:0;-1:-1:-1;;;;;59411:51:0;;;;;;;;;;59327:3;;;;:::i;:::-;;;;59292:184;;;;59523:6;:13;59504:16;;:32;;;;:::i;:::-;59488:13;:48;-1:-1:-1;;;;58629:917:0:o;65407:614::-;65505:5;65512:7;65521;65558:3;:10;65572:2;65558:16;65550:25;;;;;;-1:-1:-1;;;65772:2:0;65763:12;;65757:19;65846:2;65837:12;;65831:19;65957:2;65948:12;;;65942:19;65596:9;65934:28;;65757:19;;65831;65407:614::o;42707:108::-;42778:27;42788:2;42792:8;42778:27;;;;;;;;;;;;43335:32;43341:2;43345:8;43355:5;43362:4;43834:13;;-1:-1:-1;;;;;43864:16:0;;43860:48;;43889:19;;-1:-1:-1;;;43889:19:0;;;;;;;;;;;43860:48;43925:13;43921:44;;43947:18;;-1:-1:-1;;;43947:18:0;;;;;;;;;;;43921:44;-1:-1:-1;;;;;44332:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;44393:49:0;;-1:-1:-1;;;;;44332:44:0;;;;;;;44393:49;;;;-1:-1:-1;;44332:44:0;;;;;;44393:49;;;;;;;;;;;;;;;;44463:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;44515:66:0;;;;-1:-1:-1;;;44565:15:0;44515:66;;;;;;;;;;44463:25;44668:23;;;44716:4;:23;;;;-1:-1:-1;;;;;;44724:13:0;;13757:20;13805:8;;44724:15;44712:667;;;44762:324;44795:38;;44820:12;;-1:-1:-1;;;;;44795:38:0;;;44812:1;;44795:38;;44812:1;;44795:38;44863:69;44902:1;44906:2;44910:14;;;;;;44926:5;44863:30;:69::i;:::-;44858:178;;44970:40;;-1:-1:-1;;;44970:40:0;;;;;;;;;;;44858:178;45081:3;45065:12;:19;;44762:324;;45171:12;45154:13;;:29;45150:43;;45185:8;;;45150:43;44712:667;;;45238:124;45271:40;;45296:14;;;;;-1:-1:-1;;;;;45271:40:0;;;45288:1;;45271:40;;45288:1;;45271:40;45357:3;45341:12;:19;;45238:124;;44712:667;-1:-1:-1;45395:13:0;:28;45449:60;41840:389;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:131::-;-1:-1:-1;;;;;667:31:1;;657:42;;647:70;;713:1;710;703:12;728:247;787:6;840:2;828:9;819:7;815:23;811:32;808:52;;;856:1;853;846:12;808:52;895:9;882:23;914:31;939:5;914:31;:::i;1162:258::-;1234:1;1244:113;1258:6;1255:1;1252:13;1244:113;;;1334:11;;;1328:18;1315:11;;;1308:39;1280:2;1273:10;1244:113;;;1375:6;1372:1;1369:13;1366:48;;;-1:-1:-1;;1410:1:1;1392:16;;1385:27;1162:258::o;1425:::-;1467:3;1505:5;1499:12;1532:6;1527:3;1520:19;1548:63;1604:6;1597:4;1592:3;1588:14;1581:4;1574:5;1570:16;1548:63;:::i;:::-;1665:2;1644:15;-1:-1:-1;;1640:29:1;1631:39;;;;1672:4;1627:50;;1425:258;-1:-1:-1;;1425:258:1:o;1688:220::-;1837:2;1826:9;1819:21;1800:4;1857:45;1898:2;1887:9;1883:18;1875:6;1857:45;:::i;1913:180::-;1972:6;2025:2;2013:9;2004:7;2000:23;1996:32;1993:52;;;2041:1;2038;2031:12;1993:52;-1:-1:-1;2064:23:1;;1913:180;-1:-1:-1;1913:180:1:o;2306:315::-;2374:6;2382;2435:2;2423:9;2414:7;2410:23;2406:32;2403:52;;;2451:1;2448;2441:12;2403:52;2490:9;2477:23;2509:31;2534:5;2509:31;:::i;:::-;2559:5;2611:2;2596:18;;;;2583:32;;-1:-1:-1;;;2306:315:1:o;2626:456::-;2703:6;2711;2719;2772:2;2760:9;2751:7;2747:23;2743:32;2740:52;;;2788:1;2785;2778:12;2740:52;2827:9;2814:23;2846:31;2871:5;2846:31;:::i;:::-;2896:5;-1:-1:-1;2953:2:1;2938:18;;2925:32;2966:33;2925:32;2966:33;:::i;:::-;2626:456;;3018:7;;-1:-1:-1;;;3072:2:1;3057:18;;;;3044:32;;2626:456::o;3087:127::-;3148:10;3143:3;3139:20;3136:1;3129:31;3179:4;3176:1;3169:15;3203:4;3200:1;3193:15;3219:275;3290:2;3284:9;3355:2;3336:13;;-1:-1:-1;;3332:27:1;3320:40;;-1:-1:-1;;;;;3375:34:1;;3411:22;;;3372:62;3369:88;;;3437:18;;:::i;:::-;3473:2;3466:22;3219:275;;-1:-1:-1;3219:275:1:o;3499:407::-;3564:5;-1:-1:-1;;;;;3590:6:1;3587:30;3584:56;;;3620:18;;:::i;:::-;3658:57;3703:2;3682:15;;-1:-1:-1;;3678:29:1;3709:4;3674:40;3658:57;:::i;:::-;3649:66;;3738:6;3731:5;3724:21;3778:3;3769:6;3764:3;3760:16;3757:25;3754:45;;;3795:1;3792;3785:12;3754:45;3844:6;3839:3;3832:4;3825:5;3821:16;3808:43;3898:1;3891:4;3882:6;3875:5;3871:18;3867:29;3860:40;3499:407;;;;;:::o;3911:451::-;3980:6;4033:2;4021:9;4012:7;4008:23;4004:32;4001:52;;;4049:1;4046;4039:12;4001:52;4089:9;4076:23;-1:-1:-1;;;;;4114:6:1;4111:30;4108:50;;;4154:1;4151;4144:12;4108:50;4177:22;;4230:4;4222:13;;4218:27;-1:-1:-1;4208:55:1;;4259:1;4256;4249:12;4208:55;4282:74;4348:7;4343:2;4330:16;4325:2;4321;4317:11;4282:74;:::i;4367:221::-;4409:5;4462:3;4455:4;4447:6;4443:17;4439:27;4429:55;;4480:1;4477;4470:12;4429:55;4502:80;4578:3;4569:6;4556:20;4549:4;4541:6;4537:17;4502:80;:::i;4593:388::-;4670:6;4678;4731:2;4719:9;4710:7;4706:23;4702:32;4699:52;;;4747:1;4744;4737:12;4699:52;4783:9;4770:23;4760:33;;4844:2;4833:9;4829:18;4816:32;-1:-1:-1;;;;;4863:6:1;4860:30;4857:50;;;4903:1;4900;4893:12;4857:50;4926:49;4967:7;4958:6;4947:9;4943:22;4926:49;:::i;:::-;4916:59;;;4593:388;;;;;:::o;4986:416::-;5051:6;5059;5112:2;5100:9;5091:7;5087:23;5083:32;5080:52;;;5128:1;5125;5118:12;5080:52;5167:9;5154:23;5186:31;5211:5;5186:31;:::i;:::-;5236:5;-1:-1:-1;5293:2:1;5278:18;;5265:32;5335:15;;5328:23;5316:36;;5306:64;;5366:1;5363;5356:12;5306:64;5389:7;5379:17;;;4986:416;;;;;:::o;5407:456::-;5493:6;5501;5509;5562:2;5550:9;5541:7;5537:23;5533:32;5530:52;;;5578:1;5575;5568:12;5530:52;5614:9;5601:23;5591:33;;5671:2;5660:9;5656:18;5643:32;5633:42;;5726:2;5715:9;5711:18;5698:32;-1:-1:-1;;;;;5745:6:1;5742:30;5739:50;;;5785:1;5782;5775:12;5739:50;5808:49;5849:7;5840:6;5829:9;5825:22;5808:49;:::i;:::-;5798:59;;;5407:456;;;;;:::o;5868:665::-;5963:6;5971;5979;5987;6040:3;6028:9;6019:7;6015:23;6011:33;6008:53;;;6057:1;6054;6047:12;6008:53;6096:9;6083:23;6115:31;6140:5;6115:31;:::i;:::-;6165:5;-1:-1:-1;6222:2:1;6207:18;;6194:32;6235:33;6194:32;6235:33;:::i;:::-;6287:7;-1:-1:-1;6341:2:1;6326:18;;6313:32;;-1:-1:-1;6396:2:1;6381:18;;6368:32;-1:-1:-1;;;;;6412:30:1;;6409:50;;;6455:1;6452;6445:12;6409:50;6478:49;6519:7;6510:6;6499:9;6495:22;6478:49;:::i;:::-;6468:59;;;5868:665;;;;;;;:::o;6538:388::-;6606:6;6614;6667:2;6655:9;6646:7;6642:23;6638:32;6635:52;;;6683:1;6680;6673:12;6635:52;6722:9;6709:23;6741:31;6766:5;6741:31;:::i;:::-;6791:5;-1:-1:-1;6848:2:1;6833:18;;6820:32;6861:33;6820:32;6861:33;:::i;6931:183::-;6991:4;-1:-1:-1;;;;;7016:6:1;7013:30;7010:56;;;7046:18;;:::i;:::-;-1:-1:-1;7091:1:1;7087:14;7103:4;7083:25;;6931:183::o;7119:662::-;7173:5;7226:3;7219:4;7211:6;7207:17;7203:27;7193:55;;7244:1;7241;7234:12;7193:55;7280:6;7267:20;7306:4;7330:60;7346:43;7386:2;7346:43;:::i;:::-;7330:60;:::i;:::-;7424:15;;;7510:1;7506:10;;;;7494:23;;7490:32;;;7455:12;;;;7534:15;;;7531:35;;;7562:1;7559;7552:12;7531:35;7598:2;7590:6;7586:15;7610:142;7626:6;7621:3;7618:15;7610:142;;;7692:17;;7680:30;;7730:12;;;;7643;;7610:142;;;-1:-1:-1;7770:5:1;7119:662;-1:-1:-1;;;;;;7119:662:1:o;7786:737::-;7840:5;7893:3;7886:4;7878:6;7874:17;7870:27;7860:55;;7911:1;7908;7901:12;7860:55;7947:6;7934:20;7973:4;7997:60;8013:43;8053:2;8013:43;:::i;7997:60::-;8091:15;;;8177:1;8173:10;;;;8161:23;;8157:32;;;8122:12;;;;8201:15;;;8198:35;;;8229:1;8226;8219:12;8198:35;8265:2;8257:6;8253:15;8277:217;8293:6;8288:3;8285:15;8277:217;;;8373:3;8360:17;8390:31;8415:5;8390:31;:::i;:::-;8434:18;;8472:12;;;;8310;;8277:217;;8528:1048;8714:6;8722;8730;8738;8791:3;8779:9;8770:7;8766:23;8762:33;8759:53;;;8808:1;8805;8798:12;8759:53;8848:9;8835:23;-1:-1:-1;;;;;8918:2:1;8910:6;8907:14;8904:34;;;8934:1;8931;8924:12;8904:34;8957:61;9010:7;9001:6;8990:9;8986:22;8957:61;:::i;:::-;8947:71;;9071:2;9060:9;9056:18;9043:32;9027:48;;9100:2;9090:8;9087:16;9084:36;;;9116:1;9113;9106:12;9084:36;9139:63;9194:7;9183:8;9172:9;9168:24;9139:63;:::i;:::-;9129:73;;9255:2;9244:9;9240:18;9227:32;9211:48;;9284:2;9274:8;9271:16;9268:36;;;9300:1;9297;9290:12;9268:36;9323:63;9378:7;9367:8;9356:9;9352:24;9323:63;:::i;:::-;9313:73;;9439:2;9428:9;9424:18;9411:32;9395:48;;9468:2;9458:8;9455:16;9452:36;;;9484:1;9481;9474:12;9452:36;;9507:63;9562:7;9551:8;9540:9;9536:24;9507:63;:::i;9581:595::-;9699:6;9707;9760:2;9748:9;9739:7;9735:23;9731:32;9728:52;;;9776:1;9773;9766:12;9728:52;9816:9;9803:23;-1:-1:-1;;;;;9886:2:1;9878:6;9875:14;9872:34;;;9902:1;9899;9892:12;9872:34;9925:61;9978:7;9969:6;9958:9;9954:22;9925:61;:::i;:::-;9915:71;;10039:2;10028:9;10024:18;10011:32;9995:48;;10068:2;10058:8;10055:16;10052:36;;;10084:1;10081;10074:12;10052:36;;10107:63;10162:7;10151:8;10140:9;10136:24;10107:63;:::i;10181:380::-;10260:1;10256:12;;;;10303;;;10324:61;;10378:4;10370:6;10366:17;10356:27;;10324:61;10431:2;10423:6;10420:14;10400:18;10397:38;10394:161;;;10477:10;10472:3;10468:20;10465:1;10458:31;10512:4;10509:1;10502:15;10540:4;10537:1;10530:15;10394:161;;10181:380;;;:::o;10566:356::-;10768:2;10750:21;;;10787:18;;;10780:30;10846:34;10841:2;10826:18;;10819:62;10913:2;10898:18;;10566:356::o;10927:127::-;10988:10;10983:3;10979:20;10976:1;10969:31;11019:4;11016:1;11009:15;11043:4;11040:1;11033:15;11059:128;11099:3;11130:1;11126:6;11123:1;11120:13;11117:39;;;11136:18;;:::i;:::-;-1:-1:-1;11172:9:1;;11059:128::o;11192:135::-;11231:3;-1:-1:-1;;11252:17:1;;11249:43;;;11272:18;;:::i;:::-;-1:-1:-1;11319:1:1;11308:13;;11192:135::o;11332:125::-;11372:4;11400:1;11397;11394:8;11391:34;;;11405:18;;:::i;:::-;-1:-1:-1;11442:9:1;;11332:125::o;12978:402::-;13180:2;13162:21;;;13219:2;13199:18;;;13192:30;13258:34;13253:2;13238:18;;13231:62;-1:-1:-1;;;13324:2:1;13309:18;;13302:36;13370:3;13355:19;;12978:402::o;13385:408::-;13587:2;13569:21;;;13626:2;13606:18;;;13599:30;13665:34;13660:2;13645:18;;13638:62;-1:-1:-1;;;13731:2:1;13716:18;;13709:42;13783:3;13768:19;;13385:408::o;15079:410::-;15281:2;15263:21;;;15320:2;15300:18;;;15293:30;15359:34;15354:2;15339:18;;15332:62;-1:-1:-1;;;15425:2:1;15410:18;;15403:44;15479:3;15464:19;;15079:410::o;15494:168::-;15534:7;15600:1;15596;15592:6;15588:14;15585:1;15582:21;15577:1;15570:9;15563:17;15559:45;15556:71;;;15607:18;;:::i;:::-;-1:-1:-1;15647:9:1;;15494:168::o;15667:397::-;15869:2;15851:21;;;15908:2;15888:18;;;15881:30;15947:34;15942:2;15927:18;;15920:62;-1:-1:-1;;;16013:2:1;15998:18;;15991:31;16054:3;16039:19;;15667:397::o;17321:1527::-;17545:3;17583:6;17577:13;17609:4;17622:51;17666:6;17661:3;17656:2;17648:6;17644:15;17622:51;:::i;:::-;17736:13;;17695:16;;;;17758:55;17736:13;17695:16;17780:15;;;17758:55;:::i;:::-;17902:13;;17835:20;;;17875:1;;17962;17984:18;;;;18037;;;;18064:93;;18142:4;18132:8;18128:19;18116:31;;18064:93;18205:2;18195:8;18192:16;18172:18;18169:40;18166:167;;;-1:-1:-1;;;18232:33:1;;18288:4;18285:1;18278:15;18318:4;18239:3;18306:17;18166:167;18349:18;18376:110;;;;18500:1;18495:328;;;;18342:481;;18376:110;-1:-1:-1;;18411:24:1;;18397:39;;18456:20;;;;-1:-1:-1;18376:110:1;;18495:328;17268:1;17261:14;;;17305:4;17292:18;;18590:1;18604:169;18618:8;18615:1;18612:15;18604:169;;;18700:14;;18685:13;;;18678:37;18743:16;;;;18635:10;;18604:169;;;18608:3;;18804:8;18797:5;18793:20;18786:27;;18342:481;-1:-1:-1;18839:3:1;;17321:1527;-1:-1:-1;;;;;;;;;;;17321:1527:1:o;18853:280::-;18952:6;19005:2;18993:9;18984:7;18980:23;18976:32;18973:52;;;19021:1;19018;19011:12;18973:52;19053:9;19047:16;19072:31;19097:5;19072:31;:::i;19890:127::-;19951:10;19946:3;19942:20;19939:1;19932:31;19982:4;19979:1;19972:15;20006:4;20003:1;19996:15;20380:127;20441:10;20436:3;20432:20;20429:1;20422:31;20472:4;20469:1;20462:15;20496:4;20493:1;20486:15;20512:120;20552:1;20578;20568:35;;20583:18;;:::i;:::-;-1:-1:-1;20617:9:1;;20512:120::o;21635:489::-;-1:-1:-1;;;;;21904:15:1;;;21886:34;;21956:15;;21951:2;21936:18;;21929:43;22003:2;21988:18;;21981:34;;;22051:3;22046:2;22031:18;;22024:31;;;21829:4;;22072:46;;22098:19;;22090:6;22072:46;:::i;:::-;22064:54;21635:489;-1:-1:-1;;;;;;21635:489:1:o;22129:249::-;22198:6;22251:2;22239:9;22230:7;22226:23;22222:32;22219:52;;;22267:1;22264;22257:12;22219:52;22299:9;22293:16;22318:30;22342:5;22318:30;:::i;22383:112::-;22415:1;22441;22431:35;;22446:18;;:::i;:::-;-1:-1:-1;22480:9:1;;22383:112::o

Swarm Source

ipfs://171fe0e29eb7be12c8630359e76315908df1992375e046bceb7ffb09e542ef88
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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