ETH Price: $2,491.09 (-1.19%)

Token

Goat Gauds (GG)
 

Overview

Max Total Supply

953 GG

Holders

164

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
fthesystem.eth
Balance
2 GG
0x7a8f1Ff923FA192794408B0Ad898499b0f6D5E6B
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Goat Gauds by John Born is an ERC-721 NFT collection of 2,222 goats. Collection consists of generative and unique 1/1 pieces of artwork by a collective of artists. Participating artists may provide unique utility to holders of 1/1 tokens.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
_goatgauds

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/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: contracts/Blimpie/IERC721Batch.sol



pragma solidity ^0.8.0;

interface IERC721Batch {
  function isOwnerOf( address account, uint[] calldata tokenIds ) external view returns( bool );
  function transferBatch( address from, address to, uint[] calldata tokenIds, bytes calldata data ) external;
  function walletOfOwner( address account ) external view returns( uint[] memory );
}
// 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: @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: contracts/Blimpie/PaymentSplitterMod.sol



pragma solidity ^0.8.0;




/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitterMod is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];
        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    function _addPayee(address account, uint256 shares_) internal {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }

    function _setPayee( uint index, address account, uint newShares ) internal {
        _totalShares = _totalShares - _shares[ account ] + newShares;
        _shares[ account ] = newShares;
        _payees[ index ] = account;
    }
}
// File: contracts/Blimpie/ERC721B.sol



pragma solidity ^0.8.0;

/****************************************
 * @author: squeebo_nft                 *
 * @team:   GoldenX                     *
 ****************************************
 *   Blimpie-ERC721 provides low-gas    *
 *           mints + transfers          *
 ****************************************/







abstract contract ERC721B is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;

    string private _name;
    string private _symbol;

    uint internal _burned;
    uint internal _offset;
    address[] internal _owners;

    mapping(uint => address) internal _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_, uint offset) {
        _name = name_;
        _symbol = symbol_;
        _offset = offset;
        for(uint i; i < _offset; ++i ){
            _owners.push(address(0));
        }
    }

    //public
    function balanceOf(address owner) public view virtual override returns (uint) {
        require(owner != address(0), "ERC721: balance query for the zero address");

        uint count;
        for( uint i; i < _owners.length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        return count;
    }

    function name() external view virtual override returns (string memory) {
        return _name;
    }

    function ownerOf(uint tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

    function symbol() external view virtual override returns (string memory) {
        return _symbol;
    }

    function totalSupply() public view virtual returns (uint) {
        return _owners.length - (_offset + _burned);
    }


    function approve(address to, uint tokenId) external virtual override {
        address owner = ERC721B.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

    function getApproved(uint tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");
        return _tokenApprovals[tokenId];
    }

    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    function setApprovalForAll(address operator, bool approved) external virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");
        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    function safeTransferFrom(
        address from,
        address to,
        uint tokenId
    ) external virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    function safeTransferFrom(
        address from,
        address to,
        uint tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }


    //internal
    function _approve(address to, uint tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721B.ownerOf(tokenId), to, tokenId);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint tokenId
    ) internal virtual {}

    function _burn(uint tokenId) internal virtual {
        address owner = ERC721B.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

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

    function _checkOnERC721Received(
        address from,
        address to,
        uint tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    function _exists(uint tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    function _isApprovedOrOwner(address spender, uint tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721B.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    function _mint(address to, uint tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);
        _owners.push(to);

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

    function _next() internal view virtual returns( uint ){
        return _owners.length;
    }

    function _safeMint(address to, uint tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    function _safeMint(
        address to,
        uint tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    function _safeTransfer(
        address from,
        address to,
        uint tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    function _transfer(
        address from,
        address to,
        uint tokenId
    ) internal virtual {
        require(ERC721B.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
}
// File: contracts/Blimpie/ERC721EnumerableLite.sol



pragma solidity ^0.8.0;

/****************************************
 * @author: squeebo_nft                 *
 ****************************************
 *   Blimpie-ERC721 provides low-gas    *
 *           mints + transfers          *
 ****************************************/




abstract contract ERC721EnumerableLite is ERC721B, IERC721Batch, IERC721Enumerable {
    mapping(address => uint) internal _balances;

    function isOwnerOf( address account, uint[] calldata tokenIds ) external view virtual override returns( bool ){
        for(uint i; i < tokenIds.length; ++i ){
            if( _owners[ tokenIds[i] ] != account )
                return false;
        }

        return true;
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721B) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    function tokenOfOwnerByIndex(address owner, uint index) public view override returns (uint tokenId) {
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }

    function tokenByIndex(uint index) external view virtual override returns (uint) {
        require(index < totalSupply(), "ERC721Enumerable: global index out of bounds");
        return index;
    }

    function totalSupply() public view virtual override( ERC721B, IERC721Enumerable ) returns (uint) {
        return _owners.length - (_offset + _burned);
    }

    function transferBatch( address from, address to, uint[] calldata tokenIds, bytes calldata data ) external override{
        for(uint i; i < tokenIds.length; ++i ){
            safeTransferFrom( from, to, tokenIds[i], data );
        }
    }

    function walletOfOwner( address account ) external view virtual override returns( uint[] memory ){
        uint quantity = balanceOf( account );
        uint[] memory wallet = new uint[]( quantity );
        for( uint i; i < quantity; ++i ){
            wallet[i] = tokenOfOwnerByIndex( account, i );
        }
        return wallet;
    }
}
// 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: contracts/Blimpie/Delegated.sol



pragma solidity ^0.8.0;

/***********************
* @author: squeebo_nft *
************************/


contract Delegated is Ownable{
  mapping(address => bool) internal _delegates;

  constructor(){
    _delegates[owner()] = true;
  }

  modifier onlyDelegates {
    require(_delegates[msg.sender], "Invalid delegate" );
    _;
  }

  //onlyOwner
  function isDelegate( address addr ) external view onlyOwner returns ( bool ){
    return _delegates[addr];
  }

  function setDelegate( address addr, bool isDelegate_ ) external onlyOwner{
    _delegates[addr] = isDelegate_;
  }

  function transferOwnership(address newOwner) public virtual override onlyOwner {
    _delegates[newOwner] = true;
    super.transferOwnership( newOwner );
  }
}
// File: contracts/goadgauds.sol



pragma solidity ^0.8.0;





contract _goatgauds is Delegated, ERC721EnumerableLite, PaymentSplitterMod {
  using Strings for uint;

  uint public MAX_ORDER      = 2;
  uint public MAX_SUPPLY     = 2222;
  uint public MAINSALE_PRICE = 0.125 ether;
  uint public PRESALE_PRICE  = 0.1 ether;

  bool public isMintActive   = false;
  bool public isPresaleActive   = false;
  mapping(address=>uint) public accessList;

  string private _tokenURIPrefix = '';
  string private _tokenURISuffix = '';

  address[] private addressList = [
    0xF5c774b504C1D82fb59e3B826555D67033A13b01,
    0x7Cf39e8D6F6f9F25E925Dad7EB371276231780d7,
    0xC02Dd50b25364e747410730A1df9B72A92C3C68B,
    0x286777D6ad08EbE395C377078a17a32c21564a8a,
    0x00eCb19318d98ff57173Ac8EdFb7a5D90ba2005d,
    0x2E169A7c3D8EBeC11D5b43Dade06Ac29FEf59cb3,
    0x693B22BB92727Fb2a9a4D7e1b1D65B3E8168B774
  ];

  uint[] private shareList = [
    5,
    5,
    5,
    5,
    30,
    25,
    25
  ];

  constructor()
    Delegated()
    ERC721B("Goat Gauds", "GG", 0)
    PaymentSplitterMod( addressList, shareList ){
  }

  //public view
  fallback() external payable {}

  function tokenURI(uint tokenId) external view override returns (string memory) {
    require(_exists(tokenId), "Query for nonexistent token");
    return string(abi.encodePacked(_tokenURIPrefix, tokenId.toString(), _tokenURISuffix));
  }


  //public payable
  function presale( uint quantity ) external payable {
    require( isPresaleActive,               "Presale is not active"     );
    require( quantity <= MAX_ORDER,         "Order too big"             );
    require( msg.value >= PRESALE_PRICE * quantity, "Ether sent is not correct" );
    require( accessList[msg.sender] > 0,    "Not authorized"            );

    uint supply = totalSupply();
    require( supply + quantity <= MAX_SUPPLY, "Mint/order exceeds supply" );
    accessList[msg.sender] -= quantity;

    for(uint i; i < quantity; ++i){
      _mint( msg.sender, supply++ );
    }
  }

  function mint( uint quantity ) external payable {
    require( isMintActive,                  "Sale is not active"        );
    require( quantity <= MAX_ORDER,         "Order too big"             );
    require( msg.value >= MAINSALE_PRICE * quantity, "Ether sent is not correct" );

    uint supply = totalSupply();
    require( supply + quantity <= MAX_SUPPLY, "Mint/order exceeds supply" );
    for(uint i; i < quantity; ++i){
      _mint( msg.sender, supply++ );
    }
  }


  //delegated payable
  function burnFrom( address owner, uint[] calldata tokenIds ) external payable onlyDelegates{
    for(uint i; i < tokenIds.length; ++i ){
      require( _exists( tokenIds[i] ), "Burn for nonexistent token" );
      require( _owners[ tokenIds[i] ] == owner, "Owner mismatch" );
      _burn( tokenIds[i] );
    }
  }

  function mintTo(uint[] calldata quantity, address[] calldata recipient) external payable onlyDelegates{
    require(quantity.length == recipient.length, "Must provide equal quantities and recipients" );

    uint totalQuantity;
    uint supply = totalSupply();
    for(uint i; i < quantity.length; ++i){
      totalQuantity += quantity[i];
    }
    require( supply + totalQuantity <= MAX_SUPPLY, "Mint/order exceeds supply" );

    for(uint i; i < recipient.length; ++i){
      for(uint j; j < quantity[i]; ++j){
        _mint( recipient[i], supply++ );
      }
    }
  }


  //delegated nonpayable
  function resurrect( uint[] calldata tokenIds, address[] calldata recipients ) external onlyDelegates{
    require(tokenIds.length == recipients.length,   "Must provide equal tokenIds and recipients" );

    address to;
    uint tokenId;
    address zero = address(0);
    for(uint i; i < tokenIds.length; ++i ){
      to = recipients[i];
      require(recipients[i] != address(0), "resurrect to the zero address" );

      tokenId = tokenIds[i];
      require( !_exists( tokenId ), "can't resurrect existing token" );

      
      _owners[tokenId] = to;
      // Clear approvals
      _approve(zero, tokenId);
      emit Transfer(zero, to, tokenId);
    }
  }

  function setAccessList(address[] calldata accounts, uint[] calldata quantities) external onlyDelegates{
    require(accounts.length == quantities.length, "Must provide equal accounts and quantities" );
    for(uint i; i < accounts.length; ++i){
      accessList[ accounts[i] ] = quantities[i];
    }
  }

  function setActive(bool isPresaleActive_, bool isMintActive_) external onlyDelegates{
    require( isPresaleActive != isPresaleActive_ || isMintActive != isMintActive_, "New value matches old" );
    isPresaleActive = isPresaleActive_;
    isMintActive = isMintActive_;
  }

  function setBaseURI(string calldata newPrefix, string calldata newSuffix) external onlyDelegates{
    _tokenURIPrefix = newPrefix;
    _tokenURISuffix = newSuffix;
  }

  function setMax(uint maxOrder, uint maxSupply) external onlyDelegates{
    require( MAX_ORDER != maxOrder || MAX_SUPPLY != maxSupply, "New value matches old" );
    require(maxSupply >= totalSupply(), "Specified supply is lower than current balance" );
    MAX_ORDER = maxOrder;
    MAX_SUPPLY = maxSupply;
  }

  function setPrice(uint presalePrice, uint mainsalePrice ) external onlyDelegates{
    require( PRESALE_PRICE != presalePrice || MAINSALE_PRICE != mainsalePrice, "New value matches old" );
    PRESALE_PRICE = presalePrice;
    MAINSALE_PRICE = mainsalePrice;
  }


  //owner
  function addPayee(address account, uint256 shares_) external onlyOwner {
    _addPayee(account, shares_);
  }

  function setPayee( uint index, address account, uint newShares ) external onlyOwner {
    _setPayee(index, account, newShares);
  }


  //internal
  function _burn(uint tokenId) internal override {
    address curOwner = ERC721B.ownerOf(tokenId);

    // Clear approvals
    _approve(owner(), tokenId);
    _owners[tokenId] = address(0);
    emit Transfer(curOwner, address(0), tokenId);
  }

  function _mint(address to, uint tokenId) internal override {
    _owners.push(to);
    emit Transfer(address(0), to, tokenId);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"MAINSALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ORDER","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":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"accessList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"shares_","type":"uint256"}],"name":"addPayee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"burnFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isDelegate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"mintTo","outputs":[],"stateMutability":"payable","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":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"resurrect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"setAccessList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isPresaleActive_","type":"bool"},{"internalType":"bool","name":"isMintActive_","type":"bool"}],"name":"setActive","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":"newPrefix","type":"string"},{"internalType":"string","name":"newSuffix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"isDelegate_","type":"bool"}],"name":"setDelegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxOrder","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"newShares","type":"uint256"}],"name":"setPayee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"presalePrice","type":"uint256"},{"internalType":"uint256","name":"mainsalePrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6002600f556108ae6010556701bc16d674ec800060115567016345785d8a00006012556013805461ffff1916905560a06040819052600060808190526200004991601591620006ef565b506040805160208101918290526000908190526200006a91601691620006ef565b506040805160e08101825273f5c774b504c1d82fb59e3b826555d67033a13b018152737cf39e8d6f6f9f25e925dad7eb371276231780d7602082015273c02dd50b25364e747410730a1df9b72a92c3c68b9181019190915273286777d6ad08ebe395c377078a17a32c21564a8a606082015272ecb19318d98ff57173ac8edfb7a5d90ba2005d6080820152732e169a7c3d8ebec11d5b43dade06ac29fef59cb360a082015273693b22bb92727fb2a9a4d7e1b1d65b3e8168b77460c0820152620001399060179060076200077e565b506040805160e0810182526005808252602082018190529181018290526060810191909152601e6080820152601960a0820181905260c082015262000183906018906007620007d6565b503480156200019157600080fd5b506017805480602002602001604051908101604052809291908181526020018280548015620001ea57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620001cb575b505050505060188054806020026020016040519081016040528092919081815260200182805480156200023d57602002820191906000526020600020905b81548152602001906001019080831162000228575b50505050506040518060400160405280600a815260200169476f617420476175647360b01b81525060405180604001604052806002815260200161474760f01b81525060006200029c62000296620004ad60201b60201c565b620004b1565b6001806000620002b46000546001600160a01b031690565b6001600160a01b03168152602080820192909252604001600020805460ff1916921515929092179091558351620002f29160029190860190620006ef565b50815162000308906003906020850190620006ef565b50600581905560005b6005548110156200036f57600680546001810182556000919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319169055620003678162000888565b905062000311565b505050508051825114620003e55760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620004385760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f207061796565730000000000006044820152606401620003dc565b60005b8251811015620004a4576200048f8382815181106200045e576200045e620008bc565b60200260200101518383815181106200047b576200047b620008bc565b60200260200101516200050160201b60201c565b806200049b8162000888565b9150506200043b565b505050620008d2565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200056e5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b6064820152608401620003dc565b60008111620005c05760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a207368617265732061726520300000006044820152606401620003dc565b6001600160a01b0382166000908152600c6020526040902054156200063c5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b6064820152608401620003dc565b600e8054600181019091557fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319166001600160a01b0384169081179091556000908152600c60205260409020819055600a54620006a690829062000830565b600a55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054620006fd906200084b565b90600052602060002090601f0160209004810192826200072157600085556200076c565b82601f106200073c57805160ff19168380011785556200076c565b828001600101855582156200076c579182015b828111156200076c5782518255916020019190600101906200074f565b506200077a92915062000819565b5090565b8280548282559060005260206000209081019282156200076c579160200282015b828111156200076c57825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200079f565b8280548282559060005260206000209081019282156200076c579160200282015b828111156200076c578251829060ff16905591602001919060010190620007f7565b5b808211156200077a57600081556001016200081a565b60008219821115620008465762000846620008a6565b500190565b600181811c908216806200086057607f821691505b602082108114156200088257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200089f576200089f620008a6565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6135eb80620008e26000396000f3fe6080604052600436106102975760003560e01c806370a0823111610166578063b294faec116100d3578063df2388001161008f578063e966d5121161006c578063e966d51214610876578063e985e9c514610889578063f2fde38b146108d2578063f7d97577146108f257005b8063df2388001461082e578063e33b7de31461084e578063e6ab14341461086357005b8063b294faec14610762578063b534a5c414610778578063b88d4fde14610798578063bb39e029146107b8578063c87b56dd146107d8578063ce7c2ac2146107f857005b80638b83209b116101225780638b83209b146106a65780638da5cb5b146106c657806395d89b41146106e45780639852595c146106f9578063a0712d681461072f578063a22cb4651461074257005b806370a08231146105f1578063715018a6146106115780637e91b36f146106265780637f608d031461064657806387a5b67c1461066657806389af61071461069357005b80633b91ceef1161020457806350c5a00c116101c057806350c5a00c1461054c5780635b92ac0d1461056257806360d938dc1461057c57806362dc6e211461059b5780636352211e146105b15780636790a9de146105d157005b80633b91ceef1461047f57806342842e0e1461049f578063438b6300146104bf5780634a994eef146104ec5780634d44660c1461050c5780634f6ccce71461052c57005b806318f9b0231161025357806318f9b023146103d457806319165587146103f457806323b872dd146104145780632f745c591461043457806332cb6b0c146104545780633a98ef391461046a57005b806301ffc9a7146102e257806306fdde03146103175780630777962714610339578063081812fc14610359578063095ea7b31461039157806318160ddd146103b157005b366102e0577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b005b3480156102ee57600080fd5b506103026102fd366004613029565b610912565b60405190151581526020015b60405180910390f35b34801561032357600080fd5b5061032c61093d565b60405161030e919061329f565b34801561034557600080fd5b50610302610354366004612cdf565b6109cf565b34801561036557600080fd5b506103796103743660046130c3565b610a26565b6040516001600160a01b03909116815260200161030e565b34801561039d57600080fd5b506102e06103ac366004612f75565b610aae565b3480156103bd57600080fd5b506103c6610bc4565b60405190815260200161030e565b3480156103e057600080fd5b506102e06103ef366004612f75565b610be8565b34801561040057600080fd5b506102e061040f366004612cdf565b610c20565b34801561042057600080fd5b506102e061042f366004612dca565b610df1565b34801561044057600080fd5b506103c661044f366004612f75565b610e22565b34801561046057600080fd5b506103c660105481565b34801561047657600080fd5b50600a546103c6565b34801561048b57600080fd5b506102e061049a366004613103565b610eee565b3480156104ab57600080fd5b506102e06104ba366004612dca565b610fc5565b3480156104cb57600080fd5b506104df6104da366004612cdf565b610fe0565b60405161030e919061325b565b3480156104f857600080fd5b506102e0610507366004612f40565b611080565b34801561051857600080fd5b50610302610527366004612eeb565b6110d5565b34801561053857600080fd5b506103c66105473660046130c3565b611157565b34801561055857600080fd5b506103c6600f5481565b34801561056e57600080fd5b506013546103029060ff1681565b34801561058857600080fd5b5060135461030290610100900460ff1681565b3480156105a757600080fd5b506103c660125481565b3480156105bd57600080fd5b506103796105cc3660046130c3565b6111c8565b3480156105dd57600080fd5b506102e06105ec366004613063565b611254565b3480156105fd57600080fd5b506103c661060c366004612cdf565b6112a3565b34801561061d57600080fd5b506102e0611371565b34801561063257600080fd5b506102e0610641366004612fa1565b6113a7565b34801561065257600080fd5b506102e061066136600461300d565b6114b1565b34801561067257600080fd5b506103c6610681366004612cdf565b60146020526000908152604090205481565b6102e06106a1366004612eeb565b611546565b3480156106b257600080fd5b506103796106c13660046130c3565b6116ac565b3480156106d257600080fd5b506000546001600160a01b0316610379565b3480156106f057600080fd5b5061032c6116dc565b34801561070557600080fd5b506103c6610714366004612cdf565b6001600160a01b03166000908152600d602052604090205490565b6102e061073d3660046130c3565b6116eb565b34801561074e57600080fd5b506102e061075d366004612f40565b611835565b34801561076e57600080fd5b506103c660115481565b34801561078457600080fd5b506102e0610793366004612d35565b6118fa565b3480156107a457600080fd5b506102e06107b3366004612e0b565b611978565b3480156107c457600080fd5b506102e06107d3366004612fa1565b6119aa565b3480156107e457600080fd5b5061032c6107f33660046130c3565b611bf9565b34801561080457600080fd5b506103c6610813366004612cdf565b6001600160a01b03166000908152600c602052604090205490565b34801561083a57600080fd5b506102e06108493660046130dc565b611c85565b34801561085a57600080fd5b50600b546103c6565b6102e06108713660046130c3565b611cba565b6102e0610884366004612fa1565b611e77565b34801561089557600080fd5b506103026108a4366004612cfc565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156108de57600080fd5b506102e06108ed366004612cdf565b61200e565b3480156108fe57600080fd5b506102e061090d366004613103565b61206a565b60006001600160e01b0319821663780e9d6360e01b14806109375750610937826120d3565b92915050565b60606002805461094c906134a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610978906134a8565b80156109c55780601f1061099a576101008083540402835291602001916109c5565b820191906000526020600020905b8154815290600101906020018083116109a857829003601f168201915b5050505050905090565b600080546001600160a01b03163314610a035760405162461bcd60e51b81526004016109fa9061332e565b60405180910390fd5b506001600160a01b03811660009081526001602052604090205460ff165b919050565b6000610a3182612123565b610a925760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109fa565b506000908152600760205260409020546001600160a01b031690565b6000610ab9826111c8565b9050806001600160a01b0316836001600160a01b03161415610b275760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109fa565b336001600160a01b0382161480610b435750610b4381336108a4565b610bb55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109fa565b610bbf838361216d565b505050565b6000600454600554610bd6919061341a565b600654610be39190613465565b905090565b6000546001600160a01b03163314610c125760405162461bcd60e51b81526004016109fa9061332e565b610c1c82826121db565b5050565b6001600160a01b0381166000908152600c6020526040902054610c945760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b60648201526084016109fa565b6000600b5447610ca4919061341a565b6001600160a01b0383166000908152600d6020908152604080832054600a54600c909352908320549394509192610cdb9085613446565b610ce59190613432565b610cef9190613465565b905080610d525760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b60648201526084016109fa565b6001600160a01b0383166000908152600d6020526040902054610d7690829061341a565b6001600160a01b0384166000908152600d6020526040902055600b54610d9d90829061341a565b600b55610daa83826123c1565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610dfb33826124da565b610e175760405162461bcd60e51b81526004016109fa90613392565b610bbf8383836125c4565b60008060005b600654811015610e915760068181548110610e4557610e4561353e565b6000918252602090912001546001600160a01b0386811691161415610e815783821415610e755791506109379050565b610e7e826134e3565b91505b610e8a816134e3565b9050610e28565b5060405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109fa565b3360009081526001602052604090205460ff16610f1d5760405162461bcd60e51b81526004016109fa906132b2565b81600f54141580610f3057508060105414155b610f4c5760405162461bcd60e51b81526004016109fa90613363565b610f54610bc4565b811015610fba5760405162461bcd60e51b815260206004820152602e60248201527f53706563696669656420737570706c79206973206c6f776572207468616e206360448201526d757272656e742062616c616e636560901b60648201526084016109fa565b600f91909155601055565b610bbf83838360405180602001604052806000815250611978565b60606000610fed836112a3565b905060008167ffffffffffffffff81111561100a5761100a613554565b604051908082528060200260200182016040528015611033578160200160208202803683370190505b50905060005b828110156110785761104b8582610e22565b82828151811061105d5761105d61353e565b6020908102919091010152611071816134e3565b9050611039565b509392505050565b6000546001600160a01b031633146110aa5760405162461bcd60e51b81526004016109fa9061332e565b6001600160a01b03919091166000908152600160205260409020805460ff1916911515919091179055565b6000805b8281101561114a57846001600160a01b031660068585848181106110ff576110ff61353e565b90506020020135815481106111165761111661353e565b6000918252602090912001546001600160a01b03161461113a576000915050611150565b611143816134e3565b90506110d9565b50600190505b9392505050565b6000611161610bc4565b82106111c45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109fa565b5090565b600080600683815481106111de576111de61353e565b6000918252602090912001546001600160a01b03169050806109375760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109fa565b3360009081526001602052604090205460ff166112835760405162461bcd60e51b81526004016109fa906132b2565b61128f60158585612bb1565b5061129c60168383612bb1565b5050505050565b60006001600160a01b03821661130e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109fa565b6000805b60065481101561136a576006818154811061132f5761132f61353e565b6000918252602090912001546001600160a01b038581169116141561135a57611357826134e3565b91505b611363816134e3565b9050611312565b5092915050565b6000546001600160a01b0316331461139b5760405162461bcd60e51b81526004016109fa9061332e565b6113a56000612708565b565b3360009081526001602052604090205460ff166113d65760405162461bcd60e51b81526004016109fa906132b2565b8281146114385760405162461bcd60e51b815260206004820152602a60248201527f4d7573742070726f7669646520657175616c206163636f756e747320616e64206044820152697175616e74697469657360b01b60648201526084016109fa565b60005b8381101561129c578282828181106114555761145561353e565b90506020020135601460008787858181106114725761147261353e565b90506020020160208101906114879190612cdf565b6001600160a01b031681526020810191909152604001600020556114aa816134e3565b905061143b565b3360009081526001602052604090205460ff166114e05760405162461bcd60e51b81526004016109fa906132b2565b60135460ff610100909104161515821515141580611507575060135460ff16151581151514155b6115235760405162461bcd60e51b81526004016109fa90613363565b6013805461ffff19166101009315159390930260ff191692909217901515179055565b3360009081526001602052604090205460ff166115755760405162461bcd60e51b81526004016109fa906132b2565b60005b818110156116a6576115a18383838181106115955761159561353e565b90506020020135612123565b6115ed5760405162461bcd60e51b815260206004820152601a60248201527f4275726e20666f72206e6f6e6578697374656e7420746f6b656e00000000000060448201526064016109fa565b836001600160a01b0316600684848481811061160b5761160b61353e565b90506020020135815481106116225761162261353e565b6000918252602090912001546001600160a01b0316146116755760405162461bcd60e51b815260206004820152600e60248201526d09eeedccae440dad2e6dac2e8c6d60931b60448201526064016109fa565b61169683838381811061168a5761168a61353e565b90506020020135612758565b61169f816134e3565b9050611578565b50505050565b6000600e82815481106116c1576116c161353e565b6000918252602090912001546001600160a01b031692915050565b60606003805461094c906134a8565b60135460ff166117325760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016109fa565b600f548111156117745760405162461bcd60e51b815260206004820152600d60248201526c4f7264657220746f6f2062696760981b60448201526064016109fa565b806011546117829190613446565b3410156117cd5760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b60448201526064016109fa565b60006117d7610bc4565b6010549091506117e7838361341a565b11156118055760405162461bcd60e51b81526004016109fa906133e3565b60005b82811015610bbf57611825338361181e816134e3565b94506127d8565b61182e816134e3565b9050611808565b6001600160a01b03821633141561188e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109fa565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60005b8381101561196f5761195f878787878581811061191c5761191c61353e565b9050602002013586868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061197892505050565b611968816134e3565b90506118fd565b50505050505050565b61198233836124da565b61199e5760405162461bcd60e51b81526004016109fa90613392565b6116a684848484612842565b3360009081526001602052604090205460ff166119d95760405162461bcd60e51b81526004016109fa906132b2565b828114611a3b5760405162461bcd60e51b815260206004820152602a60248201527f4d7573742070726f7669646520657175616c20746f6b656e49647320616e6420604482015269726563697069656e747360b01b60648201526084016109fa565b6000806000805b86811015611bef57858582818110611a5c57611a5c61353e565b9050602002016020810190611a719190612cdf565b93506000868683818110611a8757611a8761353e565b9050602002016020810190611a9c9190612cdf565b6001600160a01b03161415611af35760405162461bcd60e51b815260206004820152601d60248201527f72657375727265637420746f20746865207a65726f206164647265737300000060448201526064016109fa565b878782818110611b0557611b0561353e565b905060200201359250611b1783612123565b15611b645760405162461bcd60e51b815260206004820152601e60248201527f63616e277420726573757272656374206578697374696e6720746f6b656e000060448201526064016109fa565b8360068481548110611b7857611b7861353e565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550611bb0828461216d565b82846001600160a01b0316836001600160a01b031660008051602061359683398151915260405160405180910390a4611be8816134e3565b9050611a42565b5050505050505050565b6060611c0482612123565b611c505760405162461bcd60e51b815260206004820152601b60248201527f517565727920666f72206e6f6e6578697374656e7420746f6b656e000000000060448201526064016109fa565b6015611c5b83612875565b6016604051602001611c6f939291906131eb565b6040516020818303038152906040529050919050565b6000546001600160a01b03163314611caf5760405162461bcd60e51b81526004016109fa9061332e565b610bbf838383612973565b601354610100900460ff16611d095760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b60448201526064016109fa565b600f54811115611d4b5760405162461bcd60e51b815260206004820152600d60248201526c4f7264657220746f6f2062696760981b60448201526064016109fa565b80601254611d599190613446565b341015611da45760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b60448201526064016109fa565b33600090815260146020526040902054611df15760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b60448201526064016109fa565b6000611dfb610bc4565b601054909150611e0b838361341a565b1115611e295760405162461bcd60e51b81526004016109fa906133e3565b3360009081526014602052604081208054849290611e48908490613465565b90915550600090505b82811015610bbf57611e67338361181e816134e3565b611e70816134e3565b9050611e51565b3360009081526001602052604090205460ff16611ea65760405162461bcd60e51b81526004016109fa906132b2565b828114611f0a5760405162461bcd60e51b815260206004820152602c60248201527f4d7573742070726f7669646520657175616c207175616e74697469657320616e60448201526b6420726563697069656e747360a01b60648201526084016109fa565b600080611f15610bc4565b905060005b85811015611f5857868682818110611f3457611f3461353e565b9050602002013583611f46919061341a565b9250611f51816134e3565b9050611f1a565b50601054611f66838361341a565b1115611f845760405162461bcd60e51b81526004016109fa906133e3565b60005b8381101561196f5760005b878783818110611fa457611fa461353e565b90506020020135811015611ffd57611fed868684818110611fc757611fc761353e565b9050602002016020810190611fdc9190612cdf565b84611fe6816134e3565b95506127d8565b611ff6816134e3565b9050611f92565b50612007816134e3565b9050611f87565b6000546001600160a01b031633146120385760405162461bcd60e51b81526004016109fa9061332e565b6001600160a01b0381166000908152600160208190526040909120805460ff1916909117905561206781612a0c565b50565b3360009081526001602052604090205460ff166120995760405162461bcd60e51b81526004016109fa906132b2565b816012541415806120ac57508060115414155b6120c85760405162461bcd60e51b81526004016109fa90613363565b601291909155601155565b60006001600160e01b031982166380ac58cd60e01b148061210457506001600160e01b03198216635b5e139f60e01b145b8061093757506301ffc9a760e01b6001600160e01b0319831614610937565b60065460009082108015610937575060006001600160a01b0316600683815481106121505761215061353e565b6000918252602090912001546001600160a01b0316141592915050565b600081815260076020526040902080546001600160a01b0319166001600160a01b03841690811790915581906121a2826111c8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b0382166122465760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016109fa565b600081116122965760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016109fa565b6001600160a01b0382166000908152600c6020526040902054156123105760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016109fa565b600e8054600181019091557fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319166001600160a01b0384169081179091556000908152600c60205260409020819055600a5461237890829061341a565b600a55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b804710156124115760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109fa565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461245e576040519150601f19603f3d011682016040523d82523d6000602084013e612463565b606091505b5050905080610bbf5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016109fa565b60006124e582612123565b6125465760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109fa565b6000612551836111c8565b9050806001600160a01b0316846001600160a01b0316148061258c5750836001600160a01b031661258184610a26565b6001600160a01b0316145b806125bc57506001600160a01b0380821660009081526008602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166125d7826111c8565b6001600160a01b03161461263f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109fa565b6001600160a01b0382166126a15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109fa565b6126ac60008261216d565b81600682815481106126c0576126c061353e565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716916000805160206135968339815191529190a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000612763826111c8565b905061278061277a6000546001600160a01b031690565b8361216d565b6000600683815481106127955761279561353e565b6000918252602082200180546001600160a01b0319166001600160a01b039384161790556040518492841690600080516020613596833981519152908390a45050565b6006805460018101825560009182527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038516908117909155604051839290600080516020613596833981519152908290a45050565b61284d8484846125c4565b61285984848484612aa4565b6116a65760405162461bcd60e51b81526004016109fa906132dc565b6060816128995750506040805180820190915260018152600360fc1b602082015290565b8160005b81156128c357806128ad816134e3565b91506128bc9050600a83613432565b915061289d565b60008167ffffffffffffffff8111156128de576128de613554565b6040519080825280601f01601f191660200182016040528015612908576020820181803683370190505b5090505b84156125bc5761291d600183613465565b915061292a600a866134fe565b61293590603061341a565b60f81b81838151811061294a5761294a61353e565b60200101906001600160f81b031916908160001a90535061296c600a86613432565b945061290c565b6001600160a01b0382166000908152600c6020526040902054600a54829161299a91613465565b6129a4919061341a565b600a556001600160a01b0382166000908152600c60205260409020819055600e8054839190859081106129d9576129d961353e565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550505050565b6000546001600160a01b03163314612a365760405162461bcd60e51b81526004016109fa9061332e565b6001600160a01b038116612a9b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109fa565b61206781612708565b60006001600160a01b0384163b15612ba657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ae890339089908890889060040161321e565b602060405180830381600087803b158015612b0257600080fd5b505af1925050508015612b32575060408051601f3d908101601f19168201909252612b2f91810190613046565b60015b612b8c573d808015612b60576040519150601f19603f3d011682016040523d82523d6000602084013e612b65565b606091505b508051612b845760405162461bcd60e51b81526004016109fa906132dc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506125bc565b506001949350505050565b828054612bbd906134a8565b90600052602060002090601f016020900481019282612bdf5760008555612c25565b82601f10612bf85782800160ff19823516178555612c25565b82800160010185558215612c25579182015b82811115612c25578235825591602001919060010190612c0a565b506111c49291505b808211156111c45760008155600101612c2d565b60008083601f840112612c5357600080fd5b50813567ffffffffffffffff811115612c6b57600080fd5b6020830191508360208260051b8501011115612c8657600080fd5b9250929050565b80358015158114610a2157600080fd5b60008083601f840112612caf57600080fd5b50813567ffffffffffffffff811115612cc757600080fd5b602083019150836020828501011115612c8657600080fd5b600060208284031215612cf157600080fd5b81356111508161356a565b60008060408385031215612d0f57600080fd5b8235612d1a8161356a565b91506020830135612d2a8161356a565b809150509250929050565b60008060008060008060808789031215612d4e57600080fd5b8635612d598161356a565b95506020870135612d698161356a565b9450604087013567ffffffffffffffff80821115612d8657600080fd5b612d928a838b01612c41565b90965094506060890135915080821115612dab57600080fd5b50612db889828a01612c9d565b979a9699509497509295939492505050565b600080600060608486031215612ddf57600080fd5b8335612dea8161356a565b92506020840135612dfa8161356a565b929592945050506040919091013590565b60008060008060808587031215612e2157600080fd5b8435612e2c8161356a565b93506020850135612e3c8161356a565b925060408501359150606085013567ffffffffffffffff80821115612e6057600080fd5b818701915087601f830112612e7457600080fd5b813581811115612e8657612e86613554565b604051601f8201601f19908116603f01168101908382118183101715612eae57612eae613554565b816040528281528a6020848701011115612ec757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080600060408486031215612f0057600080fd5b8335612f0b8161356a565b9250602084013567ffffffffffffffff811115612f2757600080fd5b612f3386828701612c41565b9497909650939450505050565b60008060408385031215612f5357600080fd5b8235612f5e8161356a565b9150612f6c60208401612c8d565b90509250929050565b60008060408385031215612f8857600080fd5b8235612f938161356a565b946020939093013593505050565b60008060008060408587031215612fb757600080fd5b843567ffffffffffffffff80821115612fcf57600080fd5b612fdb88838901612c41565b90965094506020870135915080821115612ff457600080fd5b5061300187828801612c41565b95989497509550505050565b6000806040838503121561302057600080fd5b612f5e83612c8d565b60006020828403121561303b57600080fd5b81356111508161357f565b60006020828403121561305857600080fd5b81516111508161357f565b6000806000806040858703121561307957600080fd5b843567ffffffffffffffff8082111561309157600080fd5b61309d88838901612c9d565b909650945060208701359150808211156130b657600080fd5b5061300187828801612c9d565b6000602082840312156130d557600080fd5b5035919050565b6000806000606084860312156130f157600080fd5b833592506020840135612dfa8161356a565b6000806040838503121561311657600080fd5b50508035926020909101359150565b6000815180845261313d81602086016020860161347c565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061316b57607f831692505b602080841082141561318d57634e487b7160e01b600052602260045260246000fd5b8180156131a157600181146131b2576131df565b60ff198616895284890196506131df565b60008881526020902060005b868110156131d75781548b8201529085019083016131be565b505084890196505b50505050505092915050565b60006131f78286613151565b845161320781836020890161347c565b61321381830186613151565b979650505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061325190830184613125565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561329357835183529284019291840191600101613277565b50909695505050505050565b6020815260006111506020830184613125565b60208082526010908201526f496e76616c69642064656c656761746560801b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526015908201527413995dc81d985b1d59481b585d18da195cc81bdb19605a1b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526019908201527f4d696e742f6f72646572206578636565647320737570706c7900000000000000604082015260600190565b6000821982111561342d5761342d613512565b500190565b60008261344157613441613528565b500490565b600081600019048311821515161561346057613460613512565b500290565b60008282101561347757613477613512565b500390565b60005b8381101561349757818101518382015260200161347f565b838111156116a65750506000910152565b600181811c908216806134bc57607f821691505b602082108114156134dd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134f7576134f7613512565b5060010190565b60008261350d5761350d613528565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461206757600080fd5b6001600160e01b03198116811461206757600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220efc6e995f9113dd9e7553b8bfdbd720d3ba65ba918ce8660b957b3e9434d207964736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102975760003560e01c806370a0823111610166578063b294faec116100d3578063df2388001161008f578063e966d5121161006c578063e966d51214610876578063e985e9c514610889578063f2fde38b146108d2578063f7d97577146108f257005b8063df2388001461082e578063e33b7de31461084e578063e6ab14341461086357005b8063b294faec14610762578063b534a5c414610778578063b88d4fde14610798578063bb39e029146107b8578063c87b56dd146107d8578063ce7c2ac2146107f857005b80638b83209b116101225780638b83209b146106a65780638da5cb5b146106c657806395d89b41146106e45780639852595c146106f9578063a0712d681461072f578063a22cb4651461074257005b806370a08231146105f1578063715018a6146106115780637e91b36f146106265780637f608d031461064657806387a5b67c1461066657806389af61071461069357005b80633b91ceef1161020457806350c5a00c116101c057806350c5a00c1461054c5780635b92ac0d1461056257806360d938dc1461057c57806362dc6e211461059b5780636352211e146105b15780636790a9de146105d157005b80633b91ceef1461047f57806342842e0e1461049f578063438b6300146104bf5780634a994eef146104ec5780634d44660c1461050c5780634f6ccce71461052c57005b806318f9b0231161025357806318f9b023146103d457806319165587146103f457806323b872dd146104145780632f745c591461043457806332cb6b0c146104545780633a98ef391461046a57005b806301ffc9a7146102e257806306fdde03146103175780630777962714610339578063081812fc14610359578063095ea7b31461039157806318160ddd146103b157005b366102e0577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b005b3480156102ee57600080fd5b506103026102fd366004613029565b610912565b60405190151581526020015b60405180910390f35b34801561032357600080fd5b5061032c61093d565b60405161030e919061329f565b34801561034557600080fd5b50610302610354366004612cdf565b6109cf565b34801561036557600080fd5b506103796103743660046130c3565b610a26565b6040516001600160a01b03909116815260200161030e565b34801561039d57600080fd5b506102e06103ac366004612f75565b610aae565b3480156103bd57600080fd5b506103c6610bc4565b60405190815260200161030e565b3480156103e057600080fd5b506102e06103ef366004612f75565b610be8565b34801561040057600080fd5b506102e061040f366004612cdf565b610c20565b34801561042057600080fd5b506102e061042f366004612dca565b610df1565b34801561044057600080fd5b506103c661044f366004612f75565b610e22565b34801561046057600080fd5b506103c660105481565b34801561047657600080fd5b50600a546103c6565b34801561048b57600080fd5b506102e061049a366004613103565b610eee565b3480156104ab57600080fd5b506102e06104ba366004612dca565b610fc5565b3480156104cb57600080fd5b506104df6104da366004612cdf565b610fe0565b60405161030e919061325b565b3480156104f857600080fd5b506102e0610507366004612f40565b611080565b34801561051857600080fd5b50610302610527366004612eeb565b6110d5565b34801561053857600080fd5b506103c66105473660046130c3565b611157565b34801561055857600080fd5b506103c6600f5481565b34801561056e57600080fd5b506013546103029060ff1681565b34801561058857600080fd5b5060135461030290610100900460ff1681565b3480156105a757600080fd5b506103c660125481565b3480156105bd57600080fd5b506103796105cc3660046130c3565b6111c8565b3480156105dd57600080fd5b506102e06105ec366004613063565b611254565b3480156105fd57600080fd5b506103c661060c366004612cdf565b6112a3565b34801561061d57600080fd5b506102e0611371565b34801561063257600080fd5b506102e0610641366004612fa1565b6113a7565b34801561065257600080fd5b506102e061066136600461300d565b6114b1565b34801561067257600080fd5b506103c6610681366004612cdf565b60146020526000908152604090205481565b6102e06106a1366004612eeb565b611546565b3480156106b257600080fd5b506103796106c13660046130c3565b6116ac565b3480156106d257600080fd5b506000546001600160a01b0316610379565b3480156106f057600080fd5b5061032c6116dc565b34801561070557600080fd5b506103c6610714366004612cdf565b6001600160a01b03166000908152600d602052604090205490565b6102e061073d3660046130c3565b6116eb565b34801561074e57600080fd5b506102e061075d366004612f40565b611835565b34801561076e57600080fd5b506103c660115481565b34801561078457600080fd5b506102e0610793366004612d35565b6118fa565b3480156107a457600080fd5b506102e06107b3366004612e0b565b611978565b3480156107c457600080fd5b506102e06107d3366004612fa1565b6119aa565b3480156107e457600080fd5b5061032c6107f33660046130c3565b611bf9565b34801561080457600080fd5b506103c6610813366004612cdf565b6001600160a01b03166000908152600c602052604090205490565b34801561083a57600080fd5b506102e06108493660046130dc565b611c85565b34801561085a57600080fd5b50600b546103c6565b6102e06108713660046130c3565b611cba565b6102e0610884366004612fa1565b611e77565b34801561089557600080fd5b506103026108a4366004612cfc565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156108de57600080fd5b506102e06108ed366004612cdf565b61200e565b3480156108fe57600080fd5b506102e061090d366004613103565b61206a565b60006001600160e01b0319821663780e9d6360e01b14806109375750610937826120d3565b92915050565b60606002805461094c906134a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610978906134a8565b80156109c55780601f1061099a576101008083540402835291602001916109c5565b820191906000526020600020905b8154815290600101906020018083116109a857829003601f168201915b5050505050905090565b600080546001600160a01b03163314610a035760405162461bcd60e51b81526004016109fa9061332e565b60405180910390fd5b506001600160a01b03811660009081526001602052604090205460ff165b919050565b6000610a3182612123565b610a925760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109fa565b506000908152600760205260409020546001600160a01b031690565b6000610ab9826111c8565b9050806001600160a01b0316836001600160a01b03161415610b275760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109fa565b336001600160a01b0382161480610b435750610b4381336108a4565b610bb55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109fa565b610bbf838361216d565b505050565b6000600454600554610bd6919061341a565b600654610be39190613465565b905090565b6000546001600160a01b03163314610c125760405162461bcd60e51b81526004016109fa9061332e565b610c1c82826121db565b5050565b6001600160a01b0381166000908152600c6020526040902054610c945760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b60648201526084016109fa565b6000600b5447610ca4919061341a565b6001600160a01b0383166000908152600d6020908152604080832054600a54600c909352908320549394509192610cdb9085613446565b610ce59190613432565b610cef9190613465565b905080610d525760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b60648201526084016109fa565b6001600160a01b0383166000908152600d6020526040902054610d7690829061341a565b6001600160a01b0384166000908152600d6020526040902055600b54610d9d90829061341a565b600b55610daa83826123c1565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610dfb33826124da565b610e175760405162461bcd60e51b81526004016109fa90613392565b610bbf8383836125c4565b60008060005b600654811015610e915760068181548110610e4557610e4561353e565b6000918252602090912001546001600160a01b0386811691161415610e815783821415610e755791506109379050565b610e7e826134e3565b91505b610e8a816134e3565b9050610e28565b5060405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109fa565b3360009081526001602052604090205460ff16610f1d5760405162461bcd60e51b81526004016109fa906132b2565b81600f54141580610f3057508060105414155b610f4c5760405162461bcd60e51b81526004016109fa90613363565b610f54610bc4565b811015610fba5760405162461bcd60e51b815260206004820152602e60248201527f53706563696669656420737570706c79206973206c6f776572207468616e206360448201526d757272656e742062616c616e636560901b60648201526084016109fa565b600f91909155601055565b610bbf83838360405180602001604052806000815250611978565b60606000610fed836112a3565b905060008167ffffffffffffffff81111561100a5761100a613554565b604051908082528060200260200182016040528015611033578160200160208202803683370190505b50905060005b828110156110785761104b8582610e22565b82828151811061105d5761105d61353e565b6020908102919091010152611071816134e3565b9050611039565b509392505050565b6000546001600160a01b031633146110aa5760405162461bcd60e51b81526004016109fa9061332e565b6001600160a01b03919091166000908152600160205260409020805460ff1916911515919091179055565b6000805b8281101561114a57846001600160a01b031660068585848181106110ff576110ff61353e565b90506020020135815481106111165761111661353e565b6000918252602090912001546001600160a01b03161461113a576000915050611150565b611143816134e3565b90506110d9565b50600190505b9392505050565b6000611161610bc4565b82106111c45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109fa565b5090565b600080600683815481106111de576111de61353e565b6000918252602090912001546001600160a01b03169050806109375760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109fa565b3360009081526001602052604090205460ff166112835760405162461bcd60e51b81526004016109fa906132b2565b61128f60158585612bb1565b5061129c60168383612bb1565b5050505050565b60006001600160a01b03821661130e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109fa565b6000805b60065481101561136a576006818154811061132f5761132f61353e565b6000918252602090912001546001600160a01b038581169116141561135a57611357826134e3565b91505b611363816134e3565b9050611312565b5092915050565b6000546001600160a01b0316331461139b5760405162461bcd60e51b81526004016109fa9061332e565b6113a56000612708565b565b3360009081526001602052604090205460ff166113d65760405162461bcd60e51b81526004016109fa906132b2565b8281146114385760405162461bcd60e51b815260206004820152602a60248201527f4d7573742070726f7669646520657175616c206163636f756e747320616e64206044820152697175616e74697469657360b01b60648201526084016109fa565b60005b8381101561129c578282828181106114555761145561353e565b90506020020135601460008787858181106114725761147261353e565b90506020020160208101906114879190612cdf565b6001600160a01b031681526020810191909152604001600020556114aa816134e3565b905061143b565b3360009081526001602052604090205460ff166114e05760405162461bcd60e51b81526004016109fa906132b2565b60135460ff610100909104161515821515141580611507575060135460ff16151581151514155b6115235760405162461bcd60e51b81526004016109fa90613363565b6013805461ffff19166101009315159390930260ff191692909217901515179055565b3360009081526001602052604090205460ff166115755760405162461bcd60e51b81526004016109fa906132b2565b60005b818110156116a6576115a18383838181106115955761159561353e565b90506020020135612123565b6115ed5760405162461bcd60e51b815260206004820152601a60248201527f4275726e20666f72206e6f6e6578697374656e7420746f6b656e00000000000060448201526064016109fa565b836001600160a01b0316600684848481811061160b5761160b61353e565b90506020020135815481106116225761162261353e565b6000918252602090912001546001600160a01b0316146116755760405162461bcd60e51b815260206004820152600e60248201526d09eeedccae440dad2e6dac2e8c6d60931b60448201526064016109fa565b61169683838381811061168a5761168a61353e565b90506020020135612758565b61169f816134e3565b9050611578565b50505050565b6000600e82815481106116c1576116c161353e565b6000918252602090912001546001600160a01b031692915050565b60606003805461094c906134a8565b60135460ff166117325760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016109fa565b600f548111156117745760405162461bcd60e51b815260206004820152600d60248201526c4f7264657220746f6f2062696760981b60448201526064016109fa565b806011546117829190613446565b3410156117cd5760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b60448201526064016109fa565b60006117d7610bc4565b6010549091506117e7838361341a565b11156118055760405162461bcd60e51b81526004016109fa906133e3565b60005b82811015610bbf57611825338361181e816134e3565b94506127d8565b61182e816134e3565b9050611808565b6001600160a01b03821633141561188e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109fa565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60005b8381101561196f5761195f878787878581811061191c5761191c61353e565b9050602002013586868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061197892505050565b611968816134e3565b90506118fd565b50505050505050565b61198233836124da565b61199e5760405162461bcd60e51b81526004016109fa90613392565b6116a684848484612842565b3360009081526001602052604090205460ff166119d95760405162461bcd60e51b81526004016109fa906132b2565b828114611a3b5760405162461bcd60e51b815260206004820152602a60248201527f4d7573742070726f7669646520657175616c20746f6b656e49647320616e6420604482015269726563697069656e747360b01b60648201526084016109fa565b6000806000805b86811015611bef57858582818110611a5c57611a5c61353e565b9050602002016020810190611a719190612cdf565b93506000868683818110611a8757611a8761353e565b9050602002016020810190611a9c9190612cdf565b6001600160a01b03161415611af35760405162461bcd60e51b815260206004820152601d60248201527f72657375727265637420746f20746865207a65726f206164647265737300000060448201526064016109fa565b878782818110611b0557611b0561353e565b905060200201359250611b1783612123565b15611b645760405162461bcd60e51b815260206004820152601e60248201527f63616e277420726573757272656374206578697374696e6720746f6b656e000060448201526064016109fa565b8360068481548110611b7857611b7861353e565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550611bb0828461216d565b82846001600160a01b0316836001600160a01b031660008051602061359683398151915260405160405180910390a4611be8816134e3565b9050611a42565b5050505050505050565b6060611c0482612123565b611c505760405162461bcd60e51b815260206004820152601b60248201527f517565727920666f72206e6f6e6578697374656e7420746f6b656e000000000060448201526064016109fa565b6015611c5b83612875565b6016604051602001611c6f939291906131eb565b6040516020818303038152906040529050919050565b6000546001600160a01b03163314611caf5760405162461bcd60e51b81526004016109fa9061332e565b610bbf838383612973565b601354610100900460ff16611d095760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b60448201526064016109fa565b600f54811115611d4b5760405162461bcd60e51b815260206004820152600d60248201526c4f7264657220746f6f2062696760981b60448201526064016109fa565b80601254611d599190613446565b341015611da45760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b60448201526064016109fa565b33600090815260146020526040902054611df15760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b60448201526064016109fa565b6000611dfb610bc4565b601054909150611e0b838361341a565b1115611e295760405162461bcd60e51b81526004016109fa906133e3565b3360009081526014602052604081208054849290611e48908490613465565b90915550600090505b82811015610bbf57611e67338361181e816134e3565b611e70816134e3565b9050611e51565b3360009081526001602052604090205460ff16611ea65760405162461bcd60e51b81526004016109fa906132b2565b828114611f0a5760405162461bcd60e51b815260206004820152602c60248201527f4d7573742070726f7669646520657175616c207175616e74697469657320616e60448201526b6420726563697069656e747360a01b60648201526084016109fa565b600080611f15610bc4565b905060005b85811015611f5857868682818110611f3457611f3461353e565b9050602002013583611f46919061341a565b9250611f51816134e3565b9050611f1a565b50601054611f66838361341a565b1115611f845760405162461bcd60e51b81526004016109fa906133e3565b60005b8381101561196f5760005b878783818110611fa457611fa461353e565b90506020020135811015611ffd57611fed868684818110611fc757611fc761353e565b9050602002016020810190611fdc9190612cdf565b84611fe6816134e3565b95506127d8565b611ff6816134e3565b9050611f92565b50612007816134e3565b9050611f87565b6000546001600160a01b031633146120385760405162461bcd60e51b81526004016109fa9061332e565b6001600160a01b0381166000908152600160208190526040909120805460ff1916909117905561206781612a0c565b50565b3360009081526001602052604090205460ff166120995760405162461bcd60e51b81526004016109fa906132b2565b816012541415806120ac57508060115414155b6120c85760405162461bcd60e51b81526004016109fa90613363565b601291909155601155565b60006001600160e01b031982166380ac58cd60e01b148061210457506001600160e01b03198216635b5e139f60e01b145b8061093757506301ffc9a760e01b6001600160e01b0319831614610937565b60065460009082108015610937575060006001600160a01b0316600683815481106121505761215061353e565b6000918252602090912001546001600160a01b0316141592915050565b600081815260076020526040902080546001600160a01b0319166001600160a01b03841690811790915581906121a2826111c8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b0382166122465760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016109fa565b600081116122965760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016109fa565b6001600160a01b0382166000908152600c6020526040902054156123105760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016109fa565b600e8054600181019091557fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319166001600160a01b0384169081179091556000908152600c60205260409020819055600a5461237890829061341a565b600a55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b804710156124115760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109fa565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461245e576040519150601f19603f3d011682016040523d82523d6000602084013e612463565b606091505b5050905080610bbf5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016109fa565b60006124e582612123565b6125465760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109fa565b6000612551836111c8565b9050806001600160a01b0316846001600160a01b0316148061258c5750836001600160a01b031661258184610a26565b6001600160a01b0316145b806125bc57506001600160a01b0380821660009081526008602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166125d7826111c8565b6001600160a01b03161461263f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109fa565b6001600160a01b0382166126a15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109fa565b6126ac60008261216d565b81600682815481106126c0576126c061353e565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716916000805160206135968339815191529190a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000612763826111c8565b905061278061277a6000546001600160a01b031690565b8361216d565b6000600683815481106127955761279561353e565b6000918252602082200180546001600160a01b0319166001600160a01b039384161790556040518492841690600080516020613596833981519152908390a45050565b6006805460018101825560009182527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038516908117909155604051839290600080516020613596833981519152908290a45050565b61284d8484846125c4565b61285984848484612aa4565b6116a65760405162461bcd60e51b81526004016109fa906132dc565b6060816128995750506040805180820190915260018152600360fc1b602082015290565b8160005b81156128c357806128ad816134e3565b91506128bc9050600a83613432565b915061289d565b60008167ffffffffffffffff8111156128de576128de613554565b6040519080825280601f01601f191660200182016040528015612908576020820181803683370190505b5090505b84156125bc5761291d600183613465565b915061292a600a866134fe565b61293590603061341a565b60f81b81838151811061294a5761294a61353e565b60200101906001600160f81b031916908160001a90535061296c600a86613432565b945061290c565b6001600160a01b0382166000908152600c6020526040902054600a54829161299a91613465565b6129a4919061341a565b600a556001600160a01b0382166000908152600c60205260409020819055600e8054839190859081106129d9576129d961353e565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550505050565b6000546001600160a01b03163314612a365760405162461bcd60e51b81526004016109fa9061332e565b6001600160a01b038116612a9b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109fa565b61206781612708565b60006001600160a01b0384163b15612ba657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ae890339089908890889060040161321e565b602060405180830381600087803b158015612b0257600080fd5b505af1925050508015612b32575060408051601f3d908101601f19168201909252612b2f91810190613046565b60015b612b8c573d808015612b60576040519150601f19603f3d011682016040523d82523d6000602084013e612b65565b606091505b508051612b845760405162461bcd60e51b81526004016109fa906132dc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506125bc565b506001949350505050565b828054612bbd906134a8565b90600052602060002090601f016020900481019282612bdf5760008555612c25565b82601f10612bf85782800160ff19823516178555612c25565b82800160010185558215612c25579182015b82811115612c25578235825591602001919060010190612c0a565b506111c49291505b808211156111c45760008155600101612c2d565b60008083601f840112612c5357600080fd5b50813567ffffffffffffffff811115612c6b57600080fd5b6020830191508360208260051b8501011115612c8657600080fd5b9250929050565b80358015158114610a2157600080fd5b60008083601f840112612caf57600080fd5b50813567ffffffffffffffff811115612cc757600080fd5b602083019150836020828501011115612c8657600080fd5b600060208284031215612cf157600080fd5b81356111508161356a565b60008060408385031215612d0f57600080fd5b8235612d1a8161356a565b91506020830135612d2a8161356a565b809150509250929050565b60008060008060008060808789031215612d4e57600080fd5b8635612d598161356a565b95506020870135612d698161356a565b9450604087013567ffffffffffffffff80821115612d8657600080fd5b612d928a838b01612c41565b90965094506060890135915080821115612dab57600080fd5b50612db889828a01612c9d565b979a9699509497509295939492505050565b600080600060608486031215612ddf57600080fd5b8335612dea8161356a565b92506020840135612dfa8161356a565b929592945050506040919091013590565b60008060008060808587031215612e2157600080fd5b8435612e2c8161356a565b93506020850135612e3c8161356a565b925060408501359150606085013567ffffffffffffffff80821115612e6057600080fd5b818701915087601f830112612e7457600080fd5b813581811115612e8657612e86613554565b604051601f8201601f19908116603f01168101908382118183101715612eae57612eae613554565b816040528281528a6020848701011115612ec757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080600060408486031215612f0057600080fd5b8335612f0b8161356a565b9250602084013567ffffffffffffffff811115612f2757600080fd5b612f3386828701612c41565b9497909650939450505050565b60008060408385031215612f5357600080fd5b8235612f5e8161356a565b9150612f6c60208401612c8d565b90509250929050565b60008060408385031215612f8857600080fd5b8235612f938161356a565b946020939093013593505050565b60008060008060408587031215612fb757600080fd5b843567ffffffffffffffff80821115612fcf57600080fd5b612fdb88838901612c41565b90965094506020870135915080821115612ff457600080fd5b5061300187828801612c41565b95989497509550505050565b6000806040838503121561302057600080fd5b612f5e83612c8d565b60006020828403121561303b57600080fd5b81356111508161357f565b60006020828403121561305857600080fd5b81516111508161357f565b6000806000806040858703121561307957600080fd5b843567ffffffffffffffff8082111561309157600080fd5b61309d88838901612c9d565b909650945060208701359150808211156130b657600080fd5b5061300187828801612c9d565b6000602082840312156130d557600080fd5b5035919050565b6000806000606084860312156130f157600080fd5b833592506020840135612dfa8161356a565b6000806040838503121561311657600080fd5b50508035926020909101359150565b6000815180845261313d81602086016020860161347c565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061316b57607f831692505b602080841082141561318d57634e487b7160e01b600052602260045260246000fd5b8180156131a157600181146131b2576131df565b60ff198616895284890196506131df565b60008881526020902060005b868110156131d75781548b8201529085019083016131be565b505084890196505b50505050505092915050565b60006131f78286613151565b845161320781836020890161347c565b61321381830186613151565b979650505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061325190830184613125565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561329357835183529284019291840191600101613277565b50909695505050505050565b6020815260006111506020830184613125565b60208082526010908201526f496e76616c69642064656c656761746560801b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526015908201527413995dc81d985b1d59481b585d18da195cc81bdb19605a1b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526019908201527f4d696e742f6f72646572206578636565647320737570706c7900000000000000604082015260600190565b6000821982111561342d5761342d613512565b500190565b60008261344157613441613528565b500490565b600081600019048311821515161561346057613460613512565b500290565b60008282101561347757613477613512565b500390565b60005b8381101561349757818101518382015260200161347f565b838111156116a65750506000910152565b600181811c908216806134bc57607f821691505b602082108114156134dd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134f7576134f7613512565b5060010190565b60008261350d5761350d613528565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461206757600080fd5b6001600160e01b03198116811461206757600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220efc6e995f9113dd9e7553b8bfdbd720d3ba65ba918ce8660b957b3e9434d207964736f6c63430008070033

Deployed Bytecode Sourcemap

47386:6220:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30960:40;28187:10;30960:40;;;-1:-1:-1;;;;;11966:32:1;;;11948:51;;30990:9:0;12030:2:1;12015:18;;12008:34;11921:18;30960:40:0;;;;;;;47386:6220;;;42306:225;;;;;;;;;;-1:-1:-1;42306:225:0;;;;;:::i;:::-;;:::i;:::-;;;13627:14:1;;13620:22;13602:41;;13590:2;13575:18;42306:225:0;;;;;;;;34903:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46905:112::-;;;;;;;;;;-1:-1:-1;46905:112:0;;;;;:::i;:::-;;:::i;36233:216::-;;;;;;;;;;-1:-1:-1;36233:216:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;11722:32:1;;;11704:51;;11692:2;11677:18;36233:216:0;11558:203:1;35814:411:0;;;;;;;;;;-1:-1:-1;35814:411:0;;;;;:::i;:::-;;:::i;43186:159::-;;;;;;;;;;;;;:::i;:::-;;;29090:25:1;;;29078:2;29063:18;43186:159:0;28944:177:1;52943:111:0;;;;;;;;;;-1:-1:-1;52943:111:0;;;;;:::i;:::-;;:::i;32166:611::-;;;;;;;;;;-1:-1:-1;32166:611:0;;;;;:::i;:::-;;:::i;36932:334::-;;;;;;;;;;-1:-1:-1;36932:334:0;;;;;:::i;:::-;;:::i;42539:431::-;;;;;;;;;;-1:-1:-1;42539:431:0;;;;;:::i;:::-;;:::i;47530:33::-;;;;;;;;;;;;;;;;31091:91;;;;;;;;;;-1:-1:-1;31162:12:0;;31091:91;;52338:315;;;;;;;;;;-1:-1:-1;52338:315:0;;;;;:::i;:::-;;:::i;37274:184::-;;;;;;;;;;-1:-1:-1;37274:184:0;;;;;:::i;:::-;;:::i;43606:346::-;;;;;;;;;;-1:-1:-1;43606:346:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47023:116::-;;;;;;;;;;-1:-1:-1;47023:116:0;;;;;:::i;:::-;;:::i;42012:286::-;;;;;;;;;;-1:-1:-1;42012:286:0;;;;;:::i;:::-;;:::i;42978:200::-;;;;;;;;;;-1:-1:-1;42978:200:0;;;;;:::i;:::-;;:::i;47495:30::-;;;;;;;;;;;;;;;;47658:34;;;;;;;;;;-1:-1:-1;47658:34:0;;;;;;;;47697:37;;;;;;;;;;-1:-1:-1;47697:37:0;;;;;;;;;;;47613:38;;;;;;;;;;;;;;;;35013:236;;;;;;;;;;-1:-1:-1;35013:236:0;;;;;:::i;:::-;;:::i;52162:170::-;;;;;;;;;;-1:-1:-1;52162:170:0;;;;;:::i;:::-;;:::i;34559:336::-;;;;;;;;;;-1:-1:-1;34559:336:0;;;;;:::i;:::-;;:::i;45670:103::-;;;;;;;;;;;;;:::i;51565:308::-;;;;;;;;;;-1:-1:-1;51565:308:0;;;;;:::i;:::-;;:::i;51879:277::-;;;;;;;;;;-1:-1:-1;51879:277:0;;;;;:::i;:::-;;:::i;47739:40::-;;;;;;;;;;-1:-1:-1;47739:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;49934:319;;;;;;:::i;:::-;;:::i;31866:100::-;;;;;;;;;;-1:-1:-1;31866:100:0;;;;;:::i;:::-;;:::i;45019:87::-;;;;;;;;;;-1:-1:-1;45065:7:0;45092:6;-1:-1:-1;;;;;45092:6:0;45019:87;;35570:106;;;;;;;;;;;;;:::i;31666:109::-;;;;;;;;;;-1:-1:-1;31666:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;31749:18:0;31722:7;31749:18;;;:9;:18;;;;;;;31666:109;49416:487;;;;;;:::i;:::-;;:::i;36629:295::-;;;;;;;;;;-1:-1:-1;36629:295:0;;;;;:::i;:::-;;:::i;47568:40::-;;;;;;;;;;;;;;;;43353:245;;;;;;;;;;-1:-1:-1;43353:245:0;;;;;:::i;:::-;;:::i;37466:325::-;;;;;;;;;;-1:-1:-1;37466:325:0;;;;;:::i;:::-;;:::i;50880:679::-;;;;;;;;;;-1:-1:-1;50880:679:0;;;;;:::i;:::-;;:::i;48534:240::-;;;;;;;;;;-1:-1:-1;48534:240:0;;;;;:::i;:::-;;:::i;31462:105::-;;;;;;;;;;-1:-1:-1;31462:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;31543:16:0;31516:7;31543:16;;;:7;:16;;;;;;;31462:105;53060:133;;;;;;;;;;-1:-1:-1;53060:133:0;;;;;:::i;:::-;;:::i;31276:95::-;;;;;;;;;;-1:-1:-1;31349:14:0;;31276:95;;48802:608;;;;;;:::i;:::-;;:::i;50259:587::-;;;;;;:::i;:::-;;:::i;36457:164::-;;;;;;;;;;-1:-1:-1;36457:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36578:25:0;;;36554:4;36578:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36457:164;47145:161;;;;;;;;;;-1:-1:-1;47145:161:0;;;;;:::i;:::-;;:::i;52659:265::-;;;;;;;;;;-1:-1:-1;52659:265:0;;;;;:::i;:::-;;:::i;42306:225::-;42409:4;-1:-1:-1;;;;;;42433:50:0;;-1:-1:-1;;;42433:50:0;;:90;;;42487:36;42511:11;42487:23;:36::i;:::-;42426:97;42306:225;-1:-1:-1;;42306:225:0:o;34903:102::-;34959:13;34992:5;34985:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34903:102;:::o;46905:112::-;46975:4;45092:6;;-1:-1:-1;;;;;45092:6:0;28187:10;45239:23;45231:68;;;;-1:-1:-1;;;45231:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;;46995:16:0;::::1;;::::0;;;:10:::1;:16;::::0;;;;;::::1;;45310:1;46905:112:::0;;;:::o;36233:216::-;36306:7;36334:16;36342:7;36334;:16::i;:::-;36326:73;;;;-1:-1:-1;;;36326:73:0;;22614:2:1;36326:73:0;;;22596:21:1;22653:2;22633:18;;;22626:30;22692:34;22672:18;;;22665:62;-1:-1:-1;;;22743:18:1;;;22736:42;22795:19;;36326:73:0;22412:408:1;36326:73:0;-1:-1:-1;36417:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36417:24:0;;36233:216::o;35814:411::-;35894:13;35910:24;35926:7;35910:15;:24::i;:::-;35894:40;;35959:5;-1:-1:-1;;;;;35953:11:0;:2;-1:-1:-1;;;;;35953:11:0;;;35945:57;;;;-1:-1:-1;;;35945:57:0;;24148:2:1;35945:57:0;;;24130:21:1;24187:2;24167:18;;;24160:30;24226:34;24206:18;;;24199:62;-1:-1:-1;;;24277:18:1;;;24270:31;24318:19;;35945:57:0;23946:397:1;35945:57:0;28187:10;-1:-1:-1;;;;;36037:21:0;;;;:62;;-1:-1:-1;36062:37:0;36079:5;28187:10;36457:164;:::i;36062:37::-;36015:168;;;;-1:-1:-1;;;36015:168:0;;20313:2:1;36015:168:0;;;20295:21:1;20352:2;20332:18;;;20325:30;20391:34;20371:18;;;20364:62;20462:26;20442:18;;;20435:54;20506:19;;36015:168:0;20111:420:1;36015:168:0;36196:21;36205:2;36209:7;36196:8;:21::i;:::-;35883:342;35814:411;;:::o;43186:159::-;43277:4;43329:7;;43319;;:17;;;;:::i;:::-;43301:7;:14;:36;;;;:::i;:::-;43294:43;;43186:159;:::o;52943:111::-;45065:7;45092:6;-1:-1:-1;;;;;45092:6:0;28187:10;45239:23;45231:68;;;;-1:-1:-1;;;45231:68:0;;;;;;;:::i;:::-;53021:27:::1;53031:7;53040;53021:9;:27::i;:::-;52943:111:::0;;:::o;32166:611::-;-1:-1:-1;;;;;32242:16:0;;32261:1;32242:16;;;:7;:16;;;;;;32234:71;;;;-1:-1:-1;;;32234:71:0;;16432:2:1;32234:71:0;;;16414:21:1;16471:2;16451:18;;;16444:30;16510:34;16490:18;;;16483:62;-1:-1:-1;;;16561:18:1;;;16554:36;16607:19;;32234:71:0;16230:402:1;32234:71:0;32318:21;32366:14;;32342:21;:38;;;;:::i;:::-;-1:-1:-1;;;;;32461:18:0;;32391:15;32461:18;;;:9;:18;;;;;;;;;32446:12;;32426:7;:16;;;;;;;32318:62;;-1:-1:-1;32391:15:0;;32410:32;;32318:62;32410:32;:::i;:::-;32409:49;;;;:::i;:::-;:70;;;;:::i;:::-;32391:88;-1:-1:-1;32498:12:0;32490:68;;;;-1:-1:-1;;;32490:68:0;;19901:2:1;32490:68:0;;;19883:21:1;19940:2;19920:18;;;19913:30;19979:34;19959:18;;;19952:62;-1:-1:-1;;;20030:18:1;;;20023:41;20081:19;;32490:68:0;19699:407:1;32490:68:0;-1:-1:-1;;;;;32592:18:0;;;;;;:9;:18;;;;;;:28;;32613:7;;32592:28;:::i;:::-;-1:-1:-1;;;;;32571:18:0;;;;;;:9;:18;;;;;:49;32648:14;;:24;;32665:7;;32648:24;:::i;:::-;32631:14;:41;32685:35;32703:7;32712;32685:17;:35::i;:::-;32736:33;;;-1:-1:-1;;;;;11966:32:1;;11948:51;;12030:2;12015:18;;12008:34;;;32736:33:0;;11921:18:1;32736:33:0;;;;;;;32223:554;;32166:611;:::o;36932:334::-;37124:41;28187:10;37157:7;37124:18;:41::i;:::-;37116:103;;;;-1:-1:-1;;;37116:103:0;;;;;;;:::i;:::-;37230:28;37240:4;37246:2;37250:7;37230:9;:28::i;42539:431::-;42625:12;42650:10;42676:6;42671:226;42688:7;:14;42684:18;;42671:226;;;42737:7;42745:1;42737:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;42728:19:0;;;42737:10;;42728:19;42724:162;;;42781:5;42772;:14;42768:102;;;42817:1;-1:-1:-1;42810:8:0;;-1:-1:-1;42810:8:0;42768:102;42863:7;;;:::i;:::-;;;42768:102;42704:3;;;:::i;:::-;;;42671:226;;;-1:-1:-1;42909:53:0;;-1:-1:-1;;;42909:53:0;;14781:2:1;42909:53:0;;;14763:21:1;14820:2;14800:18;;;14793:30;14859:34;14839:18;;;14832:62;-1:-1:-1;;;14910:18:1;;;14903:41;14961:19;;42909:53:0;14579:407:1;52338:315:0;46837:10;46826:22;;;;:10;:22;;;;;;;;46818:52;;;;-1:-1:-1;;;46818:52:0;;;;;;;:::i;:::-;52436:8:::1;52423:9;;:21;;:48;;;;52462:9;52448:10;;:23;;52423:48;52414:84;;;;-1:-1:-1::0;;;52414:84:0::1;;;;;;;:::i;:::-;52526:13;:11;:13::i;:::-;52513:9;:26;;52505:86;;;::::0;-1:-1:-1;;;52505:86:0;;16839:2:1;52505:86:0::1;::::0;::::1;16821:21:1::0;16878:2;16858:18;;;16851:30;16917:34;16897:18;;;16890:62;-1:-1:-1;;;16968:18:1;;;16961:44;17022:19;;52505:86:0::1;16637:410:1::0;52505:86:0::1;52598:9;:20:::0;;;;52625:10:::1;:22:::0;52338:315::o;37274:184::-;37411:39;37428:4;37434:2;37438:7;37411:39;;;;;;;;;;;;:16;:39::i;43606:346::-;43688:13;43714;43730:20;43741:7;43730:9;:20::i;:::-;43714:36;;43761:20;43796:8;43784:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43784:22:0;;43761:45;;43822:6;43817:104;43834:8;43830:1;:12;43817:104;;;43876:33;43897:7;43906:1;43876:19;:33::i;:::-;43864:6;43871:1;43864:9;;;;;;;;:::i;:::-;;;;;;;;;;:45;43844:3;;;:::i;:::-;;;43817:104;;;-1:-1:-1;43938:6:0;43606:346;-1:-1:-1;;;43606:346:0:o;47023:116::-;45065:7;45092:6;-1:-1:-1;;;;;45092:6:0;28187:10;45239:23;45231:68;;;;-1:-1:-1;;;45231:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47103:16:0;;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:30;;-1:-1:-1;;47103:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47023:116::o;42012:286::-;42116:4;42137:6;42133:134;42145:19;;;42133:134;;;42216:7;-1:-1:-1;;;;;42190:33:0;:7;42199:8;;42208:1;42199:11;;;;;;;:::i;:::-;;;;;;;42190:22;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;42190:22:0;:33;42186:69;;42250:5;42243:12;;;;;42186:69;42166:3;;;:::i;:::-;;;42133:134;;;;42286:4;42279:11;;42012:286;;;;;;:::o;42978:200::-;43052:4;43085:13;:11;:13::i;:::-;43077:5;:21;43069:78;;;;-1:-1:-1;;;43069:78:0;;25322:2:1;43069:78:0;;;25304:21:1;25361:2;25341:18;;;25334:30;25400:34;25380:18;;;25373:62;-1:-1:-1;;;25451:18:1;;;25444:42;25503:19;;43069:78:0;25120:408:1;43069:78:0;-1:-1:-1;43165:5:0;42978:200::o;35013:236::-;35082:7;35102:13;35118:7;35126;35118:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;35118:16:0;;-1:-1:-1;35153:19:0;35145:73;;;;-1:-1:-1;;;35145:73:0;;21149:2:1;35145:73:0;;;21131:21:1;21188:2;21168:18;;;21161:30;21227:34;21207:18;;;21200:62;-1:-1:-1;;;21278:18:1;;;21271:39;21327:19;;35145:73:0;20947:405:1;52162:170:0;46837:10;46826:22;;;;:10;:22;;;;;;;;46818:52;;;;-1:-1:-1;;;46818:52:0;;;;;;;:::i;:::-;52265:27:::1;:15;52283:9:::0;;52265:27:::1;:::i;:::-;-1:-1:-1::0;52299:27:0::1;:15;52317:9:::0;;52299:27:::1;:::i;:::-;;52162:170:::0;;;;:::o;34559:336::-;34631:4;-1:-1:-1;;;;;34656:19:0;;34648:74;;;;-1:-1:-1;;;34648:74:0;;20738:2:1;34648:74:0;;;20720:21:1;20777:2;20757:18;;;20750:30;20816:34;20796:18;;;20789:62;-1:-1:-1;;;20867:18:1;;;20860:40;20917:19;;34648:74:0;20536:406:1;34648:74:0;34735:10;34761:6;34756:109;34773:7;:14;34769:18;;34756:109;;;34820:7;34828:1;34820:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;34811:19:0;;;34820:10;;34811:19;34807:46;;;34846:7;;;:::i;:::-;;;34807:46;34789:3;;;:::i;:::-;;;34756:109;;;-1:-1:-1;34882:5:0;34559:336;-1:-1:-1;;34559:336:0:o;45670:103::-;45065:7;45092:6;-1:-1:-1;;;;;45092:6:0;28187:10;45239:23;45231:68;;;;-1:-1:-1;;;45231:68:0;;;;;;;:::i;:::-;45735:30:::1;45762:1;45735:18;:30::i;:::-;45670:103::o:0;51565:308::-;46837:10;46826:22;;;;:10;:22;;;;;;;;46818:52;;;;-1:-1:-1;;;46818:52:0;;;;;;;:::i;:::-;51682:36;;::::1;51674:92;;;::::0;-1:-1:-1;;;51674:92:0;;27321:2:1;51674:92:0::1;::::0;::::1;27303:21:1::0;27360:2;27340:18;;;27333:30;27399:34;27379:18;;;27372:62;-1:-1:-1;;;27450:18:1;;;27443:40;27500:19;;51674:92:0::1;27119:406:1::0;51674:92:0::1;51777:6;51773:95;51785:19:::0;;::::1;51773:95;;;51847:10;;51858:1;51847:13;;;;;;;:::i;:::-;;;;;;;51819:10;:25;51831:8;;51840:1;51831:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51819:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;51819:25:0;:41;51806:3:::1;::::0;::::1;:::i;:::-;;;51773:95;;51879:277:::0;46837:10;46826:22;;;;:10;:22;;;;;;;;46818:52;;;;-1:-1:-1;;;46818:52:0;;;;;;;:::i;:::-;51979:15:::1;::::0;::::1;;::::0;;::::1;;:35;;::::0;::::1;;;;::::0;:68:::1;;-1:-1:-1::0;52018:12:0::1;::::0;::::1;;:29;;::::0;::::1;;;;51979:68;51970:104;;;;-1:-1:-1::0;;;51970:104:0::1;;;;;;;:::i;:::-;52081:15;:34:::0;;-1:-1:-1;;52122:28:0;52081:34:::1;::::0;::::1;;::::0;;;::::1;-1:-1:-1::0;;52122:28:0;;;;;;::::1;;;::::0;;51879:277::o;49934:319::-;46837:10;46826:22;;;;:10;:22;;;;;;;;46818:52;;;;-1:-1:-1;;;46818:52:0;;;;;;;:::i;:::-;50036:6:::1;50032:216;50044:19:::0;;::::1;50032:216;;;50088:22;50097:8;;50106:1;50097:11;;;;;;;:::i;:::-;;;;;;;50088:7;:22::i;:::-;50079:63;;;::::0;-1:-1:-1;;;50079:63:0;;21559:2:1;50079:63:0::1;::::0;::::1;21541:21:1::0;21598:2;21578:18;;;21571:30;21637:28;21617:18;;;21610:56;21683:18;;50079:63:0::1;21357:350:1::0;50079:63:0::1;50186:5;-1:-1:-1::0;;;;;50160:31:0::1;:7;50169:8;;50178:1;50169:11;;;;;;;:::i;:::-;;;;;;;50160:22;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;50160:22:0::1;:31;50151:60;;;::::0;-1:-1:-1;;;50151:60:0;;18013:2:1;50151:60:0::1;::::0;::::1;17995:21:1::0;18052:2;18032:18;;;18025:30;-1:-1:-1;;;18071:18:1;;;18064:44;18125:18;;50151:60:0::1;17811:338:1::0;50151:60:0::1;50220:20;50227:8;;50236:1;50227:11;;;;;;;:::i;:::-;;;;;;;50220:5;:20::i;:::-;50065:3;::::0;::::1;:::i;:::-;;;50032:216;;;;49934:319:::0;;;:::o;31866:100::-;31917:7;31944;31952:5;31944:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;31944:14:0;;31866:100;-1:-1:-1;;31866:100:0:o;35570:106::-;35628:13;35661:7;35654:14;;;;;:::i;49416:487::-;49480:12;;;;49471:69;;;;-1:-1:-1;;;49471:69:0;;18356:2:1;49471:69:0;;;18338:21:1;18395:2;18375:18;;;18368:30;-1:-1:-1;;;18414:18:1;;;18407:48;18472:18;;49471:69:0;18154:342:1;49471:69:0;49568:9;;49556:8;:21;;49547:69;;;;-1:-1:-1;;;49547:69:0;;21914:2:1;49547:69:0;;;21896:21:1;21953:2;21933:18;;;21926:30;-1:-1:-1;;;21972:18:1;;;21965:43;22025:18;;49547:69:0;21712:337:1;49547:69:0;49662:8;49645:14;;:25;;;;:::i;:::-;49632:9;:38;;49623:78;;;;-1:-1:-1;;;49623:78:0;;24550:2:1;49623:78:0;;;24532:21:1;24589:2;24569:18;;;24562:30;-1:-1:-1;;;24608:18:1;;;24601:55;24673:18;;49623:78:0;24348:349:1;49623:78:0;49710:11;49724:13;:11;:13::i;:::-;49774:10;;49710:27;;-1:-1:-1;49753:17:0;49762:8;49710:27;49753:17;:::i;:::-;:31;;49744:71;;;;-1:-1:-1;;;49744:71:0;;;;;;;:::i;:::-;49826:6;49822:76;49838:8;49834:1;:12;49822:76;;;49861:29;49868:10;49880:8;;;;:::i;:::-;;;49861:5;:29::i;:::-;49848:3;;;:::i;:::-;;;49822:76;;36629:295;-1:-1:-1;;;;;36734:24:0;;28187:10;36734:24;;36726:62;;;;-1:-1:-1;;;36726:62:0;;17659:2:1;36726:62:0;;;17641:21:1;17698:2;17678:18;;;17671:30;17737:27;17717:18;;;17710:55;17782:18;;36726:62:0;17457:349:1;36726:62:0;28187:10;36799:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36799:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36799:53:0;;;;;;;;;;36868:48;;13602:41:1;;;36799:42:0;;28187:10;36868:48;;13575:18:1;36868:48:0;;;;;;;36629:295;;:::o;43353:245::-;43483:6;43479:112;43491:19;;;43479:112;;;43532:47;43550:4;43556:2;43560:8;;43569:1;43560:11;;;;;;;:::i;:::-;;;;;;;43573:4;;43532:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43532:16:0;;-1:-1:-1;;;43532:47:0:i;:::-;43512:3;;;:::i;:::-;;;43479:112;;;;43353:245;;;;;;:::o;37466:325::-;37638:41;28187:10;37671:7;37638:18;:41::i;:::-;37630:103;;;;-1:-1:-1;;;37630:103:0;;;;;;;:::i;:::-;37744:39;37758:4;37764:2;37768:7;37777:5;37744:13;:39::i;50880:679::-;46837:10;46826:22;;;;:10;:22;;;;;;;;46818:52;;;;-1:-1:-1;;;46818:52:0;;;;;;;:::i;:::-;50995:36;;::::1;50987:94;;;::::0;-1:-1:-1;;;50987:94:0;;26498:2:1;50987:94:0::1;::::0;::::1;26480:21:1::0;26537:2;26517:18;;;26510:30;26576:34;26556:18;;;26549:62;-1:-1:-1;;;26627:18:1;;;26620:40;26677:19;;50987:94:0::1;26296:406:1::0;50987:94:0::1;51090:10;51107:12:::0;51126::::1;51162:6:::0;51158:396:::1;51170:19:::0;;::::1;51158:396;;;51210:10;;51221:1;51210:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;51205:18:::0;-1:-1:-1;51265:1:0::1;51240:10:::0;;51251:1;51240:13;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51240:27:0::1;;;51232:70;;;::::0;-1:-1:-1;;;51232:70:0;;22256:2:1;51232:70:0::1;::::0;::::1;22238:21:1::0;22295:2;22275:18;;;22268:30;22334:31;22314:18;;;22307:59;22383:18;;51232:70:0::1;22054:353:1::0;51232:70:0::1;51323:8;;51332:1;51323:11;;;;;;;:::i;:::-;;;;;;;51313:21;;51353:18;51362:7;51353;:18::i;:::-;51352:19;51343:64;;;::::0;-1:-1:-1;;;51343:64:0;;27732:2:1;51343:64:0::1;::::0;::::1;27714:21:1::0;27771:2;27751:18;;;27744:30;27810:32;27790:18;;;27783:60;27860:18;;51343:64:0::1;27530:354:1::0;51343:64:0::1;51445:2;51426:7;51434;51426:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;;;;-1:-1:-1::0;;;;;51426:21:0::1;;;;;-1:-1:-1::0;;;;;51426:21:0::1;;;;;;51482:23;51491:4;51497:7;51482:8;:23::i;:::-;51538:7;51534:2;-1:-1:-1::0;;;;;51519:27:0::1;51528:4;-1:-1:-1::0;;;;;51519:27:0::1;-1:-1:-1::0;;;;;;;;;;;51519:27:0::1;;;;;;;;;51191:3;::::0;::::1;:::i;:::-;;;51158:396;;;;50980:579;;;50880:679:::0;;;;:::o;48534:240::-;48598:13;48628:16;48636:7;48628;:16::i;:::-;48620:56;;;;-1:-1:-1;;;48620:56:0;;14425:2:1;48620:56:0;;;14407:21:1;14464:2;14444:18;;;14437:30;14503:29;14483:18;;;14476:57;14550:18;;48620:56:0;14223:351:1;48620:56:0;48714:15;48731:18;:7;:16;:18::i;:::-;48751:15;48697:70;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48683:85;;48534:240;;;:::o;53060:133::-;45065:7;45092:6;-1:-1:-1;;;;;45092:6:0;28187:10;45239:23;45231:68;;;;-1:-1:-1;;;45231:68:0;;;;;;;:::i;:::-;53151:36:::1;53161:5;53168:7;53177:9;53151;:36::i;48802:608::-:0;48869:15;;;;;;;48860:69;;;;-1:-1:-1;;;48860:69:0;;25735:2:1;48860:69:0;;;25717:21:1;25774:2;25754:18;;;25747:30;-1:-1:-1;;;25793:18:1;;;25786:51;25854:18;;48860:69:0;25533:345:1;48860:69:0;48957:9;;48945:8;:21;;48936:69;;;;-1:-1:-1;;;48936:69:0;;21914:2:1;48936:69:0;;;21896:21:1;21953:2;21933:18;;;21926:30;-1:-1:-1;;;21972:18:1;;;21965:43;22025:18;;48936:69:0;21712:337:1;48936:69:0;49050:8;49034:13;;:24;;;;:::i;:::-;49021:9;:37;;49012:77;;;;-1:-1:-1;;;49012:77:0;;24550:2:1;49012:77:0;;;24532:21:1;24589:2;24569:18;;;24562:30;-1:-1:-1;;;24608:18:1;;;24601:55;24673:18;;49012:77:0;24348:349:1;49012:77:0;49116:10;49130:1;49105:22;;;:10;:22;;;;;;49096:69;;;;-1:-1:-1;;;49096:69:0;;28803:2:1;49096:69:0;;;28785:21:1;28842:2;28822:18;;;28815:30;-1:-1:-1;;;28861:18:1;;;28854:44;28915:18;;49096:69:0;28601:338:1;49096:69:0;49174:11;49188:13;:11;:13::i;:::-;49238:10;;49174:27;;-1:-1:-1;49217:17:0;49226:8;49174:27;49217:17;:::i;:::-;:31;;49208:71;;;;-1:-1:-1;;;49208:71:0;;;;;;;:::i;:::-;49297:10;49286:22;;;;:10;:22;;;;;:34;;49312:8;;49286:22;:34;;49312:8;;49286:34;:::i;:::-;;;;-1:-1:-1;49333:6:0;;-1:-1:-1;49329:76:0;49345:8;49341:1;:12;49329:76;;;49368:29;49375:10;49387:8;;;;:::i;49368:29::-;49355:3;;;:::i;:::-;;;49329:76;;50259:587;46837:10;46826:22;;;;:10;:22;;;;;;;;46818:52;;;;-1:-1:-1;;;46818:52:0;;;;;;;:::i;:::-;50376:35;;::::1;50368:93;;;::::0;-1:-1:-1;;;50368:93:0;;26085:2:1;50368:93:0::1;::::0;::::1;26067:21:1::0;26124:2;26104:18;;;26097:30;26163:34;26143:18;;;26136:62;-1:-1:-1;;;26214:18:1;;;26207:42;26266:19;;50368:93:0::1;25883:408:1::0;50368:93:0::1;50470:18;50495:11:::0;50509:13:::1;:11;:13::i;:::-;50495:27;;50533:6;50529:82;50541:19:::0;;::::1;50529:82;;;50592:8;;50601:1;50592:11;;;;;;;:::i;:::-;;;;;;;50575:28;;;;;:::i;:::-;::::0;-1:-1:-1;50562:3:0::1;::::0;::::1;:::i;:::-;;;50529:82;;;-1:-1:-1::0;50652:10:0::1;::::0;50626:22:::1;50635:13:::0;50626:6;:22:::1;:::i;:::-;:36;;50617:76;;;;-1:-1:-1::0;;;50617:76:0::1;;;;;;;:::i;:::-;50706:6;50702:139;50714:20:::0;;::::1;50702:139;;;50753:6;50749:85;50765:8;;50774:1;50765:11;;;;;;;:::i;:::-;;;;;;;50761:1;:15;50749:85;;;50793:31;50800:9;;50810:1;50800:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;50814:8:::0;::::1;::::0;::::1;:::i;:::-;;;50793:5;:31::i;:::-;50778:3;::::0;::::1;:::i;:::-;;;50749:85;;;-1:-1:-1::0;50736:3:0::1;::::0;::::1;:::i;:::-;;;50702:139;;47145:161:::0;45065:7;45092:6;-1:-1:-1;;;;;45092:6:0;28187:10;45239:23;45231:68;;;;-1:-1:-1;;;45231:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47231:20:0;::::1;;::::0;;;47254:4:::1;47231:20;::::0;;;;;;;:27;;-1:-1:-1;;47231:27:0::1;::::0;;::::1;::::0;;47265:35:::1;47242:8:::0;47265:23:::1;:35::i;:::-;47145:161:::0;:::o;52659:265::-;46837:10;46826:22;;;;:10;:22;;;;;;;;46818:52;;;;-1:-1:-1;;;46818:52:0;;;;;;;:::i;:::-;52772:12:::1;52755:13;;:29;;:64;;;;52806:13;52788:14;;:31;;52755:64;52746:100;;;;-1:-1:-1::0;;;52746:100:0::1;;;;;;;:::i;:::-;52853:13;:28:::0;;;;52888:14:::1;:30:::0;52659:265::o;35257:305::-;35359:4;-1:-1:-1;;;;;;35396:40:0;;-1:-1:-1;;;35396:40:0;;:105;;-1:-1:-1;;;;;;;35453:48:0;;-1:-1:-1;;;35453:48:0;35396:105;:158;;;-1:-1:-1;;;;;;;;;;20625:40:0;;;35518:36;20516:157;39270:152;39366:7;:14;39332:4;;39356:24;;:58;;;;;39412:1;-1:-1:-1;;;;;39384:30:0;:7;39392;39384:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;39384:16:0;:30;;39349:65;39270:152;-1:-1:-1;;39270:152:0:o;37817:172::-;37889:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37889:29:0;-1:-1:-1;;;;;37889:29:0;;;;;;;;:24;;37943;37889;37943:15;:24::i;:::-;-1:-1:-1;;;;;37934:47:0;;;;;;;;;;;37817:172;;:::o;32785:474::-;-1:-1:-1;;;;;32866:21:0;;32858:78;;;;-1:-1:-1;;;32858:78:0;;15612:2:1;32858:78:0;;;15594:21:1;15651:2;15631:18;;;15624:30;15690:34;15670:18;;;15663:62;-1:-1:-1;;;15741:18:1;;;15734:42;15793:19;;32858:78:0;15410:408:1;32858:78:0;32965:1;32955:7;:11;32947:53;;;;-1:-1:-1;;;32947:53:0;;28445:2:1;32947:53:0;;;28427:21:1;28484:2;28464:18;;;28457:30;28523:31;28503:18;;;28496:59;28572:18;;32947:53:0;28243:353:1;32947:53:0;-1:-1:-1;;;;;33019:16:0;;;;;;:7;:16;;;;;;:21;33011:77;;;;-1:-1:-1;;;33011:77:0;;26909:2:1;33011:77:0;;;26891:21:1;26948:2;26928:18;;;26921:30;26987:34;26967:18;;;26960:62;-1:-1:-1;;;27038:18:1;;;27031:41;27089:19;;33011:77:0;26707:407:1;33011:77:0;33101:7;:21;;;;;;;;;;;;-1:-1:-1;;;;;;33101:21:0;-1:-1:-1;;;;;33101:21:0;;;;;;;;-1:-1:-1;33133:16:0;;;:7;33101:21;33133:16;;;;:26;;;33185:12;;:22;;33133:26;;33185:22;:::i;:::-;33170:12;:37;33223:28;;;-1:-1:-1;;;;;11966:32:1;;11948:51;;12030:2;12015:18;;12008:34;;;33223:28:0;;11921:18:1;33223:28:0;;;;;;;32785:474;;:::o;11694:317::-;11809:6;11784:21;:31;;11776:73;;;;-1:-1:-1;;;11776:73:0;;19130:2:1;11776:73:0;;;19112:21:1;19169:2;19149:18;;;19142:30;19208:31;19188:18;;;19181:59;19257:18;;11776:73:0;18928:353:1;11776:73:0;11863:12;11881:9;-1:-1:-1;;;;;11881:14:0;11903:6;11881:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11862:52;;;11933:7;11925:78;;;;-1:-1:-1;;;11925:78:0;;18703:2:1;11925:78:0;;;18685:21:1;18742:2;18722:18;;;18715:30;18781:34;18761:18;;;18754:62;18852:28;18832:18;;;18825:56;18898:19;;11925:78:0;18501:422:1;39430:346:0;39520:4;39545:16;39553:7;39545;:16::i;:::-;39537:73;;;;-1:-1:-1;;;39537:73:0;;19488:2:1;39537:73:0;;;19470:21:1;19527:2;19507:18;;;19500:30;19566:34;19546:18;;;19539:62;-1:-1:-1;;;19617:18:1;;;19610:42;19669:19;;39537:73:0;19286:408:1;39537:73:0;39621:13;39637:24;39653:7;39637:15;:24::i;:::-;39621:40;;39691:5;-1:-1:-1;;;;;39680:16:0;:7;-1:-1:-1;;;;;39680:16:0;;:51;;;;39724:7;-1:-1:-1;;;;;39700:31:0;:20;39712:7;39700:11;:20::i;:::-;-1:-1:-1;;;;;39700:31:0;;39680:51;:87;;;-1:-1:-1;;;;;;36578:25:0;;;36554:4;36578:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39735:32;39672:96;39430:346;-1:-1:-1;;;;39430:346:0:o;40998:514::-;41155:4;-1:-1:-1;;;;;41127:32:0;:24;41143:7;41127:15;:24::i;:::-;-1:-1:-1;;;;;41127:32:0;;41119:86;;;;-1:-1:-1;;;41119:86:0;;23738:2:1;41119:86:0;;;23720:21:1;23777:2;23757:18;;;23750:30;23816:34;23796:18;;;23789:62;-1:-1:-1;;;23867:18:1;;;23860:39;23916:19;;41119:86:0;23536:405:1;41119:86:0;-1:-1:-1;;;;;41224:16:0;;41216:65;;;;-1:-1:-1;;;41216:65:0;;17254:2:1;41216:65:0;;;17236:21:1;17293:2;17273:18;;;17266:30;17332:34;17312:18;;;17305:62;-1:-1:-1;;;17383:18:1;;;17376:34;17427:19;;41216:65:0;17052:400:1;41216:65:0;41398:29;41415:1;41419:7;41398:8;:29::i;:::-;41457:2;41438:7;41446;41438:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;41438:21:0;-1:-1:-1;;;;;41438:21:0;;;;;;41477:27;;41496:7;;41477:27;;;;;;;;-1:-1:-1;;;;;;;;;;;41477:27:0;41438:16;41477:27;40998:514;;;:::o;46289:191::-;46363:16;46382:6;;-1:-1:-1;;;;;46399:17:0;;;-1:-1:-1;;;;;;46399:17:0;;;;;;46432:40;;46382:6;;;;;;;46432:40;;46363:16;46432:40;46352:128;46289:191;:::o;53215:249::-;53269:16;53288:24;53304:7;53288:15;:24::i;:::-;53269:43;;53345:26;53354:7;45065;45092:6;-1:-1:-1;;;;;45092:6:0;;45019:87;53354:7;53363;53345:8;:26::i;:::-;53405:1;53378:7;53386;53378:16;;;;;;;;:::i;:::-;;;;;;;;;:29;;-1:-1:-1;;;;;;53378:29:0;-1:-1:-1;;;;;53378:29:0;;;;;;53419:39;;53450:7;;53419:39;;;-1:-1:-1;;;;;;;;;;;53419:39:0;53378:16;;53419:39;53262:202;53215:249;:::o;53470:133::-;53536:7;:16;;;;;;;-1:-1:-1;53536:16:0;;;;;;;-1:-1:-1;;;;;;53536:16:0;-1:-1:-1;;;;;53536:16:0;;;;;;;;53564:33;;53589:7;;-1:-1:-1;;;;;;;;;;;;53564:33:0;-1:-1:-1;;53564:33:0;53470:133;;:::o;40678:312::-;40832:28;40842:4;40848:2;40852:7;40832:9;:28::i;:::-;40879:48;40902:4;40908:2;40912:7;40921:5;40879:22;:48::i;:::-;40871:111;;;;-1:-1:-1;;;40871:111:0;;;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;33267:232;-1:-1:-1;;;;;33383:18:0;;;;;;:7;:18;;;;;;33368:12;;33404:9;;33368:33;;;:::i;:::-;:45;;;;:::i;:::-;33353:12;:60;-1:-1:-1;;;;;33424:18:0;;;;;;:7;:18;;;;;:30;;;33465:7;:16;;33433:7;;33465;33474:5;;33465:16;;;;;;:::i;:::-;;;;;;;;;:26;;;;;-1:-1:-1;;;;;33465:26:0;;;;;-1:-1:-1;;;;;33465:26:0;;;;;;33267:232;;;:::o;45928:201::-;45065:7;45092:6;-1:-1:-1;;;;;45092:6:0;28187:10;45239:23;45231:68;;;;-1:-1:-1;;;45231:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46017:22:0;::::1;46009:73;;;::::0;-1:-1:-1;;;46009:73:0;;16025:2:1;46009:73:0::1;::::0;::::1;16007:21:1::0;16064:2;16044:18;;;16037:30;16103:34;16083:18;;;16076:62;-1:-1:-1;;;16154:18:1;;;16147:36;16200:19;;46009:73:0::1;15823:402:1::0;46009:73:0::1;46093:28;46112:8;46093:18;:28::i;38466:796::-:0;38618:4;-1:-1:-1;;;;;38639:13:0;;10695:20;10743:8;38635:620;;38675:72;;-1:-1:-1;;;38675:72:0;;-1:-1:-1;;;;;38675:36:0;;;;;:72;;28187:10;;38726:4;;38732:7;;38741:5;;38675:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38675:72:0;;;;;;;;-1:-1:-1;;38675:72:0;;;;;;;;;;;;:::i;:::-;;;38671:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38917:13:0;;38913:272;;38960:60;;-1:-1:-1;;;38960:60:0;;;;;;;:::i;38913:272::-;39135:6;39129:13;39120:6;39116:2;39112:15;39105:38;38671:529;-1:-1:-1;;;;;;38798:51:0;-1:-1:-1;;;38798:51:0;;-1:-1:-1;38791:58:0;;38635:620;-1:-1:-1;39239:4:0;38466:796;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:367:1;77:8;87:6;141:3;134:4;126:6;122:17;118:27;108:55;;159:1;156;149:12;108:55;-1:-1:-1;182:20:1;;225:18;214:30;;211:50;;;257:1;254;247:12;211:50;294:4;286:6;282:17;270:29;;354:3;347:4;337:6;334:1;330:14;322:6;318:27;314:38;311:47;308:67;;;371:1;368;361:12;308:67;14:367;;;;;:::o;386:160::-;451:20;;507:13;;500:21;490:32;;480:60;;536:1;533;526:12;551:347;602:8;612:6;666:3;659:4;651:6;647:17;643:27;633:55;;684:1;681;674:12;633:55;-1:-1:-1;707:20:1;;750:18;739:30;;736:50;;;782:1;779;772:12;736:50;819:4;811:6;807:17;795:29;;871:3;864:4;855:6;847;843:19;839:30;836:39;833:59;;;888:1;885;878:12;903:247;962:6;1015:2;1003:9;994:7;990:23;986:32;983:52;;;1031:1;1028;1021:12;983:52;1070:9;1057:23;1089:31;1114:5;1089:31;:::i;1415:388::-;1483:6;1491;1544:2;1532:9;1523:7;1519:23;1515:32;1512:52;;;1560:1;1557;1550:12;1512:52;1599:9;1586:23;1618:31;1643:5;1618:31;:::i;:::-;1668:5;-1:-1:-1;1725:2:1;1710:18;;1697:32;1738:33;1697:32;1738:33;:::i;:::-;1790:7;1780:17;;;1415:388;;;;;:::o;1808:1022::-;1932:6;1940;1948;1956;1964;1972;2025:3;2013:9;2004:7;2000:23;1996:33;1993:53;;;2042:1;2039;2032:12;1993:53;2081:9;2068:23;2100:31;2125:5;2100:31;:::i;:::-;2150:5;-1:-1:-1;2207:2:1;2192:18;;2179:32;2220:33;2179:32;2220:33;:::i;:::-;2272:7;-1:-1:-1;2330:2:1;2315:18;;2302:32;2353:18;2383:14;;;2380:34;;;2410:1;2407;2400:12;2380:34;2449:70;2511:7;2502:6;2491:9;2487:22;2449:70;:::i;:::-;2538:8;;-1:-1:-1;2423:96:1;-1:-1:-1;2626:2:1;2611:18;;2598:32;;-1:-1:-1;2642:16:1;;;2639:36;;;2671:1;2668;2661:12;2639:36;;2710:60;2762:7;2751:8;2740:9;2736:24;2710:60;:::i;:::-;1808:1022;;;;-1:-1:-1;1808:1022:1;;-1:-1:-1;1808:1022:1;;2789:8;;1808:1022;-1:-1:-1;;;1808:1022:1:o;2835:456::-;2912:6;2920;2928;2981:2;2969:9;2960:7;2956:23;2952:32;2949:52;;;2997:1;2994;2987:12;2949:52;3036:9;3023:23;3055:31;3080:5;3055:31;:::i;:::-;3105:5;-1:-1:-1;3162:2:1;3147:18;;3134:32;3175:33;3134:32;3175:33;:::i;:::-;2835:456;;3227:7;;-1:-1:-1;;;3281:2:1;3266:18;;;;3253:32;;2835:456::o;3296:1266::-;3391:6;3399;3407;3415;3468:3;3456:9;3447:7;3443:23;3439:33;3436:53;;;3485:1;3482;3475:12;3436:53;3524:9;3511:23;3543:31;3568:5;3543:31;:::i;:::-;3593:5;-1:-1:-1;3650:2:1;3635:18;;3622:32;3663:33;3622:32;3663:33;:::i;:::-;3715:7;-1:-1:-1;3769:2:1;3754:18;;3741:32;;-1:-1:-1;3824:2:1;3809:18;;3796:32;3847:18;3877:14;;;3874:34;;;3904:1;3901;3894:12;3874:34;3942:6;3931:9;3927:22;3917:32;;3987:7;3980:4;3976:2;3972:13;3968:27;3958:55;;4009:1;4006;3999:12;3958:55;4045:2;4032:16;4067:2;4063;4060:10;4057:36;;;4073:18;;:::i;:::-;4148:2;4142:9;4116:2;4202:13;;-1:-1:-1;;4198:22:1;;;4222:2;4194:31;4190:40;4178:53;;;4246:18;;;4266:22;;;4243:46;4240:72;;;4292:18;;:::i;:::-;4332:10;4328:2;4321:22;4367:2;4359:6;4352:18;4407:7;4402:2;4397;4393;4389:11;4385:20;4382:33;4379:53;;;4428:1;4425;4418:12;4379:53;4484:2;4479;4475;4471:11;4466:2;4458:6;4454:15;4441:46;4529:1;4524:2;4519;4511:6;4507:15;4503:24;4496:35;4550:6;4540:16;;;;;;;3296:1266;;;;;;;:::o;4567:572::-;4662:6;4670;4678;4731:2;4719:9;4710:7;4706:23;4702:32;4699:52;;;4747:1;4744;4737:12;4699:52;4786:9;4773:23;4805:31;4830:5;4805:31;:::i;:::-;4855:5;-1:-1:-1;4911:2:1;4896:18;;4883:32;4938:18;4927:30;;4924:50;;;4970:1;4967;4960:12;4924:50;5009:70;5071:7;5062:6;5051:9;5047:22;5009:70;:::i;:::-;4567:572;;5098:8;;-1:-1:-1;4983:96:1;;-1:-1:-1;;;;4567:572:1:o;5144:315::-;5209:6;5217;5270:2;5258:9;5249:7;5245:23;5241:32;5238:52;;;5286:1;5283;5276:12;5238:52;5325:9;5312:23;5344:31;5369:5;5344:31;:::i;:::-;5394:5;-1:-1:-1;5418:35:1;5449:2;5434:18;;5418:35;:::i;:::-;5408:45;;5144:315;;;;;:::o;5464:::-;5532:6;5540;5593:2;5581:9;5572:7;5568:23;5564:32;5561:52;;;5609:1;5606;5599:12;5561:52;5648:9;5635:23;5667:31;5692:5;5667:31;:::i;:::-;5717:5;5769:2;5754:18;;;;5741:32;;-1:-1:-1;;;5464:315:1:o;5784:773::-;5906:6;5914;5922;5930;5983:2;5971:9;5962:7;5958:23;5954:32;5951:52;;;5999:1;5996;5989:12;5951:52;6039:9;6026:23;6068:18;6109:2;6101:6;6098:14;6095:34;;;6125:1;6122;6115:12;6095:34;6164:70;6226:7;6217:6;6206:9;6202:22;6164:70;:::i;:::-;6253:8;;-1:-1:-1;6138:96:1;-1:-1:-1;6341:2:1;6326:18;;6313:32;;-1:-1:-1;6357:16:1;;;6354:36;;;6386:1;6383;6376:12;6354:36;;6425:72;6489:7;6478:8;6467:9;6463:24;6425:72;:::i;:::-;5784:773;;;;-1:-1:-1;6516:8:1;-1:-1:-1;;;;5784:773:1:o;7340:248::-;7402:6;7410;7463:2;7451:9;7442:7;7438:23;7434:32;7431:52;;;7479:1;7476;7469:12;7431:52;7502:26;7518:9;7502:26;:::i;7593:245::-;7651:6;7704:2;7692:9;7683:7;7679:23;7675:32;7672:52;;;7720:1;7717;7710:12;7672:52;7759:9;7746:23;7778:30;7802:5;7778:30;:::i;7843:249::-;7912:6;7965:2;7953:9;7944:7;7940:23;7936:32;7933:52;;;7981:1;7978;7971:12;7933:52;8013:9;8007:16;8032:30;8056:5;8032:30;:::i;8097:719::-;8189:6;8197;8205;8213;8266:2;8254:9;8245:7;8241:23;8237:32;8234:52;;;8282:1;8279;8272:12;8234:52;8322:9;8309:23;8351:18;8392:2;8384:6;8381:14;8378:34;;;8408:1;8405;8398:12;8378:34;8447:58;8497:7;8488:6;8477:9;8473:22;8447:58;:::i;:::-;8524:8;;-1:-1:-1;8421:84:1;-1:-1:-1;8612:2:1;8597:18;;8584:32;;-1:-1:-1;8628:16:1;;;8625:36;;;8657:1;8654;8647:12;8625:36;;8696:60;8748:7;8737:8;8726:9;8722:24;8696:60;:::i;8821:180::-;8880:6;8933:2;8921:9;8912:7;8908:23;8904:32;8901:52;;;8949:1;8946;8939:12;8901:52;-1:-1:-1;8972:23:1;;8821:180;-1:-1:-1;8821:180:1:o;9006:383::-;9083:6;9091;9099;9152:2;9140:9;9131:7;9127:23;9123:32;9120:52;;;9168:1;9165;9158:12;9120:52;9204:9;9191:23;9181:33;;9264:2;9253:9;9249:18;9236:32;9277:31;9302:5;9277:31;:::i;9394:248::-;9462:6;9470;9523:2;9511:9;9502:7;9498:23;9494:32;9491:52;;;9539:1;9536;9529:12;9491:52;-1:-1:-1;;9562:23:1;;;9632:2;9617:18;;;9604:32;;-1:-1:-1;9394:248:1:o;9647:257::-;9688:3;9726:5;9720:12;9753:6;9748:3;9741:19;9769:63;9825:6;9818:4;9813:3;9809:14;9802:4;9795:5;9791:16;9769:63;:::i;:::-;9886:2;9865:15;-1:-1:-1;;9861:29:1;9852:39;;;;9893:4;9848:50;;9647:257;-1:-1:-1;;9647:257:1:o;9909:973::-;9994:12;;9959:3;;10049:1;10069:18;;;;10122;;;;10149:61;;10203:4;10195:6;10191:17;10181:27;;10149:61;10229:2;10277;10269:6;10266:14;10246:18;10243:38;10240:161;;;10323:10;10318:3;10314:20;10311:1;10304:31;10358:4;10355:1;10348:15;10386:4;10383:1;10376:15;10240:161;10417:18;10444:104;;;;10562:1;10557:319;;;;10410:466;;10444:104;-1:-1:-1;;10477:24:1;;10465:37;;10522:16;;;;-1:-1:-1;10444:104:1;;10557:319;29199:1;29192:14;;;29236:4;29223:18;;10651:1;10665:165;10679:6;10676:1;10673:13;10665:165;;;10757:14;;10744:11;;;10737:35;10800:16;;;;10694:10;;10665:165;;;10669:3;;10859:6;10854:3;10850:16;10843:23;;10410:466;;;;;;;9909:973;;;;:::o;10887:456::-;11108:3;11136:38;11170:3;11162:6;11136:38;:::i;:::-;11203:6;11197:13;11219:52;11264:6;11260:2;11253:4;11245:6;11241:17;11219:52;:::i;:::-;11287:50;11329:6;11325:2;11321:15;11313:6;11287:50;:::i;:::-;11280:57;10887:456;-1:-1:-1;;;;;;;10887:456:1:o;12053:488::-;-1:-1:-1;;;;;12322:15:1;;;12304:34;;12374:15;;12369:2;12354:18;;12347:43;12421:2;12406:18;;12399:34;;;12469:3;12464:2;12449:18;;12442:31;;;12247:4;;12490:45;;12515:19;;12507:6;12490:45;:::i;:::-;12482:53;12053:488;-1:-1:-1;;;;;;12053:488:1:o;12825:632::-;12996:2;13048:21;;;13118:13;;13021:18;;;13140:22;;;12967:4;;12996:2;13219:15;;;;13193:2;13178:18;;;12967:4;13262:169;13276:6;13273:1;13270:13;13262:169;;;13337:13;;13325:26;;13406:15;;;;13371:12;;;;13298:1;13291:9;13262:169;;;-1:-1:-1;13448:3:1;;12825:632;-1:-1:-1;;;;;;12825:632:1:o;13654:219::-;13803:2;13792:9;13785:21;13766:4;13823:44;13863:2;13852:9;13848:18;13840:6;13823:44;:::i;13878:340::-;14080:2;14062:21;;;14119:2;14099:18;;;14092:30;-1:-1:-1;;;14153:2:1;14138:18;;14131:46;14209:2;14194:18;;13878:340::o;14991:414::-;15193:2;15175:21;;;15232:2;15212:18;;;15205:30;15271:34;15266:2;15251:18;;15244:62;-1:-1:-1;;;15337:2:1;15322:18;;15315:48;15395:3;15380:19;;14991:414::o;22825:356::-;23027:2;23009:21;;;23046:18;;;23039:30;23105:34;23100:2;23085:18;;23078:62;23172:2;23157:18;;22825:356::o;23186:345::-;23388:2;23370:21;;;23427:2;23407:18;;;23400:30;-1:-1:-1;;;23461:2:1;23446:18;;23439:51;23522:2;23507:18;;23186:345::o;24702:413::-;24904:2;24886:21;;;24943:2;24923:18;;;24916:30;24982:34;24977:2;24962:18;;24955:62;-1:-1:-1;;;25048:2:1;25033:18;;25026:47;25105:3;25090:19;;24702:413::o;27889:349::-;28091:2;28073:21;;;28130:2;28110:18;;;28103:30;28169:27;28164:2;28149:18;;28142:55;28229:2;28214:18;;27889:349::o;29252:128::-;29292:3;29323:1;29319:6;29316:1;29313:13;29310:39;;;29329:18;;:::i;:::-;-1:-1:-1;29365:9:1;;29252:128::o;29385:120::-;29425:1;29451;29441:35;;29456:18;;:::i;:::-;-1:-1:-1;29490:9:1;;29385:120::o;29510:168::-;29550:7;29616:1;29612;29608:6;29604:14;29601:1;29598:21;29593:1;29586:9;29579:17;29575:45;29572:71;;;29623:18;;:::i;:::-;-1:-1:-1;29663:9:1;;29510:168::o;29683:125::-;29723:4;29751:1;29748;29745:8;29742:34;;;29756:18;;:::i;:::-;-1:-1:-1;29793:9:1;;29683:125::o;29813:258::-;29885:1;29895:113;29909:6;29906:1;29903:13;29895:113;;;29985:11;;;29979:18;29966:11;;;29959:39;29931:2;29924:10;29895:113;;;30026:6;30023:1;30020:13;30017:48;;;-1:-1:-1;;30061:1:1;30043:16;;30036:27;29813:258::o;30076:380::-;30155:1;30151:12;;;;30198;;;30219:61;;30273:4;30265:6;30261:17;30251:27;;30219:61;30326:2;30318:6;30315:14;30295:18;30292:38;30289:161;;;30372:10;30367:3;30363:20;30360:1;30353:31;30407:4;30404:1;30397:15;30435:4;30432:1;30425:15;30289:161;;30076:380;;;:::o;30461:135::-;30500:3;-1:-1:-1;;30521:17:1;;30518:43;;;30541:18;;:::i;:::-;-1:-1:-1;30588:1:1;30577:13;;30461:135::o;30601:112::-;30633:1;30659;30649:35;;30664:18;;:::i;:::-;-1:-1:-1;30698:9:1;;30601:112::o;30718:127::-;30779:10;30774:3;30770:20;30767:1;30760:31;30810:4;30807:1;30800:15;30834:4;30831:1;30824:15;30850:127;30911:10;30906:3;30902:20;30899:1;30892:31;30942:4;30939:1;30932:15;30966:4;30963:1;30956:15;30982:127;31043:10;31038:3;31034:20;31031:1;31024:31;31074:4;31071:1;31064:15;31098:4;31095:1;31088:15;31114:127;31175:10;31170:3;31166:20;31163:1;31156:31;31206:4;31203:1;31196:15;31230:4;31227:1;31220:15;31246:131;-1:-1:-1;;;;;31321:31:1;;31311:42;;31301:70;;31367:1;31364;31357:12;31382:131;-1:-1:-1;;;;;;31456:32:1;;31446:43;;31436:71;;31503:1;31500;31493:12

Swarm Source

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