ETH Price: $3,398.10 (+6.60%)
Gas: 14 Gwei

Token

CyberBulls ()
 

Overview

Max Total Supply

20 CyberBulls

Holders

8

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mpampas.eth
Balance
2 CyberBulls
0xc300ae31dbc4581c3e7ef145c2c00e60fe48235d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CyberBulls

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-20
*/

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(
        address indexed owner,
        address indexed approved,
        uint256 indexed tokenId
    );

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

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

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

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

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator)
        external
        view
        returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: CyberGroup/CyberBullsERC721.sol

pragma solidity ^0.8.0;

contract CyberBullsERC721 is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;
    using Address for address;

    string private baseURI;

    uint256 public maxGenesis;
    uint256 public maxTokens;
    uint256 public maxPresale = 0;
    uint256 public babyCount = 0;

    uint256 public price = 0.1 ether;

    bool public presaleActive = false;
    bool public saleActive = false;

    mapping(address => bool) public presaleAllowed;
    mapping(address => uint256) public balanceGenesis;

    constructor(
        string memory name,
        string memory symbol,
        uint256 maxGen,
        uint256 maxPres,
        uint256 maxTks
    ) ERC721(name, symbol) {
        maxGenesis = maxGen;
        maxPresale = maxPres;
        maxTokens = maxTks;
    }

    event TokenMinted(uint256 token, address by);

    function mintPresale() external payable {
        uint256 supply = totalSupply();

        require(presaleActive, "Presale is not active or already over");
        require(
            presaleAllowed[msg.sender],
            "Your address is not whitelisted for the presale"
        );
        require(
            supply.add(1) <= maxPresale,
            "Cannot mint because it would exceed the presale limits"
        );
        require(price == msg.value, "Not enough ETH value");

        presaleAllowed[msg.sender] = false;

        _safeMint(msg.sender, supply);
        balanceGenesis[msg.sender]++;
        emit TokenMinted(supply, msg.sender);
    }

    function mint(uint256 amount) external payable {
        uint256 supply = totalSupply();

        require(saleActive, "Sale is not yet active");
        require(
            amount > 0 && amount < 6,
            "You can only mint between 1-5 tokens"
        );
        require(
            supply.add(amount) <= maxGenesis,
            "Cannot mint because it would exceed the sale limits"
        );
        require(price.mul(amount) == msg.value, "Not enough ETH value");

        for (uint256 i; i < amount; i++) {
            _safeMint(msg.sender, supply + i);
            balanceGenesis[msg.sender]++;

            emit TokenMinted(supply + i, msg.sender);
        }
    }

    function allowPresaleAddresses(address[] calldata presaleAddresses)
        external
        onlyOwner
    {
        for (uint256 i; i < presaleAddresses.length; i++) {
            presaleAllowed[presaleAddresses[i]] = true;
        }
    }

    function getTokensOwnedBy(address owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 balance = balanceOf(owner);

        uint256[] memory tokens = new uint256[](balance);
        for (uint256 i; i < balance; i++) {
            tokens[i] = tokenOfOwnerByIndex(owner, i);
        }

        return tokens;
    }

    function togglePresale() external onlyOwner {
        presaleActive = !presaleActive;
        if (presaleActive && saleActive) saleActive = false;
    }

    function toggleSale() external onlyOwner {
        saleActive = !saleActive;
        if (saleActive && presaleActive) presaleActive = false;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        return
            string(
                abi.encodePacked(
                    "https://meta.cyberbulls.io/",
                    tokenId.toString(),
                    ".json"
                )
            );
    }
}

// File: CyberGroup/CyberBulls.sol

pragma solidity ^0.8.0;

interface IBeef {
    function spend(address _from, uint256 _amount) external;
}

contract CyberBulls is CyberBullsERC721 {
    modifier tokenOwner(uint256 token) {
        require(ownerOf(token) == msg.sender, "You do not own this token");
        _;
    }

    IBeef public $Beef;

    uint256 public constant BREED_BEEF = 650 ether;

    event BullBreed(uint256 babyId, uint256 parent1, uint256 parent2);

    constructor() CyberBullsERC721("CyberBulls", "", 3333, 1000, 9999) {
        for (uint256 i = 0; i < 10; i++) {
            _safeMint(msg.sender, i);
            balanceGenesis[msg.sender]++;
        }
    }

    function breed(uint256 parent1, uint256 parent2)
        external
        tokenOwner(parent1)
        tokenOwner(parent2)
    {
        uint256 supply = totalSupply();

        require(
            supply >= maxGenesis,
            "You can only breed after all Genesis Bulls are minted"
        );
        require(supply < maxTokens, "Maximum number of baby Bulls reached");
        require(
            parent1 < maxGenesis && parent2 < maxGenesis,
            "Cannot breed two babies (kinda gross ngl)"
        );
        require(
            parent1 != parent2,
            "You cannot breed a Bull with itself, but I admire your attempt"
        );

        $Beef.spend(msg.sender, BREED_BEEF);
        uint256 babyId = maxGenesis + babyCount;
        babyCount++;
        _safeMint(msg.sender, babyId);

        emit BullBreed(babyId, parent1, parent2);
    }

    function setBeefToken(address remote) external onlyOwner {
        $Beef = IBeef(remote);
    }
}

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":false,"internalType":"uint256","name":"babyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"parent1","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"parent2","type":"uint256"}],"name":"BullBreed","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":"uint256","name":"token","type":"uint256"},{"indexed":false,"internalType":"address","name":"by","type":"address"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"$Beef","outputs":[{"internalType":"contract IBeef","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BREED_BEEF","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"presaleAddresses","type":"address[]"}],"name":"allowPresaleAddresses","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":[],"name":"babyCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceGenesis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"parent1","type":"uint256"},{"internalType":"uint256","name":"parent2","type":"uint256"}],"name":"breed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getTokensOwnedBy","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGenesis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPresale","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":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"remote","type":"address"}],"name":"setBeefToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600e556000600f5567016345785d8a00006010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055503480156200005d57600080fd5b506040518060400160405280600a81526020017f437962657242756c6c730000000000000000000000000000000000000000000081525060405180602001604052806000815250610d056103e861270f84848160009080519060200190620000c792919062000c66565b508060019080519060200190620000e092919062000c66565b50505062000103620000f7620001b060201b60201c565b620001b860201b60201c565b82600c8190555081600e8190555080600d81905550505050505060005b600a811015620001a9576200013c33826200027e60201b60201c565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906200018e90620010d5565b91905055508080620001a090620010d5565b91505062000120565b50620012ff565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002a0828260405180602001604052806000815250620002a460201b60201c565b5050565b620002b683836200031260201b60201c565b620002cb6000848484620004f860201b60201c565b6200030d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003049062000eb2565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000385576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037c9062000f18565b60405180910390fd5b6200039681620006b260201b60201c565b15620003d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003d09062000ed4565b60405180910390fd5b620003ed600083836200071e60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200043f919062000f67565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620005268473ffffffffffffffffffffffffffffffffffffffff166200086560201b620021891760201c565b15620006a5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000558620001b060201b60201c565b8786866040518563ffffffff1660e01b81526004016200057c949392919062000e5e565b602060405180830381600087803b1580156200059757600080fd5b505af1925050508015620005cb57506040513d601f19601f82011682018060405250810190620005c8919062000d2d565b60015b62000654573d8060008114620005fe576040519150601f19603f3d011682016040523d82523d6000602084013e62000603565b606091505b506000815114156200064c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006439062000eb2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620006aa565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620007368383836200087860201b6200219c1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000783576200077d816200087d60201b60201c565b620007cb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620007ca57620007c98382620008c660201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200081857620008128162000a4360201b60201c565b62000860565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200085f576200085e828262000b1f60201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001620008e08462000bab60201b6200129d1760201c565b620008ec919062000fc4565b9050600060076000848152602001908152602001600020549050818114620009d2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000a59919062000fc4565b905060006009600084815260200190815260200160002054905060006008838154811062000a8c5762000a8b620011b0565b5b90600052602060002001549050806008838154811062000ab15762000ab0620011b0565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000b035762000b0262001181565b5b6001900381819060005260206000200160009055905550505050565b600062000b378362000bab60201b6200129d1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000c1f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c169062000ef6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000c74906200109f565b90600052602060002090601f01602090048101928262000c98576000855562000ce4565b82601f1062000cb357805160ff191683800117855562000ce4565b8280016001018555821562000ce4579182015b8281111562000ce357825182559160200191906001019062000cc6565b5b50905062000cf3919062000cf7565b5090565b5b8082111562000d1257600081600090555060010162000cf8565b5090565b60008151905062000d2781620012e5565b92915050565b60006020828403121562000d465762000d45620011df565b5b600062000d568482850162000d16565b91505092915050565b62000d6a8162000fff565b82525050565b600062000d7d8262000f3a565b62000d89818562000f45565b935062000d9b81856020860162001069565b62000da681620011e4565b840191505092915050565b600062000dc060328362000f56565b915062000dcd82620011f5565b604082019050919050565b600062000de7601c8362000f56565b915062000df48262001244565b602082019050919050565b600062000e0e602a8362000f56565b915062000e1b826200126d565b604082019050919050565b600062000e3560208362000f56565b915062000e4282620012bc565b602082019050919050565b62000e58816200105f565b82525050565b600060808201905062000e75600083018762000d5f565b62000e84602083018662000d5f565b62000e93604083018562000e4d565b818103606083015262000ea7818462000d70565b905095945050505050565b6000602082019050818103600083015262000ecd8162000db1565b9050919050565b6000602082019050818103600083015262000eef8162000dd8565b9050919050565b6000602082019050818103600083015262000f118162000dff565b9050919050565b6000602082019050818103600083015262000f338162000e26565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000f74826200105f565b915062000f81836200105f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000fb95762000fb862001123565b5b828201905092915050565b600062000fd1826200105f565b915062000fde836200105f565b92508282101562000ff45762000ff362001123565b5b828203905092915050565b60006200100c826200103f565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620010895780820151818401526020810190506200106c565b8381111562001099576000848401525b50505050565b60006002820490506001821680620010b857607f821691505b60208210811415620010cf57620010ce62001152565b5b50919050565b6000620010e2826200105f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562001118576200111762001123565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b620012f08162001013565b8114620012fc57600080fd5b50565b614f4c806200130f6000396000f3fe6080604052600436106102305760003560e01c806368428a1b1161012e578063a22cb465116100ab578063e2b26b151161006f578063e2b26b15146107eb578063e831574214610828578063e985e9c514610853578063f2fde38b14610890578063f3d6b71c146108b957610230565b8063a22cb46514610729578063b88d4fde14610752578063c87b56dd1461077b578063d9ecad7b146107b8578063db599698146107e157610230565b80638da5cb5b116100f25780638da5cb5b1461066157806391d744071461068c57806395d89b41146106b7578063a035b1fe146106e2578063a0712d681461070d57610230565b806368428a1b146105a25780636caeb067146105cd57806370a08231146105f6578063715018a6146106335780637d8966e41461064a57610230565b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce7146104a757806353135ca0146104e4578063539cb1e71461050f5780635fabe4461461053a5780636352211e1461056557610230565b80632f745c59146103d657806334393743146104135780633ccfd60b1461042a5780633d4392c01461044157806342842e0e1461047e57610230565b806318160ddd1161020357806318160ddd146103035780632142ab291461032e5780632332f84d1461035957806323b872dd1461038457806326cc5107146103ad57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c6004803603810190610257919061353a565b6108f6565b6040516102699190613ca4565b60405180910390f35b34801561027e57600080fd5b50610287610970565b6040516102949190613cda565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613594565b610a02565b6040516102d19190613bf2565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906134ad565b610a87565b005b34801561030f57600080fd5b50610318610b9f565b60405161032591906140bc565b60405180910390f35b34801561033a57600080fd5b50610343610bac565b60405161035091906140bc565b60405180910390f35b34801561036557600080fd5b5061036e610bb2565b60405161037b9190613cbf565b60405180910390f35b34801561039057600080fd5b506103ab60048036038101906103a69190613397565b610bd8565b005b3480156103b957600080fd5b506103d460048036038101906103cf919061332a565b610c38565b005b3480156103e257600080fd5b506103fd60048036038101906103f891906134ad565b610cf8565b60405161040a91906140bc565b60405180910390f35b34801561041f57600080fd5b50610428610d9d565b005b34801561043657600080fd5b5061043f610e8e565b005b34801561044d57600080fd5b506104686004803603810190610463919061332a565b610f59565b6040516104759190613c82565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a09190613397565b611007565b005b3480156104b357600080fd5b506104ce60048036038101906104c99190613594565b611027565b6040516104db91906140bc565b60405180910390f35b3480156104f057600080fd5b506104f9611098565b6040516105069190613ca4565b60405180910390f35b34801561051b57600080fd5b506105246110ab565b60405161053191906140bc565b60405180910390f35b34801561054657600080fd5b5061054f6110b1565b60405161055c91906140bc565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190613594565b6110b7565b6040516105999190613bf2565b60405180910390f35b3480156105ae57600080fd5b506105b7611169565b6040516105c49190613ca4565b60405180910390f35b3480156105d957600080fd5b506105f460048036038101906105ef91906134ed565b61117c565b005b34801561060257600080fd5b5061061d6004803603810190610618919061332a565b61129d565b60405161062a91906140bc565b60405180910390f35b34801561063f57600080fd5b50610648611355565b005b34801561065657600080fd5b5061065f6113dd565b005b34801561066d57600080fd5b506106766114ce565b6040516106839190613bf2565b60405180910390f35b34801561069857600080fd5b506106a16114f8565b6040516106ae91906140bc565b60405180910390f35b3480156106c357600080fd5b506106cc611505565b6040516106d99190613cda565b60405180910390f35b3480156106ee57600080fd5b506106f7611597565b60405161070491906140bc565b60405180910390f35b61072760048036038101906107229190613594565b61159d565b005b34801561073557600080fd5b50610750600480360381019061074b919061346d565b6117c5565b005b34801561075e57600080fd5b50610779600480360381019061077491906133ea565b611946565b005b34801561078757600080fd5b506107a2600480360381019061079d9190613594565b6119a8565b6040516107af9190613cda565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da91906135c1565b611a21565b005b6107e9611d49565b005b3480156107f757600080fd5b50610812600480360381019061080d919061332a565b611fbf565b60405161081f91906140bc565b60405180910390f35b34801561083457600080fd5b5061083d611fd7565b60405161084a91906140bc565b60405180910390f35b34801561085f57600080fd5b5061087a60048036038101906108759190613357565b611fdd565b6040516108879190613ca4565b60405180910390f35b34801561089c57600080fd5b506108b760048036038101906108b2919061332a565b612071565b005b3480156108c557600080fd5b506108e060048036038101906108db919061332a565b612169565b6040516108ed9190613ca4565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109695750610968826121a1565b5b9050919050565b60606000805461097f9061440a565b80601f01602080910402602001604051908101604052809291908181526020018280546109ab9061440a565b80156109f85780601f106109cd576101008083540402835291602001916109f8565b820191906000526020600020905b8154815290600101906020018083116109db57829003601f168201915b5050505050905090565b6000610a0d82612283565b610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4390613efc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a92826110b7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa90613fdc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b226122ef565b73ffffffffffffffffffffffffffffffffffffffff161480610b515750610b5081610b4b6122ef565b611fdd565b5b610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8790613e3c565b60405180910390fd5b610b9a83836122f7565b505050565b6000600880549050905090565b600e5481565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610be9610be36122ef565b826123b0565b610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90613ffc565b60405180910390fd5b610c3383838361248e565b505050565b610c406122ef565b73ffffffffffffffffffffffffffffffffffffffff16610c5e6114ce565b73ffffffffffffffffffffffffffffffffffffffff1614610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab90613f3c565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610d038361129d565b8210610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b90613d1c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610da56122ef565b73ffffffffffffffffffffffffffffffffffffffff16610dc36114ce565b73ffffffffffffffffffffffffffffffffffffffff1614610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090613f3c565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550601160009054906101000a900460ff168015610e6b5750601160019054906101000a900460ff165b15610e8c576000601160016101000a81548160ff0219169083151502179055505b565b610e966122ef565b73ffffffffffffffffffffffffffffffffffffffff16610eb46114ce565b73ffffffffffffffffffffffffffffffffffffffff1614610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0190613f3c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f55573d6000803e3d6000fd5b5050565b60606000610f668361129d565b905060008167ffffffffffffffff811115610f8457610f836145d2565b5b604051908082528060200260200182016040528015610fb25781602001602082028036833780820191505090505b50905060005b82811015610ffc57610fca8582610cf8565b828281518110610fdd57610fdc6145a3565b5b6020026020010181815250508080610ff49061446d565b915050610fb8565b508092505050919050565b61102283838360405180602001604052806000815250611946565b505050565b6000611031610b9f565b8210611072576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110699061405c565b60405180910390fd5b60088281548110611086576110856145a3565b5b90600052602060002001549050919050565b601160009054906101000a900460ff1681565b600f5481565b600c5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115790613e7c565b60405180910390fd5b80915050919050565b601160019054906101000a900460ff1681565b6111846122ef565b73ffffffffffffffffffffffffffffffffffffffff166111a26114ce565b73ffffffffffffffffffffffffffffffffffffffff16146111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90613f3c565b60405180910390fd5b60005b828290508110156112985760016012600085858581811061121f5761121e6145a3565b5b9050602002016020810190611234919061332a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806112909061446d565b9150506111fb565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590613e5c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61135d6122ef565b73ffffffffffffffffffffffffffffffffffffffff1661137b6114ce565b73ffffffffffffffffffffffffffffffffffffffff16146113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c890613f3c565b60405180910390fd5b6113db60006126ea565b565b6113e56122ef565b73ffffffffffffffffffffffffffffffffffffffff166114036114ce565b73ffffffffffffffffffffffffffffffffffffffff1614611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090613f3c565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550601160019054906101000a900460ff1680156114ab5750601160009054906101000a900460ff165b156114cc576000601160006101000a81548160ff0219169083151502179055505b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b68233c8fe42703e8000081565b6060600180546115149061440a565b80601f01602080910402602001604051908101604052809291908181526020018280546115409061440a565b801561158d5780601f106115625761010080835404028352916020019161158d565b820191906000526020600020905b81548152906001019060200180831161157057829003601f168201915b5050505050905090565b60105481565b60006115a7610b9f565b9050601160019054906101000a900460ff166115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef9061403c565b60405180910390fd5b6000821180156116085750600682105b611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163e90613d9c565b60405180910390fd5b600c5461165d83836127b090919063ffffffff16565b111561169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590613dbc565b60405180910390fd5b346116b4836010546127c690919063ffffffff16565b146116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb9061407c565b60405180910390fd5b60005b828110156117c05761171433828461170f9190614209565b6127dc565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906117649061446d565b91905055507f3a5398bda6f1f57d6c96834fa9bf02b5517bdc847d14312015a917ba421c31c981836117969190614209565b336040516117a59291906140d7565b60405180910390a180806117b89061446d565b9150506116f7565b505050565b6117cd6122ef565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561183b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183290613dfc565b60405180910390fd5b80600560006118486122ef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118f56122ef565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161193a9190613ca4565b60405180910390a35050565b6119576119516122ef565b836123b0565b611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d90613ffc565b60405180910390fd5b6119a2848484846127fa565b50505050565b60606119b382612283565b6119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e990613fbc565b60405180910390fd5b6119fb82612856565b604051602001611a0b9190613bc5565b6040516020818303038152906040529050919050565b813373ffffffffffffffffffffffffffffffffffffffff16611a42826110b7565b73ffffffffffffffffffffffffffffffffffffffff1614611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f90613cfc565b60405180910390fd5b813373ffffffffffffffffffffffffffffffffffffffff16611ab9826110b7565b73ffffffffffffffffffffffffffffffffffffffff1614611b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0690613cfc565b60405180910390fd5b6000611b19610b9f565b9050600c54811015611b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5790613f1c565b60405180910390fd5b600d548110611ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9b90613f5c565b60405180910390fd5b600c5485108015611bb65750600c5484105b611bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bec90613edc565b60405180910390fd5b83851415611c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2f9061401c565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663af7d6ca33368233c8fe42703e800006040518363ffffffff1660e01b8152600401611c9e929190613c59565b600060405180830381600087803b158015611cb857600080fd5b505af1158015611ccc573d6000803e3d6000fd5b505050506000600f54600c54611ce29190614209565b9050600f6000815480929190611cf79061446d565b9190505550611d0633826127dc565b7f7e366263a5345ea2fd72ea0e973756e4275baa43139d81ba25002eb5b9cd8c95818787604051611d3993929190614100565b60405180910390a1505050505050565b6000611d53610b9f565b9050601160009054906101000a900460ff16611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b90613e9c565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e279061409c565b60405180910390fd5b600e54611e476001836127b090919063ffffffff16565b1115611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f90613f9c565b60405180910390fd5b3460105414611ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec39061407c565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f2e33826127dc565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611f7e9061446d565b91905055507f3a5398bda6f1f57d6c96834fa9bf02b5517bdc847d14312015a917ba421c31c98133604051611fb49291906140d7565b60405180910390a150565b60136020528060005260406000206000915090505481565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120796122ef565b73ffffffffffffffffffffffffffffffffffffffff166120976114ce565b73ffffffffffffffffffffffffffffffffffffffff16146120ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e490613f3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561215d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215490613d5c565b60405180910390fd5b612166816126ea565b50565b60126020528060005260406000206000915054906101000a900460ff1681565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061226c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061227c575061227b826129b7565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661236a836110b7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123bb82612283565b6123fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f190613e1c565b60405180910390fd5b6000612405836110b7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061247457508373ffffffffffffffffffffffffffffffffffffffff1661245c84610a02565b73ffffffffffffffffffffffffffffffffffffffff16145b8061248557506124848185611fdd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124ae826110b7565b73ffffffffffffffffffffffffffffffffffffffff1614612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fb90613f7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b90613ddc565b60405180910390fd5b61257f838383612a21565b61258a6000826122f7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125da91906142ea565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126319190614209565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836127be9190614209565b905092915050565b600081836127d49190614290565b905092915050565b6127f6828260405180602001604052806000815250612b35565b5050565b61280584848461248e565b61281184848484612b90565b612850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284790613d3c565b60405180910390fd5b50505050565b6060600082141561289e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129b2565b600082905060005b600082146128d05780806128b99061446d565b915050600a826128c9919061425f565b91506128a6565b60008167ffffffffffffffff8111156128ec576128eb6145d2565b5b6040519080825280601f01601f19166020018201604052801561291e5781602001600182028036833780820191505090505b5090505b600085146129ab5760018261293791906142ea565b9150600a8561294691906144b6565b60306129529190614209565b60f81b818381518110612968576129676145a3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129a4919061425f565b9450612922565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a2c83838361219c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a6f57612a6a81612d27565b612aae565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612aad57612aac8382612d70565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612af157612aec81612edd565b612b30565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b2f57612b2e8282612fae565b5b5b505050565b612b3f838361302d565b612b4c6000848484612b90565b612b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8290613d3c565b60405180910390fd5b505050565b6000612bb18473ffffffffffffffffffffffffffffffffffffffff16612189565b15612d1a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bda6122ef565b8786866040518563ffffffff1660e01b8152600401612bfc9493929190613c0d565b602060405180830381600087803b158015612c1657600080fd5b505af1925050508015612c4757506040513d601f19601f82011682018060405250810190612c449190613567565b60015b612cca573d8060008114612c77576040519150601f19603f3d011682016040523d82523d6000602084013e612c7c565b606091505b50600081511415612cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb990613d3c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d1f565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d7d8461129d565b612d8791906142ea565b9050600060076000848152602001908152602001600020549050818114612e6c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612ef191906142ea565b9050600060096000848152602001908152602001600020549050600060088381548110612f2157612f206145a3565b5b906000526020600020015490508060088381548110612f4357612f426145a3565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f9257612f91614574565b5b6001900381819060005260206000200160009055905550505050565b6000612fb98361129d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561309d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309490613ebc565b60405180910390fd5b6130a681612283565b156130e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130dd90613d7c565b60405180910390fd5b6130f260008383612a21565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131429190614209565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061320e6132098461415c565b614137565b90508281526020810184848401111561322a57613229614610565b5b6132358482856143c8565b509392505050565b60008135905061324c81614eba565b92915050565b60008083601f84011261326857613267614606565b5b8235905067ffffffffffffffff81111561328557613284614601565b5b6020830191508360208202830111156132a1576132a061460b565b5b9250929050565b6000813590506132b781614ed1565b92915050565b6000813590506132cc81614ee8565b92915050565b6000815190506132e181614ee8565b92915050565b600082601f8301126132fc576132fb614606565b5b813561330c8482602086016131fb565b91505092915050565b60008135905061332481614eff565b92915050565b6000602082840312156133405761333f61461a565b5b600061334e8482850161323d565b91505092915050565b6000806040838503121561336e5761336d61461a565b5b600061337c8582860161323d565b925050602061338d8582860161323d565b9150509250929050565b6000806000606084860312156133b0576133af61461a565b5b60006133be8682870161323d565b93505060206133cf8682870161323d565b92505060406133e086828701613315565b9150509250925092565b600080600080608085870312156134045761340361461a565b5b60006134128782880161323d565b94505060206134238782880161323d565b935050604061343487828801613315565b925050606085013567ffffffffffffffff81111561345557613454614615565b5b613461878288016132e7565b91505092959194509250565b600080604083850312156134845761348361461a565b5b60006134928582860161323d565b92505060206134a3858286016132a8565b9150509250929050565b600080604083850312156134c4576134c361461a565b5b60006134d28582860161323d565b92505060206134e385828601613315565b9150509250929050565b600080602083850312156135045761350361461a565b5b600083013567ffffffffffffffff81111561352257613521614615565b5b61352e85828601613252565b92509250509250929050565b6000602082840312156135505761354f61461a565b5b600061355e848285016132bd565b91505092915050565b60006020828403121561357d5761357c61461a565b5b600061358b848285016132d2565b91505092915050565b6000602082840312156135aa576135a961461a565b5b60006135b884828501613315565b91505092915050565b600080604083850312156135d8576135d761461a565b5b60006135e685828601613315565b92505060206135f785828601613315565b9150509250929050565b600061360d8383613ba7565b60208301905092915050565b6136228161431e565b82525050565b60006136338261419d565b61363d81856141cb565b93506136488361418d565b8060005b838110156136795781516136608882613601565b975061366b836141be565b92505060018101905061364c565b5085935050505092915050565b61368f81614330565b82525050565b60006136a0826141a8565b6136aa81856141dc565b93506136ba8185602086016143d7565b6136c38161461f565b840191505092915050565b6136d781614392565b82525050565b60006136e8826141b3565b6136f281856141ed565b93506137028185602086016143d7565b61370b8161461f565b840191505092915050565b6000613721826141b3565b61372b81856141fe565b935061373b8185602086016143d7565b80840191505092915050565b60006137546019836141ed565b915061375f82614630565b602082019050919050565b6000613777602b836141ed565b915061378282614659565b604082019050919050565b600061379a6032836141ed565b91506137a5826146a8565b604082019050919050565b60006137bd6026836141ed565b91506137c8826146f7565b604082019050919050565b60006137e0601c836141ed565b91506137eb82614746565b602082019050919050565b60006138036024836141ed565b915061380e8261476f565b604082019050919050565b60006138266033836141ed565b9150613831826147be565b604082019050919050565b60006138496024836141ed565b91506138548261480d565b604082019050919050565b600061386c6019836141ed565b91506138778261485c565b602082019050919050565b600061388f602c836141ed565b915061389a82614885565b604082019050919050565b60006138b26038836141ed565b91506138bd826148d4565b604082019050919050565b60006138d5602a836141ed565b91506138e082614923565b604082019050919050565b60006138f86029836141ed565b915061390382614972565b604082019050919050565b600061391b6025836141ed565b9150613926826149c1565b604082019050919050565b600061393e6020836141ed565b915061394982614a10565b602082019050919050565b60006139616029836141ed565b915061396c82614a39565b604082019050919050565b6000613984602c836141ed565b915061398f82614a88565b604082019050919050565b60006139a76005836141fe565b91506139b282614ad7565b600582019050919050565b60006139ca6035836141ed565b91506139d582614b00565b604082019050919050565b60006139ed6020836141ed565b91506139f882614b4f565b602082019050919050565b6000613a106024836141ed565b9150613a1b82614b78565b604082019050919050565b6000613a336029836141ed565b9150613a3e82614bc7565b604082019050919050565b6000613a566036836141ed565b9150613a6182614c16565b604082019050919050565b6000613a79602f836141ed565b9150613a8482614c65565b604082019050919050565b6000613a9c6021836141ed565b9150613aa782614cb4565b604082019050919050565b6000613abf6031836141ed565b9150613aca82614d03565b604082019050919050565b6000613ae2603e836141ed565b9150613aed82614d52565b604082019050919050565b6000613b056016836141ed565b9150613b1082614da1565b602082019050919050565b6000613b28602c836141ed565b9150613b3382614dca565b604082019050919050565b6000613b4b6014836141ed565b9150613b5682614e19565b602082019050919050565b6000613b6e601b836141fe565b9150613b7982614e42565b601b82019050919050565b6000613b91602f836141ed565b9150613b9c82614e6b565b604082019050919050565b613bb081614388565b82525050565b613bbf81614388565b82525050565b6000613bd082613b61565b9150613bdc8284613716565b9150613be78261399a565b915081905092915050565b6000602082019050613c076000830184613619565b92915050565b6000608082019050613c226000830187613619565b613c2f6020830186613619565b613c3c6040830185613bb6565b8181036060830152613c4e8184613695565b905095945050505050565b6000604082019050613c6e6000830185613619565b613c7b6020830184613bb6565b9392505050565b60006020820190508181036000830152613c9c8184613628565b905092915050565b6000602082019050613cb96000830184613686565b92915050565b6000602082019050613cd460008301846136ce565b92915050565b60006020820190508181036000830152613cf481846136dd565b905092915050565b60006020820190508181036000830152613d1581613747565b9050919050565b60006020820190508181036000830152613d358161376a565b9050919050565b60006020820190508181036000830152613d558161378d565b9050919050565b60006020820190508181036000830152613d75816137b0565b9050919050565b60006020820190508181036000830152613d95816137d3565b9050919050565b60006020820190508181036000830152613db5816137f6565b9050919050565b60006020820190508181036000830152613dd581613819565b9050919050565b60006020820190508181036000830152613df58161383c565b9050919050565b60006020820190508181036000830152613e158161385f565b9050919050565b60006020820190508181036000830152613e3581613882565b9050919050565b60006020820190508181036000830152613e55816138a5565b9050919050565b60006020820190508181036000830152613e75816138c8565b9050919050565b60006020820190508181036000830152613e95816138eb565b9050919050565b60006020820190508181036000830152613eb58161390e565b9050919050565b60006020820190508181036000830152613ed581613931565b9050919050565b60006020820190508181036000830152613ef581613954565b9050919050565b60006020820190508181036000830152613f1581613977565b9050919050565b60006020820190508181036000830152613f35816139bd565b9050919050565b60006020820190508181036000830152613f55816139e0565b9050919050565b60006020820190508181036000830152613f7581613a03565b9050919050565b60006020820190508181036000830152613f9581613a26565b9050919050565b60006020820190508181036000830152613fb581613a49565b9050919050565b60006020820190508181036000830152613fd581613a6c565b9050919050565b60006020820190508181036000830152613ff581613a8f565b9050919050565b6000602082019050818103600083015261401581613ab2565b9050919050565b6000602082019050818103600083015261403581613ad5565b9050919050565b6000602082019050818103600083015261405581613af8565b9050919050565b6000602082019050818103600083015261407581613b1b565b9050919050565b6000602082019050818103600083015261409581613b3e565b9050919050565b600060208201905081810360008301526140b581613b84565b9050919050565b60006020820190506140d16000830184613bb6565b92915050565b60006040820190506140ec6000830185613bb6565b6140f96020830184613619565b9392505050565b60006060820190506141156000830186613bb6565b6141226020830185613bb6565b61412f6040830184613bb6565b949350505050565b6000614141614152565b905061414d828261443c565b919050565b6000604051905090565b600067ffffffffffffffff821115614177576141766145d2565b5b6141808261461f565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061421482614388565b915061421f83614388565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614254576142536144e7565b5b828201905092915050565b600061426a82614388565b915061427583614388565b92508261428557614284614516565b5b828204905092915050565b600061429b82614388565b91506142a683614388565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142df576142de6144e7565b5b828202905092915050565b60006142f582614388565b915061430083614388565b925082821015614313576143126144e7565b5b828203905092915050565b600061432982614368565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061439d826143a4565b9050919050565b60006143af826143b6565b9050919050565b60006143c182614368565b9050919050565b82818337600083830152505050565b60005b838110156143f55780820151818401526020810190506143da565b83811115614404576000848401525b50505050565b6000600282049050600182168061442257607f821691505b6020821081141561443657614435614545565b5b50919050565b6144458261461f565b810181811067ffffffffffffffff82111715614464576144636145d2565b5b80604052505050565b600061447882614388565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144ab576144aa6144e7565b5b600182019050919050565b60006144c182614388565b91506144cc83614388565b9250826144dc576144db614516565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f7520646f206e6f74206f776e207468697320746f6b656e00000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f596f752063616e206f6e6c79206d696e74206265747765656e20312d3520746f60008201527f6b656e7300000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206265636175736520697420776f756c642065786360008201527f656564207468652073616c65206c696d69747300000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f7420616374697665206f7220616c726561647960008201527f206f766572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e6e6f742062726565642074776f2062616269657320286b696e6461206760008201527f726f7373206e676c290000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f596f752063616e206f6e6c7920627265656420616674657220616c6c2047656e60008201527f657369732042756c6c7320617265206d696e7465640000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178696d756d206e756d626572206f6620626162792042756c6c732072656160008201527f6368656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206265636175736520697420776f756c642065786360008201527f656564207468652070726573616c65206c696d69747300000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f596f752063616e6e6f7420627265656420612042756c6c20776974682069747360008201527f656c662c2062757420492061646d69726520796f757220617474656d70740000602082015250565b7f53616c65206973206e6f74207965742061637469766500000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204554482076616c7565000000000000000000000000600082015250565b7f68747470733a2f2f6d6574612e637962657262756c6c732e696f2f0000000000600082015250565b7f596f75722061646472657373206973206e6f742077686974656c69737465642060008201527f666f72207468652070726573616c650000000000000000000000000000000000602082015250565b614ec38161431e565b8114614ece57600080fd5b50565b614eda81614330565b8114614ee557600080fd5b50565b614ef18161433c565b8114614efc57600080fd5b50565b614f0881614388565b8114614f1357600080fd5b5056fea2646970667358221220df1063b6c011d402c5a7cf0fdc5372dae7a9b339cfbb6be790229ada79631fb664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102305760003560e01c806368428a1b1161012e578063a22cb465116100ab578063e2b26b151161006f578063e2b26b15146107eb578063e831574214610828578063e985e9c514610853578063f2fde38b14610890578063f3d6b71c146108b957610230565b8063a22cb46514610729578063b88d4fde14610752578063c87b56dd1461077b578063d9ecad7b146107b8578063db599698146107e157610230565b80638da5cb5b116100f25780638da5cb5b1461066157806391d744071461068c57806395d89b41146106b7578063a035b1fe146106e2578063a0712d681461070d57610230565b806368428a1b146105a25780636caeb067146105cd57806370a08231146105f6578063715018a6146106335780637d8966e41461064a57610230565b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce7146104a757806353135ca0146104e4578063539cb1e71461050f5780635fabe4461461053a5780636352211e1461056557610230565b80632f745c59146103d657806334393743146104135780633ccfd60b1461042a5780633d4392c01461044157806342842e0e1461047e57610230565b806318160ddd1161020357806318160ddd146103035780632142ab291461032e5780632332f84d1461035957806323b872dd1461038457806326cc5107146103ad57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c6004803603810190610257919061353a565b6108f6565b6040516102699190613ca4565b60405180910390f35b34801561027e57600080fd5b50610287610970565b6040516102949190613cda565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613594565b610a02565b6040516102d19190613bf2565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906134ad565b610a87565b005b34801561030f57600080fd5b50610318610b9f565b60405161032591906140bc565b60405180910390f35b34801561033a57600080fd5b50610343610bac565b60405161035091906140bc565b60405180910390f35b34801561036557600080fd5b5061036e610bb2565b60405161037b9190613cbf565b60405180910390f35b34801561039057600080fd5b506103ab60048036038101906103a69190613397565b610bd8565b005b3480156103b957600080fd5b506103d460048036038101906103cf919061332a565b610c38565b005b3480156103e257600080fd5b506103fd60048036038101906103f891906134ad565b610cf8565b60405161040a91906140bc565b60405180910390f35b34801561041f57600080fd5b50610428610d9d565b005b34801561043657600080fd5b5061043f610e8e565b005b34801561044d57600080fd5b506104686004803603810190610463919061332a565b610f59565b6040516104759190613c82565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a09190613397565b611007565b005b3480156104b357600080fd5b506104ce60048036038101906104c99190613594565b611027565b6040516104db91906140bc565b60405180910390f35b3480156104f057600080fd5b506104f9611098565b6040516105069190613ca4565b60405180910390f35b34801561051b57600080fd5b506105246110ab565b60405161053191906140bc565b60405180910390f35b34801561054657600080fd5b5061054f6110b1565b60405161055c91906140bc565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190613594565b6110b7565b6040516105999190613bf2565b60405180910390f35b3480156105ae57600080fd5b506105b7611169565b6040516105c49190613ca4565b60405180910390f35b3480156105d957600080fd5b506105f460048036038101906105ef91906134ed565b61117c565b005b34801561060257600080fd5b5061061d6004803603810190610618919061332a565b61129d565b60405161062a91906140bc565b60405180910390f35b34801561063f57600080fd5b50610648611355565b005b34801561065657600080fd5b5061065f6113dd565b005b34801561066d57600080fd5b506106766114ce565b6040516106839190613bf2565b60405180910390f35b34801561069857600080fd5b506106a16114f8565b6040516106ae91906140bc565b60405180910390f35b3480156106c357600080fd5b506106cc611505565b6040516106d99190613cda565b60405180910390f35b3480156106ee57600080fd5b506106f7611597565b60405161070491906140bc565b60405180910390f35b61072760048036038101906107229190613594565b61159d565b005b34801561073557600080fd5b50610750600480360381019061074b919061346d565b6117c5565b005b34801561075e57600080fd5b50610779600480360381019061077491906133ea565b611946565b005b34801561078757600080fd5b506107a2600480360381019061079d9190613594565b6119a8565b6040516107af9190613cda565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da91906135c1565b611a21565b005b6107e9611d49565b005b3480156107f757600080fd5b50610812600480360381019061080d919061332a565b611fbf565b60405161081f91906140bc565b60405180910390f35b34801561083457600080fd5b5061083d611fd7565b60405161084a91906140bc565b60405180910390f35b34801561085f57600080fd5b5061087a60048036038101906108759190613357565b611fdd565b6040516108879190613ca4565b60405180910390f35b34801561089c57600080fd5b506108b760048036038101906108b2919061332a565b612071565b005b3480156108c557600080fd5b506108e060048036038101906108db919061332a565b612169565b6040516108ed9190613ca4565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109695750610968826121a1565b5b9050919050565b60606000805461097f9061440a565b80601f01602080910402602001604051908101604052809291908181526020018280546109ab9061440a565b80156109f85780601f106109cd576101008083540402835291602001916109f8565b820191906000526020600020905b8154815290600101906020018083116109db57829003601f168201915b5050505050905090565b6000610a0d82612283565b610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4390613efc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a92826110b7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa90613fdc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b226122ef565b73ffffffffffffffffffffffffffffffffffffffff161480610b515750610b5081610b4b6122ef565b611fdd565b5b610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8790613e3c565b60405180910390fd5b610b9a83836122f7565b505050565b6000600880549050905090565b600e5481565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610be9610be36122ef565b826123b0565b610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90613ffc565b60405180910390fd5b610c3383838361248e565b505050565b610c406122ef565b73ffffffffffffffffffffffffffffffffffffffff16610c5e6114ce565b73ffffffffffffffffffffffffffffffffffffffff1614610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab90613f3c565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610d038361129d565b8210610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b90613d1c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610da56122ef565b73ffffffffffffffffffffffffffffffffffffffff16610dc36114ce565b73ffffffffffffffffffffffffffffffffffffffff1614610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090613f3c565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550601160009054906101000a900460ff168015610e6b5750601160019054906101000a900460ff165b15610e8c576000601160016101000a81548160ff0219169083151502179055505b565b610e966122ef565b73ffffffffffffffffffffffffffffffffffffffff16610eb46114ce565b73ffffffffffffffffffffffffffffffffffffffff1614610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0190613f3c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f55573d6000803e3d6000fd5b5050565b60606000610f668361129d565b905060008167ffffffffffffffff811115610f8457610f836145d2565b5b604051908082528060200260200182016040528015610fb25781602001602082028036833780820191505090505b50905060005b82811015610ffc57610fca8582610cf8565b828281518110610fdd57610fdc6145a3565b5b6020026020010181815250508080610ff49061446d565b915050610fb8565b508092505050919050565b61102283838360405180602001604052806000815250611946565b505050565b6000611031610b9f565b8210611072576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110699061405c565b60405180910390fd5b60088281548110611086576110856145a3565b5b90600052602060002001549050919050565b601160009054906101000a900460ff1681565b600f5481565b600c5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115790613e7c565b60405180910390fd5b80915050919050565b601160019054906101000a900460ff1681565b6111846122ef565b73ffffffffffffffffffffffffffffffffffffffff166111a26114ce565b73ffffffffffffffffffffffffffffffffffffffff16146111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90613f3c565b60405180910390fd5b60005b828290508110156112985760016012600085858581811061121f5761121e6145a3565b5b9050602002016020810190611234919061332a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806112909061446d565b9150506111fb565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590613e5c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61135d6122ef565b73ffffffffffffffffffffffffffffffffffffffff1661137b6114ce565b73ffffffffffffffffffffffffffffffffffffffff16146113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c890613f3c565b60405180910390fd5b6113db60006126ea565b565b6113e56122ef565b73ffffffffffffffffffffffffffffffffffffffff166114036114ce565b73ffffffffffffffffffffffffffffffffffffffff1614611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090613f3c565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550601160019054906101000a900460ff1680156114ab5750601160009054906101000a900460ff165b156114cc576000601160006101000a81548160ff0219169083151502179055505b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b68233c8fe42703e8000081565b6060600180546115149061440a565b80601f01602080910402602001604051908101604052809291908181526020018280546115409061440a565b801561158d5780601f106115625761010080835404028352916020019161158d565b820191906000526020600020905b81548152906001019060200180831161157057829003601f168201915b5050505050905090565b60105481565b60006115a7610b9f565b9050601160019054906101000a900460ff166115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef9061403c565b60405180910390fd5b6000821180156116085750600682105b611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163e90613d9c565b60405180910390fd5b600c5461165d83836127b090919063ffffffff16565b111561169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590613dbc565b60405180910390fd5b346116b4836010546127c690919063ffffffff16565b146116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb9061407c565b60405180910390fd5b60005b828110156117c05761171433828461170f9190614209565b6127dc565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906117649061446d565b91905055507f3a5398bda6f1f57d6c96834fa9bf02b5517bdc847d14312015a917ba421c31c981836117969190614209565b336040516117a59291906140d7565b60405180910390a180806117b89061446d565b9150506116f7565b505050565b6117cd6122ef565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561183b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183290613dfc565b60405180910390fd5b80600560006118486122ef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118f56122ef565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161193a9190613ca4565b60405180910390a35050565b6119576119516122ef565b836123b0565b611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d90613ffc565b60405180910390fd5b6119a2848484846127fa565b50505050565b60606119b382612283565b6119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e990613fbc565b60405180910390fd5b6119fb82612856565b604051602001611a0b9190613bc5565b6040516020818303038152906040529050919050565b813373ffffffffffffffffffffffffffffffffffffffff16611a42826110b7565b73ffffffffffffffffffffffffffffffffffffffff1614611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f90613cfc565b60405180910390fd5b813373ffffffffffffffffffffffffffffffffffffffff16611ab9826110b7565b73ffffffffffffffffffffffffffffffffffffffff1614611b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0690613cfc565b60405180910390fd5b6000611b19610b9f565b9050600c54811015611b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5790613f1c565b60405180910390fd5b600d548110611ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9b90613f5c565b60405180910390fd5b600c5485108015611bb65750600c5484105b611bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bec90613edc565b60405180910390fd5b83851415611c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2f9061401c565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663af7d6ca33368233c8fe42703e800006040518363ffffffff1660e01b8152600401611c9e929190613c59565b600060405180830381600087803b158015611cb857600080fd5b505af1158015611ccc573d6000803e3d6000fd5b505050506000600f54600c54611ce29190614209565b9050600f6000815480929190611cf79061446d565b9190505550611d0633826127dc565b7f7e366263a5345ea2fd72ea0e973756e4275baa43139d81ba25002eb5b9cd8c95818787604051611d3993929190614100565b60405180910390a1505050505050565b6000611d53610b9f565b9050601160009054906101000a900460ff16611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b90613e9c565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e279061409c565b60405180910390fd5b600e54611e476001836127b090919063ffffffff16565b1115611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f90613f9c565b60405180910390fd5b3460105414611ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec39061407c565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f2e33826127dc565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611f7e9061446d565b91905055507f3a5398bda6f1f57d6c96834fa9bf02b5517bdc847d14312015a917ba421c31c98133604051611fb49291906140d7565b60405180910390a150565b60136020528060005260406000206000915090505481565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120796122ef565b73ffffffffffffffffffffffffffffffffffffffff166120976114ce565b73ffffffffffffffffffffffffffffffffffffffff16146120ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e490613f3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561215d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215490613d5c565b60405180910390fd5b612166816126ea565b50565b60126020528060005260406000206000915054906101000a900460ff1681565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061226c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061227c575061227b826129b7565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661236a836110b7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123bb82612283565b6123fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f190613e1c565b60405180910390fd5b6000612405836110b7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061247457508373ffffffffffffffffffffffffffffffffffffffff1661245c84610a02565b73ffffffffffffffffffffffffffffffffffffffff16145b8061248557506124848185611fdd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124ae826110b7565b73ffffffffffffffffffffffffffffffffffffffff1614612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fb90613f7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b90613ddc565b60405180910390fd5b61257f838383612a21565b61258a6000826122f7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125da91906142ea565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126319190614209565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836127be9190614209565b905092915050565b600081836127d49190614290565b905092915050565b6127f6828260405180602001604052806000815250612b35565b5050565b61280584848461248e565b61281184848484612b90565b612850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284790613d3c565b60405180910390fd5b50505050565b6060600082141561289e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129b2565b600082905060005b600082146128d05780806128b99061446d565b915050600a826128c9919061425f565b91506128a6565b60008167ffffffffffffffff8111156128ec576128eb6145d2565b5b6040519080825280601f01601f19166020018201604052801561291e5781602001600182028036833780820191505090505b5090505b600085146129ab5760018261293791906142ea565b9150600a8561294691906144b6565b60306129529190614209565b60f81b818381518110612968576129676145a3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129a4919061425f565b9450612922565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a2c83838361219c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a6f57612a6a81612d27565b612aae565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612aad57612aac8382612d70565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612af157612aec81612edd565b612b30565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b2f57612b2e8282612fae565b5b5b505050565b612b3f838361302d565b612b4c6000848484612b90565b612b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8290613d3c565b60405180910390fd5b505050565b6000612bb18473ffffffffffffffffffffffffffffffffffffffff16612189565b15612d1a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bda6122ef565b8786866040518563ffffffff1660e01b8152600401612bfc9493929190613c0d565b602060405180830381600087803b158015612c1657600080fd5b505af1925050508015612c4757506040513d601f19601f82011682018060405250810190612c449190613567565b60015b612cca573d8060008114612c77576040519150601f19603f3d011682016040523d82523d6000602084013e612c7c565b606091505b50600081511415612cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb990613d3c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d1f565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d7d8461129d565b612d8791906142ea565b9050600060076000848152602001908152602001600020549050818114612e6c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612ef191906142ea565b9050600060096000848152602001908152602001600020549050600060088381548110612f2157612f206145a3565b5b906000526020600020015490508060088381548110612f4357612f426145a3565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f9257612f91614574565b5b6001900381819060005260206000200160009055905550505050565b6000612fb98361129d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561309d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309490613ebc565b60405180910390fd5b6130a681612283565b156130e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130dd90613d7c565b60405180910390fd5b6130f260008383612a21565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131429190614209565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061320e6132098461415c565b614137565b90508281526020810184848401111561322a57613229614610565b5b6132358482856143c8565b509392505050565b60008135905061324c81614eba565b92915050565b60008083601f84011261326857613267614606565b5b8235905067ffffffffffffffff81111561328557613284614601565b5b6020830191508360208202830111156132a1576132a061460b565b5b9250929050565b6000813590506132b781614ed1565b92915050565b6000813590506132cc81614ee8565b92915050565b6000815190506132e181614ee8565b92915050565b600082601f8301126132fc576132fb614606565b5b813561330c8482602086016131fb565b91505092915050565b60008135905061332481614eff565b92915050565b6000602082840312156133405761333f61461a565b5b600061334e8482850161323d565b91505092915050565b6000806040838503121561336e5761336d61461a565b5b600061337c8582860161323d565b925050602061338d8582860161323d565b9150509250929050565b6000806000606084860312156133b0576133af61461a565b5b60006133be8682870161323d565b93505060206133cf8682870161323d565b92505060406133e086828701613315565b9150509250925092565b600080600080608085870312156134045761340361461a565b5b60006134128782880161323d565b94505060206134238782880161323d565b935050604061343487828801613315565b925050606085013567ffffffffffffffff81111561345557613454614615565b5b613461878288016132e7565b91505092959194509250565b600080604083850312156134845761348361461a565b5b60006134928582860161323d565b92505060206134a3858286016132a8565b9150509250929050565b600080604083850312156134c4576134c361461a565b5b60006134d28582860161323d565b92505060206134e385828601613315565b9150509250929050565b600080602083850312156135045761350361461a565b5b600083013567ffffffffffffffff81111561352257613521614615565b5b61352e85828601613252565b92509250509250929050565b6000602082840312156135505761354f61461a565b5b600061355e848285016132bd565b91505092915050565b60006020828403121561357d5761357c61461a565b5b600061358b848285016132d2565b91505092915050565b6000602082840312156135aa576135a961461a565b5b60006135b884828501613315565b91505092915050565b600080604083850312156135d8576135d761461a565b5b60006135e685828601613315565b92505060206135f785828601613315565b9150509250929050565b600061360d8383613ba7565b60208301905092915050565b6136228161431e565b82525050565b60006136338261419d565b61363d81856141cb565b93506136488361418d565b8060005b838110156136795781516136608882613601565b975061366b836141be565b92505060018101905061364c565b5085935050505092915050565b61368f81614330565b82525050565b60006136a0826141a8565b6136aa81856141dc565b93506136ba8185602086016143d7565b6136c38161461f565b840191505092915050565b6136d781614392565b82525050565b60006136e8826141b3565b6136f281856141ed565b93506137028185602086016143d7565b61370b8161461f565b840191505092915050565b6000613721826141b3565b61372b81856141fe565b935061373b8185602086016143d7565b80840191505092915050565b60006137546019836141ed565b915061375f82614630565b602082019050919050565b6000613777602b836141ed565b915061378282614659565b604082019050919050565b600061379a6032836141ed565b91506137a5826146a8565b604082019050919050565b60006137bd6026836141ed565b91506137c8826146f7565b604082019050919050565b60006137e0601c836141ed565b91506137eb82614746565b602082019050919050565b60006138036024836141ed565b915061380e8261476f565b604082019050919050565b60006138266033836141ed565b9150613831826147be565b604082019050919050565b60006138496024836141ed565b91506138548261480d565b604082019050919050565b600061386c6019836141ed565b91506138778261485c565b602082019050919050565b600061388f602c836141ed565b915061389a82614885565b604082019050919050565b60006138b26038836141ed565b91506138bd826148d4565b604082019050919050565b60006138d5602a836141ed565b91506138e082614923565b604082019050919050565b60006138f86029836141ed565b915061390382614972565b604082019050919050565b600061391b6025836141ed565b9150613926826149c1565b604082019050919050565b600061393e6020836141ed565b915061394982614a10565b602082019050919050565b60006139616029836141ed565b915061396c82614a39565b604082019050919050565b6000613984602c836141ed565b915061398f82614a88565b604082019050919050565b60006139a76005836141fe565b91506139b282614ad7565b600582019050919050565b60006139ca6035836141ed565b91506139d582614b00565b604082019050919050565b60006139ed6020836141ed565b91506139f882614b4f565b602082019050919050565b6000613a106024836141ed565b9150613a1b82614b78565b604082019050919050565b6000613a336029836141ed565b9150613a3e82614bc7565b604082019050919050565b6000613a566036836141ed565b9150613a6182614c16565b604082019050919050565b6000613a79602f836141ed565b9150613a8482614c65565b604082019050919050565b6000613a9c6021836141ed565b9150613aa782614cb4565b604082019050919050565b6000613abf6031836141ed565b9150613aca82614d03565b604082019050919050565b6000613ae2603e836141ed565b9150613aed82614d52565b604082019050919050565b6000613b056016836141ed565b9150613b1082614da1565b602082019050919050565b6000613b28602c836141ed565b9150613b3382614dca565b604082019050919050565b6000613b4b6014836141ed565b9150613b5682614e19565b602082019050919050565b6000613b6e601b836141fe565b9150613b7982614e42565b601b82019050919050565b6000613b91602f836141ed565b9150613b9c82614e6b565b604082019050919050565b613bb081614388565b82525050565b613bbf81614388565b82525050565b6000613bd082613b61565b9150613bdc8284613716565b9150613be78261399a565b915081905092915050565b6000602082019050613c076000830184613619565b92915050565b6000608082019050613c226000830187613619565b613c2f6020830186613619565b613c3c6040830185613bb6565b8181036060830152613c4e8184613695565b905095945050505050565b6000604082019050613c6e6000830185613619565b613c7b6020830184613bb6565b9392505050565b60006020820190508181036000830152613c9c8184613628565b905092915050565b6000602082019050613cb96000830184613686565b92915050565b6000602082019050613cd460008301846136ce565b92915050565b60006020820190508181036000830152613cf481846136dd565b905092915050565b60006020820190508181036000830152613d1581613747565b9050919050565b60006020820190508181036000830152613d358161376a565b9050919050565b60006020820190508181036000830152613d558161378d565b9050919050565b60006020820190508181036000830152613d75816137b0565b9050919050565b60006020820190508181036000830152613d95816137d3565b9050919050565b60006020820190508181036000830152613db5816137f6565b9050919050565b60006020820190508181036000830152613dd581613819565b9050919050565b60006020820190508181036000830152613df58161383c565b9050919050565b60006020820190508181036000830152613e158161385f565b9050919050565b60006020820190508181036000830152613e3581613882565b9050919050565b60006020820190508181036000830152613e55816138a5565b9050919050565b60006020820190508181036000830152613e75816138c8565b9050919050565b60006020820190508181036000830152613e95816138eb565b9050919050565b60006020820190508181036000830152613eb58161390e565b9050919050565b60006020820190508181036000830152613ed581613931565b9050919050565b60006020820190508181036000830152613ef581613954565b9050919050565b60006020820190508181036000830152613f1581613977565b9050919050565b60006020820190508181036000830152613f35816139bd565b9050919050565b60006020820190508181036000830152613f55816139e0565b9050919050565b60006020820190508181036000830152613f7581613a03565b9050919050565b60006020820190508181036000830152613f9581613a26565b9050919050565b60006020820190508181036000830152613fb581613a49565b9050919050565b60006020820190508181036000830152613fd581613a6c565b9050919050565b60006020820190508181036000830152613ff581613a8f565b9050919050565b6000602082019050818103600083015261401581613ab2565b9050919050565b6000602082019050818103600083015261403581613ad5565b9050919050565b6000602082019050818103600083015261405581613af8565b9050919050565b6000602082019050818103600083015261407581613b1b565b9050919050565b6000602082019050818103600083015261409581613b3e565b9050919050565b600060208201905081810360008301526140b581613b84565b9050919050565b60006020820190506140d16000830184613bb6565b92915050565b60006040820190506140ec6000830185613bb6565b6140f96020830184613619565b9392505050565b60006060820190506141156000830186613bb6565b6141226020830185613bb6565b61412f6040830184613bb6565b949350505050565b6000614141614152565b905061414d828261443c565b919050565b6000604051905090565b600067ffffffffffffffff821115614177576141766145d2565b5b6141808261461f565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061421482614388565b915061421f83614388565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614254576142536144e7565b5b828201905092915050565b600061426a82614388565b915061427583614388565b92508261428557614284614516565b5b828204905092915050565b600061429b82614388565b91506142a683614388565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142df576142de6144e7565b5b828202905092915050565b60006142f582614388565b915061430083614388565b925082821015614313576143126144e7565b5b828203905092915050565b600061432982614368565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061439d826143a4565b9050919050565b60006143af826143b6565b9050919050565b60006143c182614368565b9050919050565b82818337600083830152505050565b60005b838110156143f55780820151818401526020810190506143da565b83811115614404576000848401525b50505050565b6000600282049050600182168061442257607f821691505b6020821081141561443657614435614545565b5b50919050565b6144458261461f565b810181811067ffffffffffffffff82111715614464576144636145d2565b5b80604052505050565b600061447882614388565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144ab576144aa6144e7565b5b600182019050919050565b60006144c182614388565b91506144cc83614388565b9250826144dc576144db614516565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f7520646f206e6f74206f776e207468697320746f6b656e00000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f596f752063616e206f6e6c79206d696e74206265747765656e20312d3520746f60008201527f6b656e7300000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206265636175736520697420776f756c642065786360008201527f656564207468652073616c65206c696d69747300000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f7420616374697665206f7220616c726561647960008201527f206f766572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e6e6f742062726565642074776f2062616269657320286b696e6461206760008201527f726f7373206e676c290000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f596f752063616e206f6e6c7920627265656420616674657220616c6c2047656e60008201527f657369732042756c6c7320617265206d696e7465640000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178696d756d206e756d626572206f6620626162792042756c6c732072656160008201527f6368656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206265636175736520697420776f756c642065786360008201527f656564207468652070726573616c65206c696d69747300000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f596f752063616e6e6f7420627265656420612042756c6c20776974682069747360008201527f656c662c2062757420492061646d69726520796f757220617474656d70740000602082015250565b7f53616c65206973206e6f74207965742061637469766500000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204554482076616c7565000000000000000000000000600082015250565b7f68747470733a2f2f6d6574612e637962657262756c6c732e696f2f0000000000600082015250565b7f596f75722061646472657373206973206e6f742077686974656c69737465642060008201527f666f72207468652070726573616c650000000000000000000000000000000000602082015250565b614ec38161431e565b8114614ece57600080fd5b50565b614eda81614330565b8114614ee557600080fd5b50565b614ef18161433c565b8114614efc57600080fd5b50565b614f0881614388565b8114614f1357600080fd5b5056fea2646970667358221220df1063b6c011d402c5a7cf0fdc5372dae7a9b339cfbb6be790229ada79631fb664736f6c63430008070033

Deployed Bytecode Sourcemap

56288:1564:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45758:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32922:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34615:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34138:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46561:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52496:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56475:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35674:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57752:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46142:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55156:155;;;;;;;;;;;;;:::i;:::-;;55476:145;;;;;;;;;;;;;:::i;:::-;;54782:366;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36121:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46751:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52610:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52532:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52433:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32529:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52650:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54527:247;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32172:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11714:94;;;;;;;;;;;;;:::i;:::-;;55319:149;;;;;;;;;;;;;:::i;:::-;;11063:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56502:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33091:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52569:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53821:698;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34995:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36377:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55629:501;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56851:893;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53135:678;;;:::i;:::-;;52742:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52465:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35393:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11963:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52689:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45758:300;45905:4;45962:35;45947:50;;;:11;:50;;;;:103;;;;46014:36;46038:11;46014:23;:36::i;:::-;45947:103;45927:123;;45758:300;;;:::o;32922:100::-;32976:13;33009:5;33002:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32922:100;:::o;34615:308::-;34736:7;34783:16;34791:7;34783;:16::i;:::-;34761:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;34891:15;:24;34907:7;34891:24;;;;;;;;;;;;;;;;;;;;;34884:31;;34615:308;;;:::o;34138:411::-;34219:13;34235:23;34250:7;34235:14;:23::i;:::-;34219:39;;34283:5;34277:11;;:2;:11;;;;34269:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;34377:5;34361:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;34386:37;34403:5;34410:12;:10;:12::i;:::-;34386:16;:37::i;:::-;34361:62;34339:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;34520:21;34529:2;34533:7;34520:8;:21::i;:::-;34208:341;34138:411;;:::o;46561:113::-;46622:7;46649:10;:17;;;;46642:24;;46561:113;:::o;52496:29::-;;;;:::o;56475:18::-;;;;;;;;;;;;;:::o;35674:376::-;35883:41;35902:12;:10;:12::i;:::-;35916:7;35883:18;:41::i;:::-;35861:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;36014:28;36024:4;36030:2;36034:7;36014:9;:28::i;:::-;35674:376;;;:::o;57752:97::-;11294:12;:10;:12::i;:::-;11283:23;;:7;:5;:7::i;:::-;:23;;;11275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57834:6:::1;57820:5;;:21;;;;;;;;;;;;;;;;;;57752:97:::0;:::o;46142:343::-;46284:7;46339:23;46356:5;46339:16;:23::i;:::-;46331:5;:31;46309:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;46451:12;:19;46464:5;46451:19;;;;;;;;;;;;;;;:26;46471:5;46451:26;;;;;;;;;;;;46444:33;;46142:343;;;;:::o;55156:155::-;11294:12;:10;:12::i;:::-;11283:23;;:7;:5;:7::i;:::-;:23;;;11275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55228:13:::1;;;;;;;;;;;55227:14;55211:13;;:30;;;;;;;;;;;;;;;;;;55256:13;;;;;;;;;;;:27;;;;;55273:10;;;;;;;;;;;55256:27;55252:51;;;55298:5;55285:10;;:18;;;;;;;;;;;;;;;;;;55252:51;55156:155::o:0;55476:145::-;11294:12;:10;:12::i;:::-;11283:23;;:7;:5;:7::i;:::-;:23;;;11275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55526:15:::1;55544:21;55526:39;;55584:10;55576:28;;:37;55605:7;55576:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;55515:106;55476:145::o:0;54782:366::-;54873:16;54907:15;54925:16;54935:5;54925:9;:16::i;:::-;54907:34;;54954:23;54994:7;54980:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54954:48;;55018:9;55013:102;55033:7;55029:1;:11;55013:102;;;55074:29;55094:5;55101:1;55074:19;:29::i;:::-;55062:6;55069:1;55062:9;;;;;;;;:::i;:::-;;;;;;;:41;;;;;55042:3;;;;;:::i;:::-;;;;55013:102;;;;55134:6;55127:13;;;;54782:366;;;:::o;36121:185::-;36259:39;36276:4;36282:2;36286:7;36259:39;;;;;;;;;;;;:16;:39::i;:::-;36121:185;;;:::o;46751:320::-;46871:7;46926:30;:28;:30::i;:::-;46918:5;:38;46896:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;47046:10;47057:5;47046:17;;;;;;;;:::i;:::-;;;;;;;;;;47039:24;;46751:320;;;:::o;52610:33::-;;;;;;;;;;;;;:::o;52532:28::-;;;;:::o;52433:25::-;;;;:::o;32529:326::-;32646:7;32671:13;32687:7;:16;32695:7;32687:16;;;;;;;;;;;;;;;;;;;;;32671:32;;32753:1;32736:19;;:5;:19;;;;32714:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32842:5;32835:12;;;32529:326;;;:::o;52650:30::-;;;;;;;;;;;;;:::o;54527:247::-;11294:12;:10;:12::i;:::-;11283:23;;:7;:5;:7::i;:::-;:23;;;11275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54653:9:::1;54648:119;54668:16;;:23;;54664:1;:27;54648:119;;;54751:4;54713:14;:35;54728:16;;54745:1;54728:19;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;54713:35;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;54693:3;;;;;:::i;:::-;;;;54648:119;;;;54527:247:::0;;:::o;32172:295::-;32289:7;32353:1;32336:19;;:5;:19;;;;32314:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;32443:9;:16;32453:5;32443:16;;;;;;;;;;;;;;;;32436:23;;32172:295;;;:::o;11714:94::-;11294:12;:10;:12::i;:::-;11283:23;;:7;:5;:7::i;:::-;:23;;;11275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11779:21:::1;11797:1;11779:9;:21::i;:::-;11714:94::o:0;55319:149::-;11294:12;:10;:12::i;:::-;11283:23;;:7;:5;:7::i;:::-;:23;;;11275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55385:10:::1;;;;;;;;;;;55384:11;55371:10;;:24;;;;;;;;;;;;;;;;;;55410:10;;;;;;;;;;;:27;;;;;55424:13;;;;;;;;;;;55410:27;55406:54;;;55455:5;55439:13;;:21;;;;;;;;;;;;;;;;;;55406:54;55319:149::o:0;11063:87::-;11109:7;11136:6;;;;;;;;;;;11129:13;;11063:87;:::o;56502:46::-;56539:9;56502:46;:::o;33091:104::-;33147:13;33180:7;33173:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33091:104;:::o;52569:32::-;;;;:::o;53821:698::-;53879:14;53896:13;:11;:13::i;:::-;53879:30;;53930:10;;;;;;;;;;;53922:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;54009:1;54000:6;:10;:24;;;;;54023:1;54014:6;:10;54000:24;53978:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;54143:10;;54121:18;54132:6;54121;:10;;:18;;;;:::i;:::-;:32;;54099:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;54272:9;54251:17;54261:6;54251:5;;:9;;:17;;;;:::i;:::-;:30;54243:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;54324:9;54319:193;54339:6;54335:1;:10;54319:193;;;54367:33;54377:10;54398:1;54389:6;:10;;;;:::i;:::-;54367:9;:33::i;:::-;54415:14;:26;54430:10;54415:26;;;;;;;;;;;;;;;;:28;;;;;;;;;:::i;:::-;;;;;;54465:35;54486:1;54477:6;:10;;;;:::i;:::-;54489;54465:35;;;;;;;:::i;:::-;;;;;;;;54347:3;;;;;:::i;:::-;;;;54319:193;;;;53868:651;53821:698;:::o;34995:327::-;35142:12;:10;:12::i;:::-;35130:24;;:8;:24;;;;35122:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;35242:8;35197:18;:32;35216:12;:10;:12::i;:::-;35197:32;;;;;;;;;;;;;;;:42;35230:8;35197:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35295:8;35266:48;;35281:12;:10;:12::i;:::-;35266:48;;;35305:8;35266:48;;;;;;:::i;:::-;;;;;;;;34995:327;;:::o;36377:365::-;36566:41;36585:12;:10;:12::i;:::-;36599:7;36566:18;:41::i;:::-;36544:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;36695:39;36709:4;36715:2;36719:7;36728:5;36695:13;:39::i;:::-;36377:365;;;;:::o;55629:501::-;55747:13;55800:16;55808:7;55800;:16::i;:::-;55778:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;56040:18;:7;:16;:18::i;:::-;55949:158;;;;;;;;:::i;:::-;;;;;;;;;;;;;55904:218;;55629:501;;;:::o;56851:893::-;56938:7;56407:10;56389:28;;:14;56397:5;56389:7;:14::i;:::-;:28;;;56381:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;56967:7:::1;56407:10;56389:28;;:14;56397:5;56389:7;:14::i;:::-;:28;;;56381:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;56992:14:::2;57009:13;:11;:13::i;:::-;56992:30;;57067:10;;57057:6;:20;;57035:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;57186:9;;57177:6;:18;57169:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;57279:10;;57269:7;:20;:44;;;;;57303:10;;57293:7;:20;57269:44;57247:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;57426:7;57415;:18;;57393:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;57536:5;;;;;;;;;;;:11;;;57548:10;56539:9;57536:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;57582:14;57612:9;;57599:10;;:22;;;;:::i;:::-;57582:39;;57632:9;;:11;;;;;;;;;:::i;:::-;;;;;;57654:29;57664:10;57676:6;57654:9;:29::i;:::-;57701:35;57711:6;57719:7;57728;57701:35;;;;;;;;:::i;:::-;;;;;;;;56981:763;;56458:1:::1;56851:893:::0;;;:::o;53135:678::-;53186:14;53203:13;:11;:13::i;:::-;53186:30;;53237:13;;;;;;;;;;;53229:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;53325:14;:26;53340:10;53325:26;;;;;;;;;;;;;;;;;;;;;;;;;53303:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;53476:10;;53459:13;53470:1;53459:6;:10;;:13;;;;:::i;:::-;:27;;53437:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;53596:9;53587:5;;:18;53579:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;53672:5;53643:14;:26;53658:10;53643:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;53690:29;53700:10;53712:6;53690:9;:29::i;:::-;53730:14;:26;53745:10;53730:26;;;;;;;;;;;;;;;;:28;;;;;;;;;:::i;:::-;;;;;;53774:31;53786:6;53794:10;53774:31;;;;;;;:::i;:::-;;;;;;;;53175:638;53135:678::o;52742:49::-;;;;;;;;;;;;;;;;;:::o;52465:24::-;;;;:::o;35393:214::-;35535:4;35564:18;:25;35583:5;35564:25;;;;;;;;;;;;;;;:35;35590:8;35564:35;;;;;;;;;;;;;;;;;;;;;;;;;35557:42;;35393:214;;;;:::o;11963:229::-;11294:12;:10;:12::i;:::-;11283:23;;:7;:5;:7::i;:::-;:23;;;11275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12086:1:::1;12066:22;;:8;:22;;;;12044:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;12165:19;12175:8;12165:9;:19::i;:::-;11963:229:::0;:::o;52689:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;13142:387::-;13202:4;13410:12;13477:7;13465:20;13457:28;;13520:1;13513:4;:8;13506:15;;;13142:387;;;:::o;44703:126::-;;;;:::o;31753:355::-;31900:4;31957:25;31942:40;;;:11;:40;;;;:105;;;;32014:33;31999:48;;;:11;:48;;;;31942:105;:158;;;;32064:36;32088:11;32064:23;:36::i;:::-;31942:158;31922:178;;31753:355;;;:::o;38289:127::-;38354:4;38406:1;38378:30;;:7;:16;38386:7;38378:16;;;;;;;;;;;;;;;;;;;;;:30;;;;38371:37;;38289:127;;;:::o;9832:98::-;9885:7;9912:10;9905:17;;9832:98;:::o;42412:174::-;42514:2;42487:15;:24;42503:7;42487:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42570:7;42566:2;42532:46;;42541:23;42556:7;42541:14;:23::i;:::-;42532:46;;;;;;;;;;;;42412:174;;:::o;38583:452::-;38712:4;38756:16;38764:7;38756;:16::i;:::-;38734:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;38855:13;38871:23;38886:7;38871:14;:23::i;:::-;38855:39;;38924:5;38913:16;;:7;:16;;;:64;;;;38970:7;38946:31;;:20;38958:7;38946:11;:20::i;:::-;:31;;;38913:64;:113;;;;38994:32;39011:5;39018:7;38994:16;:32::i;:::-;38913:113;38905:122;;;38583:452;;;;:::o;41679:615::-;41852:4;41825:31;;:23;41840:7;41825:14;:23::i;:::-;:31;;;41803:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;41958:1;41944:16;;:2;:16;;;;41936:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;42014:39;42035:4;42041:2;42045:7;42014:20;:39::i;:::-;42118:29;42135:1;42139:7;42118:8;:29::i;:::-;42179:1;42160:9;:15;42170:4;42160:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;42208:1;42191:9;:13;42201:2;42191:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;42239:2;42220:7;:16;42228:7;42220:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;42278:7;42274:2;42259:27;;42268:4;42259:27;;;;;;;;;;;;41679:615;;;:::o;12200:173::-;12256:16;12275:6;;;;;;;;;;;12256:25;;12301:8;12292:6;;:17;;;;;;;;;;;;;;;;;;12356:8;12325:40;;12346:8;12325:40;;;;;;;;;;;;12245:128;12200:173;:::o;2948:98::-;3006:7;3037:1;3033;:5;;;;:::i;:::-;3026:12;;2948:98;;;;:::o;3686:::-;3744:7;3775:1;3771;:5;;;;:::i;:::-;3764:12;;3686:98;;;;:::o;39377:110::-;39453:26;39463:2;39467:7;39453:26;;;;;;;;;;;;:9;:26::i;:::-;39377:110;;:::o;37624:352::-;37781:28;37791:4;37797:2;37801:7;37781:9;:28::i;:::-;37842:48;37865:4;37871:2;37875:7;37884:5;37842:22;:48::i;:::-;37820:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;37624:352;;;;:::o;7420:723::-;7476:13;7706:1;7697:5;:10;7693:53;;;7724:10;;;;;;;;;;;;;;;;;;;;;7693:53;7756:12;7771:5;7756:20;;7787:14;7812:78;7827:1;7819:4;:9;7812:78;;7845:8;;;;;:::i;:::-;;;;7876:2;7868:10;;;;;:::i;:::-;;;7812:78;;;7900:19;7932:6;7922:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7900:39;;7950:154;7966:1;7957:5;:10;7950:154;;7994:1;7984:11;;;;;:::i;:::-;;;8061:2;8053:5;:10;;;;:::i;:::-;8040:2;:24;;;;:::i;:::-;8027:39;;8010:6;8017;8010:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8090:2;8081:11;;;;;:::i;:::-;;;7950:154;;;8128:6;8114:21;;;;;7420:723;;;;:::o;23535:207::-;23665:4;23709:25;23694:40;;;:11;:40;;;;23687:47;;23535:207;;;:::o;47684:589::-;47828:45;47855:4;47861:2;47865:7;47828:26;:45::i;:::-;47906:1;47890:18;;:4;:18;;;47886:187;;;47925:40;47957:7;47925:31;:40::i;:::-;47886:187;;;47995:2;47987:10;;:4;:10;;;47983:90;;48014:47;48047:4;48053:7;48014:32;:47::i;:::-;47983:90;47886:187;48101:1;48087:16;;:2;:16;;;48083:183;;;48120:45;48157:7;48120:36;:45::i;:::-;48083:183;;;48193:4;48187:10;;:2;:10;;;48183:83;;48214:40;48242:2;48246:7;48214:27;:40::i;:::-;48183:83;48083:183;47684:589;;;:::o;39714:321::-;39844:18;39850:2;39854:7;39844:5;:18::i;:::-;39895:54;39926:1;39930:2;39934:7;39943:5;39895:22;:54::i;:::-;39873:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;39714:321;;;:::o;43151:980::-;43306:4;43327:15;:2;:13;;;:15::i;:::-;43323:801;;;43396:2;43380:36;;;43439:12;:10;:12::i;:::-;43474:4;43501:7;43531:5;43380:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43359:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43755:1;43738:6;:13;:18;43734:320;;;43781:108;;;;;;;;;;:::i;:::-;;;;;;;;43734:320;44004:6;43998:13;43989:6;43985:2;43981:15;43974:38;43359:710;43629:41;;;43619:51;;;:6;:51;;;;43612:58;;;;;43323:801;44108:4;44101:11;;43151:980;;;;;;;:::o;48996:164::-;49100:10;:17;;;;49073:15;:24;49089:7;49073:24;;;;;;;;;;;:44;;;;49128:10;49144:7;49128:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48996:164;:::o;49787:1002::-;50067:22;50117:1;50092:22;50109:4;50092:16;:22::i;:::-;:26;;;;:::i;:::-;50067:51;;50129:18;50150:17;:26;50168:7;50150:26;;;;;;;;;;;;50129:47;;50297:14;50283:10;:28;50279:328;;50328:19;50350:12;:18;50363:4;50350:18;;;;;;;;;;;;;;;:34;50369:14;50350:34;;;;;;;;;;;;50328:56;;50434:11;50401:12;:18;50414:4;50401:18;;;;;;;;;;;;;;;:30;50420:10;50401:30;;;;;;;;;;;:44;;;;50551:10;50518:17;:30;50536:11;50518:30;;;;;;;;;;;:43;;;;50313:294;50279:328;50703:17;:26;50721:7;50703:26;;;;;;;;;;;50696:33;;;50747:12;:18;50760:4;50747:18;;;;;;;;;;;;;;;:34;50766:14;50747:34;;;;;;;;;;;50740:41;;;49882:907;;49787:1002;;:::o;51084:1079::-;51337:22;51382:1;51362:10;:17;;;;:21;;;;:::i;:::-;51337:46;;51394:18;51415:15;:24;51431:7;51415:24;;;;;;;;;;;;51394:45;;51766:19;51788:10;51799:14;51788:26;;;;;;;;:::i;:::-;;;;;;;;;;51766:48;;51852:11;51827:10;51838;51827:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;51963:10;51932:15;:28;51948:11;51932:28;;;;;;;;;;;:41;;;;52104:15;:24;52120:7;52104:24;;;;;;;;;;;52097:31;;;52139:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;51155:1008;;;51084:1079;:::o;48574:221::-;48659:14;48676:20;48693:2;48676:16;:20::i;:::-;48659:37;;48734:7;48707:12;:16;48720:2;48707:16;;;;;;;;;;;;;;;:24;48724:6;48707:24;;;;;;;;;;;:34;;;;48781:6;48752:17;:26;48770:7;48752:26;;;;;;;;;;;:35;;;;48648:147;48574:221;;:::o;40371:382::-;40465:1;40451:16;;:2;:16;;;;40443:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40524:16;40532:7;40524;:16::i;:::-;40523:17;40515:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40586:45;40615:1;40619:2;40623:7;40586:20;:45::i;:::-;40661:1;40644:9;:13;40654:2;40644:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;40692:2;40673:7;:16;40681:7;40673:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;40737:7;40733:2;40712:33;;40729:1;40712:33;;;;;;;;;;;;40371:382;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1159:133::-;1202:5;1240:6;1227:20;1218:29;;1256:30;1280:5;1256:30;:::i;:::-;1159:133;;;;:::o;1298:137::-;1343:5;1381:6;1368:20;1359:29;;1397:32;1423:5;1397:32;:::i;:::-;1298:137;;;;:::o;1441:141::-;1497:5;1528:6;1522:13;1513:22;;1544:32;1570:5;1544:32;:::i;:::-;1441:141;;;;:::o;1601:338::-;1656:5;1705:3;1698:4;1690:6;1686:17;1682:27;1672:122;;1713:79;;:::i;:::-;1672:122;1830:6;1817:20;1855:78;1929:3;1921:6;1914:4;1906:6;1902:17;1855:78;:::i;:::-;1846:87;;1662:277;1601:338;;;;:::o;1945:139::-;1991:5;2029:6;2016:20;2007:29;;2045:33;2072:5;2045:33;:::i;:::-;1945:139;;;;:::o;2090:329::-;2149:6;2198:2;2186:9;2177:7;2173:23;2169:32;2166:119;;;2204:79;;:::i;:::-;2166:119;2324:1;2349:53;2394:7;2385:6;2374:9;2370:22;2349:53;:::i;:::-;2339:63;;2295:117;2090:329;;;;:::o;2425:474::-;2493:6;2501;2550:2;2538:9;2529:7;2525:23;2521:32;2518:119;;;2556:79;;:::i;:::-;2518:119;2676:1;2701:53;2746:7;2737:6;2726:9;2722:22;2701:53;:::i;:::-;2691:63;;2647:117;2803:2;2829:53;2874:7;2865:6;2854:9;2850:22;2829:53;:::i;:::-;2819:63;;2774:118;2425:474;;;;;:::o;2905:619::-;2982:6;2990;2998;3047:2;3035:9;3026:7;3022:23;3018:32;3015:119;;;3053:79;;:::i;:::-;3015:119;3173:1;3198:53;3243:7;3234:6;3223:9;3219:22;3198:53;:::i;:::-;3188:63;;3144:117;3300:2;3326:53;3371:7;3362:6;3351:9;3347:22;3326:53;:::i;:::-;3316:63;;3271:118;3428:2;3454:53;3499:7;3490:6;3479:9;3475:22;3454:53;:::i;:::-;3444:63;;3399:118;2905:619;;;;;:::o;3530:943::-;3625:6;3633;3641;3649;3698:3;3686:9;3677:7;3673:23;3669:33;3666:120;;;3705:79;;:::i;:::-;3666:120;3825:1;3850:53;3895:7;3886:6;3875:9;3871:22;3850:53;:::i;:::-;3840:63;;3796:117;3952:2;3978:53;4023:7;4014:6;4003:9;3999:22;3978:53;:::i;:::-;3968:63;;3923:118;4080:2;4106:53;4151:7;4142:6;4131:9;4127:22;4106:53;:::i;:::-;4096:63;;4051:118;4236:2;4225:9;4221:18;4208:32;4267:18;4259:6;4256:30;4253:117;;;4289:79;;:::i;:::-;4253:117;4394:62;4448:7;4439:6;4428:9;4424:22;4394:62;:::i;:::-;4384:72;;4179:287;3530:943;;;;;;;:::o;4479:468::-;4544:6;4552;4601:2;4589:9;4580:7;4576:23;4572:32;4569:119;;;4607:79;;:::i;:::-;4569:119;4727:1;4752:53;4797:7;4788:6;4777:9;4773:22;4752:53;:::i;:::-;4742:63;;4698:117;4854:2;4880:50;4922:7;4913:6;4902:9;4898:22;4880:50;:::i;:::-;4870:60;;4825:115;4479:468;;;;;:::o;4953:474::-;5021:6;5029;5078:2;5066:9;5057:7;5053:23;5049:32;5046:119;;;5084:79;;:::i;:::-;5046:119;5204:1;5229:53;5274:7;5265:6;5254:9;5250:22;5229:53;:::i;:::-;5219:63;;5175:117;5331:2;5357:53;5402:7;5393:6;5382:9;5378:22;5357:53;:::i;:::-;5347:63;;5302:118;4953:474;;;;;:::o;5433:559::-;5519:6;5527;5576:2;5564:9;5555:7;5551:23;5547:32;5544:119;;;5582:79;;:::i;:::-;5544:119;5730:1;5719:9;5715:17;5702:31;5760:18;5752:6;5749:30;5746:117;;;5782:79;;:::i;:::-;5746:117;5895:80;5967:7;5958:6;5947:9;5943:22;5895:80;:::i;:::-;5877:98;;;;5673:312;5433:559;;;;;:::o;5998:327::-;6056:6;6105:2;6093:9;6084:7;6080:23;6076:32;6073:119;;;6111:79;;:::i;:::-;6073:119;6231:1;6256:52;6300:7;6291:6;6280:9;6276:22;6256:52;:::i;:::-;6246:62;;6202:116;5998:327;;;;:::o;6331:349::-;6400:6;6449:2;6437:9;6428:7;6424:23;6420:32;6417:119;;;6455:79;;:::i;:::-;6417:119;6575:1;6600:63;6655:7;6646:6;6635:9;6631:22;6600:63;:::i;:::-;6590:73;;6546:127;6331:349;;;;:::o;6686:329::-;6745:6;6794:2;6782:9;6773:7;6769:23;6765:32;6762:119;;;6800:79;;:::i;:::-;6762:119;6920:1;6945:53;6990:7;6981:6;6970:9;6966:22;6945:53;:::i;:::-;6935:63;;6891:117;6686:329;;;;:::o;7021:474::-;7089:6;7097;7146:2;7134:9;7125:7;7121:23;7117:32;7114:119;;;7152:79;;:::i;:::-;7114:119;7272:1;7297:53;7342:7;7333:6;7322:9;7318:22;7297:53;:::i;:::-;7287:63;;7243:117;7399:2;7425:53;7470:7;7461:6;7450:9;7446:22;7425:53;:::i;:::-;7415:63;;7370:118;7021:474;;;;;:::o;7501:179::-;7570:10;7591:46;7633:3;7625:6;7591:46;:::i;:::-;7669:4;7664:3;7660:14;7646:28;;7501:179;;;;:::o;7686:118::-;7773:24;7791:5;7773:24;:::i;:::-;7768:3;7761:37;7686:118;;:::o;7840:732::-;7959:3;7988:54;8036:5;7988:54;:::i;:::-;8058:86;8137:6;8132:3;8058:86;:::i;:::-;8051:93;;8168:56;8218:5;8168:56;:::i;:::-;8247:7;8278:1;8263:284;8288:6;8285:1;8282:13;8263:284;;;8364:6;8358:13;8391:63;8450:3;8435:13;8391:63;:::i;:::-;8384:70;;8477:60;8530:6;8477:60;:::i;:::-;8467:70;;8323:224;8310:1;8307;8303:9;8298:14;;8263:284;;;8267:14;8563:3;8556:10;;7964:608;;;7840:732;;;;:::o;8578:109::-;8659:21;8674:5;8659:21;:::i;:::-;8654:3;8647:34;8578:109;;:::o;8693:360::-;8779:3;8807:38;8839:5;8807:38;:::i;:::-;8861:70;8924:6;8919:3;8861:70;:::i;:::-;8854:77;;8940:52;8985:6;8980:3;8973:4;8966:5;8962:16;8940:52;:::i;:::-;9017:29;9039:6;9017:29;:::i;:::-;9012:3;9008:39;9001:46;;8783:270;8693:360;;;;:::o;9059:159::-;9160:51;9205:5;9160:51;:::i;:::-;9155:3;9148:64;9059:159;;:::o;9224:364::-;9312:3;9340:39;9373:5;9340:39;:::i;:::-;9395:71;9459:6;9454:3;9395:71;:::i;:::-;9388:78;;9475:52;9520:6;9515:3;9508:4;9501:5;9497:16;9475:52;:::i;:::-;9552:29;9574:6;9552:29;:::i;:::-;9547:3;9543:39;9536:46;;9316:272;9224:364;;;;:::o;9594:377::-;9700:3;9728:39;9761:5;9728:39;:::i;:::-;9783:89;9865:6;9860:3;9783:89;:::i;:::-;9776:96;;9881:52;9926:6;9921:3;9914:4;9907:5;9903:16;9881:52;:::i;:::-;9958:6;9953:3;9949:16;9942:23;;9704:267;9594:377;;;;:::o;9977:366::-;10119:3;10140:67;10204:2;10199:3;10140:67;:::i;:::-;10133:74;;10216:93;10305:3;10216:93;:::i;:::-;10334:2;10329:3;10325:12;10318:19;;9977:366;;;:::o;10349:::-;10491:3;10512:67;10576:2;10571:3;10512:67;:::i;:::-;10505:74;;10588:93;10677:3;10588:93;:::i;:::-;10706:2;10701:3;10697:12;10690:19;;10349:366;;;:::o;10721:::-;10863:3;10884:67;10948:2;10943:3;10884:67;:::i;:::-;10877:74;;10960:93;11049:3;10960:93;:::i;:::-;11078:2;11073:3;11069:12;11062:19;;10721:366;;;:::o;11093:::-;11235:3;11256:67;11320:2;11315:3;11256:67;:::i;:::-;11249:74;;11332:93;11421:3;11332:93;:::i;:::-;11450:2;11445:3;11441:12;11434:19;;11093:366;;;:::o;11465:::-;11607:3;11628:67;11692:2;11687:3;11628:67;:::i;:::-;11621:74;;11704:93;11793:3;11704:93;:::i;:::-;11822:2;11817:3;11813:12;11806:19;;11465:366;;;:::o;11837:::-;11979:3;12000:67;12064:2;12059:3;12000:67;:::i;:::-;11993:74;;12076:93;12165:3;12076:93;:::i;:::-;12194:2;12189:3;12185:12;12178:19;;11837:366;;;:::o;12209:::-;12351:3;12372:67;12436:2;12431:3;12372:67;:::i;:::-;12365:74;;12448:93;12537:3;12448:93;:::i;:::-;12566:2;12561:3;12557:12;12550:19;;12209:366;;;:::o;12581:::-;12723:3;12744:67;12808:2;12803:3;12744:67;:::i;:::-;12737:74;;12820:93;12909:3;12820:93;:::i;:::-;12938:2;12933:3;12929:12;12922:19;;12581:366;;;:::o;12953:::-;13095:3;13116:67;13180:2;13175:3;13116:67;:::i;:::-;13109:74;;13192:93;13281:3;13192:93;:::i;:::-;13310:2;13305:3;13301:12;13294:19;;12953:366;;;:::o;13325:::-;13467:3;13488:67;13552:2;13547:3;13488:67;:::i;:::-;13481:74;;13564:93;13653:3;13564:93;:::i;:::-;13682:2;13677:3;13673:12;13666:19;;13325:366;;;:::o;13697:::-;13839:3;13860:67;13924:2;13919:3;13860:67;:::i;:::-;13853:74;;13936:93;14025:3;13936:93;:::i;:::-;14054:2;14049:3;14045:12;14038:19;;13697:366;;;:::o;14069:::-;14211:3;14232:67;14296:2;14291:3;14232:67;:::i;:::-;14225:74;;14308:93;14397:3;14308:93;:::i;:::-;14426:2;14421:3;14417:12;14410:19;;14069:366;;;:::o;14441:::-;14583:3;14604:67;14668:2;14663:3;14604:67;:::i;:::-;14597:74;;14680:93;14769:3;14680:93;:::i;:::-;14798:2;14793:3;14789:12;14782:19;;14441:366;;;:::o;14813:::-;14955:3;14976:67;15040:2;15035:3;14976:67;:::i;:::-;14969:74;;15052:93;15141:3;15052:93;:::i;:::-;15170:2;15165:3;15161:12;15154:19;;14813:366;;;:::o;15185:::-;15327:3;15348:67;15412:2;15407:3;15348:67;:::i;:::-;15341:74;;15424:93;15513:3;15424:93;:::i;:::-;15542:2;15537:3;15533:12;15526:19;;15185:366;;;:::o;15557:::-;15699:3;15720:67;15784:2;15779:3;15720:67;:::i;:::-;15713:74;;15796:93;15885:3;15796:93;:::i;:::-;15914:2;15909:3;15905:12;15898:19;;15557:366;;;:::o;15929:::-;16071:3;16092:67;16156:2;16151:3;16092:67;:::i;:::-;16085:74;;16168:93;16257:3;16168:93;:::i;:::-;16286:2;16281:3;16277:12;16270:19;;15929:366;;;:::o;16301:400::-;16461:3;16482:84;16564:1;16559:3;16482:84;:::i;:::-;16475:91;;16575:93;16664:3;16575:93;:::i;:::-;16693:1;16688:3;16684:11;16677:18;;16301:400;;;:::o;16707:366::-;16849:3;16870:67;16934:2;16929:3;16870:67;:::i;:::-;16863:74;;16946:93;17035:3;16946:93;:::i;:::-;17064:2;17059:3;17055:12;17048:19;;16707:366;;;:::o;17079:::-;17221:3;17242:67;17306:2;17301:3;17242:67;:::i;:::-;17235:74;;17318:93;17407:3;17318:93;:::i;:::-;17436:2;17431:3;17427:12;17420:19;;17079:366;;;:::o;17451:::-;17593:3;17614:67;17678:2;17673:3;17614:67;:::i;:::-;17607:74;;17690:93;17779:3;17690:93;:::i;:::-;17808:2;17803:3;17799:12;17792:19;;17451:366;;;:::o;17823:::-;17965:3;17986:67;18050:2;18045:3;17986:67;:::i;:::-;17979:74;;18062:93;18151:3;18062:93;:::i;:::-;18180:2;18175:3;18171:12;18164:19;;17823:366;;;:::o;18195:::-;18337:3;18358:67;18422:2;18417:3;18358:67;:::i;:::-;18351:74;;18434:93;18523:3;18434:93;:::i;:::-;18552:2;18547:3;18543:12;18536:19;;18195:366;;;:::o;18567:::-;18709:3;18730:67;18794:2;18789:3;18730:67;:::i;:::-;18723:74;;18806:93;18895:3;18806:93;:::i;:::-;18924:2;18919:3;18915:12;18908:19;;18567:366;;;:::o;18939:::-;19081:3;19102:67;19166:2;19161:3;19102:67;:::i;:::-;19095:74;;19178:93;19267:3;19178:93;:::i;:::-;19296:2;19291:3;19287:12;19280:19;;18939:366;;;:::o;19311:::-;19453:3;19474:67;19538:2;19533:3;19474:67;:::i;:::-;19467:74;;19550:93;19639:3;19550:93;:::i;:::-;19668:2;19663:3;19659:12;19652:19;;19311:366;;;:::o;19683:::-;19825:3;19846:67;19910:2;19905:3;19846:67;:::i;:::-;19839:74;;19922:93;20011:3;19922:93;:::i;:::-;20040:2;20035:3;20031:12;20024:19;;19683:366;;;:::o;20055:::-;20197:3;20218:67;20282:2;20277:3;20218:67;:::i;:::-;20211:74;;20294:93;20383:3;20294:93;:::i;:::-;20412:2;20407:3;20403:12;20396:19;;20055:366;;;:::o;20427:::-;20569:3;20590:67;20654:2;20649:3;20590:67;:::i;:::-;20583:74;;20666:93;20755:3;20666:93;:::i;:::-;20784:2;20779:3;20775:12;20768:19;;20427:366;;;:::o;20799:::-;20941:3;20962:67;21026:2;21021:3;20962:67;:::i;:::-;20955:74;;21038:93;21127:3;21038:93;:::i;:::-;21156:2;21151:3;21147:12;21140:19;;20799:366;;;:::o;21171:402::-;21331:3;21352:85;21434:2;21429:3;21352:85;:::i;:::-;21345:92;;21446:93;21535:3;21446:93;:::i;:::-;21564:2;21559:3;21555:12;21548:19;;21171:402;;;:::o;21579:366::-;21721:3;21742:67;21806:2;21801:3;21742:67;:::i;:::-;21735:74;;21818:93;21907:3;21818:93;:::i;:::-;21936:2;21931:3;21927:12;21920:19;;21579:366;;;:::o;21951:108::-;22028:24;22046:5;22028:24;:::i;:::-;22023:3;22016:37;21951:108;;:::o;22065:118::-;22152:24;22170:5;22152:24;:::i;:::-;22147:3;22140:37;22065:118;;:::o;22189:807::-;22523:3;22545:148;22689:3;22545:148;:::i;:::-;22538:155;;22710:95;22801:3;22792:6;22710:95;:::i;:::-;22703:102;;22822:148;22966:3;22822:148;:::i;:::-;22815:155;;22987:3;22980:10;;22189:807;;;;:::o;23002:222::-;23095:4;23133:2;23122:9;23118:18;23110:26;;23146:71;23214:1;23203:9;23199:17;23190:6;23146:71;:::i;:::-;23002:222;;;;:::o;23230:640::-;23425:4;23463:3;23452:9;23448:19;23440:27;;23477:71;23545:1;23534:9;23530:17;23521:6;23477:71;:::i;:::-;23558:72;23626:2;23615:9;23611:18;23602:6;23558:72;:::i;:::-;23640;23708:2;23697:9;23693:18;23684:6;23640:72;:::i;:::-;23759:9;23753:4;23749:20;23744:2;23733:9;23729:18;23722:48;23787:76;23858:4;23849:6;23787:76;:::i;:::-;23779:84;;23230:640;;;;;;;:::o;23876:332::-;23997:4;24035:2;24024:9;24020:18;24012:26;;24048:71;24116:1;24105:9;24101:17;24092:6;24048:71;:::i;:::-;24129:72;24197:2;24186:9;24182:18;24173:6;24129:72;:::i;:::-;23876:332;;;;;:::o;24214:373::-;24357:4;24395:2;24384:9;24380:18;24372:26;;24444:9;24438:4;24434:20;24430:1;24419:9;24415:17;24408:47;24472:108;24575:4;24566:6;24472:108;:::i;:::-;24464:116;;24214:373;;;;:::o;24593:210::-;24680:4;24718:2;24707:9;24703:18;24695:26;;24731:65;24793:1;24782:9;24778:17;24769:6;24731:65;:::i;:::-;24593:210;;;;:::o;24809:250::-;24916:4;24954:2;24943:9;24939:18;24931:26;;24967:85;25049:1;25038:9;25034:17;25025:6;24967:85;:::i;:::-;24809:250;;;;:::o;25065:313::-;25178:4;25216:2;25205:9;25201:18;25193:26;;25265:9;25259:4;25255:20;25251:1;25240:9;25236:17;25229:47;25293:78;25366:4;25357:6;25293:78;:::i;:::-;25285:86;;25065:313;;;;:::o;25384:419::-;25550:4;25588:2;25577:9;25573:18;25565:26;;25637:9;25631:4;25627:20;25623:1;25612:9;25608:17;25601:47;25665:131;25791:4;25665:131;:::i;:::-;25657:139;;25384:419;;;:::o;25809:::-;25975:4;26013:2;26002:9;25998:18;25990:26;;26062:9;26056:4;26052:20;26048:1;26037:9;26033:17;26026:47;26090:131;26216:4;26090:131;:::i;:::-;26082:139;;25809:419;;;:::o;26234:::-;26400:4;26438:2;26427:9;26423:18;26415:26;;26487:9;26481:4;26477:20;26473:1;26462:9;26458:17;26451:47;26515:131;26641:4;26515:131;:::i;:::-;26507:139;;26234:419;;;:::o;26659:::-;26825:4;26863:2;26852:9;26848:18;26840:26;;26912:9;26906:4;26902:20;26898:1;26887:9;26883:17;26876:47;26940:131;27066:4;26940:131;:::i;:::-;26932:139;;26659:419;;;:::o;27084:::-;27250:4;27288:2;27277:9;27273:18;27265:26;;27337:9;27331:4;27327:20;27323:1;27312:9;27308:17;27301:47;27365:131;27491:4;27365:131;:::i;:::-;27357:139;;27084:419;;;:::o;27509:::-;27675:4;27713:2;27702:9;27698:18;27690:26;;27762:9;27756:4;27752:20;27748:1;27737:9;27733:17;27726:47;27790:131;27916:4;27790:131;:::i;:::-;27782:139;;27509:419;;;:::o;27934:::-;28100:4;28138:2;28127:9;28123:18;28115:26;;28187:9;28181:4;28177:20;28173:1;28162:9;28158:17;28151:47;28215:131;28341:4;28215:131;:::i;:::-;28207:139;;27934:419;;;:::o;28359:::-;28525:4;28563:2;28552:9;28548:18;28540:26;;28612:9;28606:4;28602:20;28598:1;28587:9;28583:17;28576:47;28640:131;28766:4;28640:131;:::i;:::-;28632:139;;28359:419;;;:::o;28784:::-;28950:4;28988:2;28977:9;28973:18;28965:26;;29037:9;29031:4;29027:20;29023:1;29012:9;29008:17;29001:47;29065:131;29191:4;29065:131;:::i;:::-;29057:139;;28784:419;;;:::o;29209:::-;29375:4;29413:2;29402:9;29398:18;29390:26;;29462:9;29456:4;29452:20;29448:1;29437:9;29433:17;29426:47;29490:131;29616:4;29490:131;:::i;:::-;29482:139;;29209:419;;;:::o;29634:::-;29800:4;29838:2;29827:9;29823:18;29815:26;;29887:9;29881:4;29877:20;29873:1;29862:9;29858:17;29851:47;29915:131;30041:4;29915:131;:::i;:::-;29907:139;;29634:419;;;:::o;30059:::-;30225:4;30263:2;30252:9;30248:18;30240:26;;30312:9;30306:4;30302:20;30298:1;30287:9;30283:17;30276:47;30340:131;30466:4;30340:131;:::i;:::-;30332:139;;30059:419;;;:::o;30484:::-;30650:4;30688:2;30677:9;30673:18;30665:26;;30737:9;30731:4;30727:20;30723:1;30712:9;30708:17;30701:47;30765:131;30891:4;30765:131;:::i;:::-;30757:139;;30484:419;;;:::o;30909:::-;31075:4;31113:2;31102:9;31098:18;31090:26;;31162:9;31156:4;31152:20;31148:1;31137:9;31133:17;31126:47;31190:131;31316:4;31190:131;:::i;:::-;31182:139;;30909:419;;;:::o;31334:::-;31500:4;31538:2;31527:9;31523:18;31515:26;;31587:9;31581:4;31577:20;31573:1;31562:9;31558:17;31551:47;31615:131;31741:4;31615:131;:::i;:::-;31607:139;;31334:419;;;:::o;31759:::-;31925:4;31963:2;31952:9;31948:18;31940:26;;32012:9;32006:4;32002:20;31998:1;31987:9;31983:17;31976:47;32040:131;32166:4;32040:131;:::i;:::-;32032:139;;31759:419;;;:::o;32184:::-;32350:4;32388:2;32377:9;32373:18;32365:26;;32437:9;32431:4;32427:20;32423:1;32412:9;32408:17;32401:47;32465:131;32591:4;32465:131;:::i;:::-;32457:139;;32184:419;;;:::o;32609:::-;32775:4;32813:2;32802:9;32798:18;32790:26;;32862:9;32856:4;32852:20;32848:1;32837:9;32833:17;32826:47;32890:131;33016:4;32890:131;:::i;:::-;32882:139;;32609:419;;;:::o;33034:::-;33200:4;33238:2;33227:9;33223:18;33215:26;;33287:9;33281:4;33277:20;33273:1;33262:9;33258:17;33251:47;33315:131;33441:4;33315:131;:::i;:::-;33307:139;;33034:419;;;:::o;33459:::-;33625:4;33663:2;33652:9;33648:18;33640:26;;33712:9;33706:4;33702:20;33698:1;33687:9;33683:17;33676:47;33740:131;33866:4;33740:131;:::i;:::-;33732:139;;33459:419;;;:::o;33884:::-;34050:4;34088:2;34077:9;34073:18;34065:26;;34137:9;34131:4;34127:20;34123:1;34112:9;34108:17;34101:47;34165:131;34291:4;34165:131;:::i;:::-;34157:139;;33884:419;;;:::o;34309:::-;34475:4;34513:2;34502:9;34498:18;34490:26;;34562:9;34556:4;34552:20;34548:1;34537:9;34533:17;34526:47;34590:131;34716:4;34590:131;:::i;:::-;34582:139;;34309:419;;;:::o;34734:::-;34900:4;34938:2;34927:9;34923:18;34915:26;;34987:9;34981:4;34977:20;34973:1;34962:9;34958:17;34951:47;35015:131;35141:4;35015:131;:::i;:::-;35007:139;;34734:419;;;:::o;35159:::-;35325:4;35363:2;35352:9;35348:18;35340:26;;35412:9;35406:4;35402:20;35398:1;35387:9;35383:17;35376:47;35440:131;35566:4;35440:131;:::i;:::-;35432:139;;35159:419;;;:::o;35584:::-;35750:4;35788:2;35777:9;35773:18;35765:26;;35837:9;35831:4;35827:20;35823:1;35812:9;35808:17;35801:47;35865:131;35991:4;35865:131;:::i;:::-;35857:139;;35584:419;;;:::o;36009:::-;36175:4;36213:2;36202:9;36198:18;36190:26;;36262:9;36256:4;36252:20;36248:1;36237:9;36233:17;36226:47;36290:131;36416:4;36290:131;:::i;:::-;36282:139;;36009:419;;;:::o;36434:::-;36600:4;36638:2;36627:9;36623:18;36615:26;;36687:9;36681:4;36677:20;36673:1;36662:9;36658:17;36651:47;36715:131;36841:4;36715:131;:::i;:::-;36707:139;;36434:419;;;:::o;36859:::-;37025:4;37063:2;37052:9;37048:18;37040:26;;37112:9;37106:4;37102:20;37098:1;37087:9;37083:17;37076:47;37140:131;37266:4;37140:131;:::i;:::-;37132:139;;36859:419;;;:::o;37284:::-;37450:4;37488:2;37477:9;37473:18;37465:26;;37537:9;37531:4;37527:20;37523:1;37512:9;37508:17;37501:47;37565:131;37691:4;37565:131;:::i;:::-;37557:139;;37284:419;;;:::o;37709:::-;37875:4;37913:2;37902:9;37898:18;37890:26;;37962:9;37956:4;37952:20;37948:1;37937:9;37933:17;37926:47;37990:131;38116:4;37990:131;:::i;:::-;37982:139;;37709:419;;;:::o;38134:222::-;38227:4;38265:2;38254:9;38250:18;38242:26;;38278:71;38346:1;38335:9;38331:17;38322:6;38278:71;:::i;:::-;38134:222;;;;:::o;38362:332::-;38483:4;38521:2;38510:9;38506:18;38498:26;;38534:71;38602:1;38591:9;38587:17;38578:6;38534:71;:::i;:::-;38615:72;38683:2;38672:9;38668:18;38659:6;38615:72;:::i;:::-;38362:332;;;;;:::o;38700:442::-;38849:4;38887:2;38876:9;38872:18;38864:26;;38900:71;38968:1;38957:9;38953:17;38944:6;38900:71;:::i;:::-;38981:72;39049:2;39038:9;39034:18;39025:6;38981:72;:::i;:::-;39063;39131:2;39120:9;39116:18;39107:6;39063:72;:::i;:::-;38700:442;;;;;;:::o;39148:129::-;39182:6;39209:20;;:::i;:::-;39199:30;;39238:33;39266:4;39258:6;39238:33;:::i;:::-;39148:129;;;:::o;39283:75::-;39316:6;39349:2;39343:9;39333:19;;39283:75;:::o;39364:307::-;39425:4;39515:18;39507:6;39504:30;39501:56;;;39537:18;;:::i;:::-;39501:56;39575:29;39597:6;39575:29;:::i;:::-;39567:37;;39659:4;39653;39649:15;39641:23;;39364:307;;;:::o;39677:132::-;39744:4;39767:3;39759:11;;39797:4;39792:3;39788:14;39780:22;;39677:132;;;:::o;39815:114::-;39882:6;39916:5;39910:12;39900:22;;39815:114;;;:::o;39935:98::-;39986:6;40020:5;40014:12;40004:22;;39935:98;;;:::o;40039:99::-;40091:6;40125:5;40119:12;40109:22;;40039:99;;;:::o;40144:113::-;40214:4;40246;40241:3;40237:14;40229:22;;40144:113;;;:::o;40263:184::-;40362:11;40396:6;40391:3;40384:19;40436:4;40431:3;40427:14;40412:29;;40263:184;;;;:::o;40453:168::-;40536:11;40570:6;40565:3;40558:19;40610:4;40605:3;40601:14;40586:29;;40453:168;;;;:::o;40627:169::-;40711:11;40745:6;40740:3;40733:19;40785:4;40780:3;40776:14;40761:29;;40627:169;;;;:::o;40802:148::-;40904:11;40941:3;40926:18;;40802:148;;;;:::o;40956:305::-;40996:3;41015:20;41033:1;41015:20;:::i;:::-;41010:25;;41049:20;41067:1;41049:20;:::i;:::-;41044:25;;41203:1;41135:66;41131:74;41128:1;41125:81;41122:107;;;41209:18;;:::i;:::-;41122:107;41253:1;41250;41246:9;41239:16;;40956:305;;;;:::o;41267:185::-;41307:1;41324:20;41342:1;41324:20;:::i;:::-;41319:25;;41358:20;41376:1;41358:20;:::i;:::-;41353:25;;41397:1;41387:35;;41402:18;;:::i;:::-;41387:35;41444:1;41441;41437:9;41432:14;;41267:185;;;;:::o;41458:348::-;41498:7;41521:20;41539:1;41521:20;:::i;:::-;41516:25;;41555:20;41573:1;41555:20;:::i;:::-;41550:25;;41743:1;41675:66;41671:74;41668:1;41665:81;41660:1;41653:9;41646:17;41642:105;41639:131;;;41750:18;;:::i;:::-;41639:131;41798:1;41795;41791:9;41780:20;;41458:348;;;;:::o;41812:191::-;41852:4;41872:20;41890:1;41872:20;:::i;:::-;41867:25;;41906:20;41924:1;41906:20;:::i;:::-;41901:25;;41945:1;41942;41939:8;41936:34;;;41950:18;;:::i;:::-;41936:34;41995:1;41992;41988:9;41980:17;;41812:191;;;;:::o;42009:96::-;42046:7;42075:24;42093:5;42075:24;:::i;:::-;42064:35;;42009:96;;;:::o;42111:90::-;42145:7;42188:5;42181:13;42174:21;42163:32;;42111:90;;;:::o;42207:149::-;42243:7;42283:66;42276:5;42272:78;42261:89;;42207:149;;;:::o;42362:126::-;42399:7;42439:42;42432:5;42428:54;42417:65;;42362:126;;;:::o;42494:77::-;42531:7;42560:5;42549:16;;42494:77;;;:::o;42577:140::-;42641:9;42674:37;42705:5;42674:37;:::i;:::-;42661:50;;42577:140;;;:::o;42723:126::-;42773:9;42806:37;42837:5;42806:37;:::i;:::-;42793:50;;42723:126;;;:::o;42855:113::-;42905:9;42938:24;42956:5;42938:24;:::i;:::-;42925:37;;42855:113;;;:::o;42974:154::-;43058:6;43053:3;43048;43035:30;43120:1;43111:6;43106:3;43102:16;43095:27;42974:154;;;:::o;43134:307::-;43202:1;43212:113;43226:6;43223:1;43220:13;43212:113;;;43311:1;43306:3;43302:11;43296:18;43292:1;43287:3;43283:11;43276:39;43248:2;43245:1;43241:10;43236:15;;43212:113;;;43343:6;43340:1;43337:13;43334:101;;;43423:1;43414:6;43409:3;43405:16;43398:27;43334:101;43183:258;43134:307;;;:::o;43447:320::-;43491:6;43528:1;43522:4;43518:12;43508:22;;43575:1;43569:4;43565:12;43596:18;43586:81;;43652:4;43644:6;43640:17;43630:27;;43586:81;43714:2;43706:6;43703:14;43683:18;43680:38;43677:84;;;43733:18;;:::i;:::-;43677:84;43498:269;43447:320;;;:::o;43773:281::-;43856:27;43878:4;43856:27;:::i;:::-;43848:6;43844:40;43986:6;43974:10;43971:22;43950:18;43938:10;43935:34;43932:62;43929:88;;;43997:18;;:::i;:::-;43929:88;44037:10;44033:2;44026:22;43816:238;43773:281;;:::o;44060:233::-;44099:3;44122:24;44140:5;44122:24;:::i;:::-;44113:33;;44168:66;44161:5;44158:77;44155:103;;;44238:18;;:::i;:::-;44155:103;44285:1;44278:5;44274:13;44267:20;;44060:233;;;:::o;44299:176::-;44331:1;44348:20;44366:1;44348:20;:::i;:::-;44343:25;;44382:20;44400:1;44382:20;:::i;:::-;44377:25;;44421:1;44411:35;;44426:18;;:::i;:::-;44411:35;44467:1;44464;44460:9;44455:14;;44299:176;;;;:::o;44481:180::-;44529:77;44526:1;44519:88;44626:4;44623:1;44616:15;44650:4;44647:1;44640:15;44667:180;44715:77;44712:1;44705:88;44812:4;44809:1;44802:15;44836:4;44833:1;44826:15;44853:180;44901:77;44898:1;44891:88;44998:4;44995:1;44988:15;45022:4;45019:1;45012:15;45039:180;45087:77;45084:1;45077:88;45184:4;45181:1;45174:15;45208:4;45205:1;45198:15;45225:180;45273:77;45270:1;45263:88;45370:4;45367:1;45360:15;45394:4;45391:1;45384:15;45411:180;45459:77;45456:1;45449:88;45556:4;45553:1;45546:15;45580:4;45577:1;45570:15;45597:117;45706:1;45703;45696:12;45720:117;45829:1;45826;45819:12;45843:117;45952:1;45949;45942:12;45966:117;46075:1;46072;46065:12;46089:117;46198:1;46195;46188:12;46212:117;46321:1;46318;46311:12;46335:102;46376:6;46427:2;46423:7;46418:2;46411:5;46407:14;46403:28;46393:38;;46335:102;;;:::o;46443:175::-;46583:27;46579:1;46571:6;46567:14;46560:51;46443:175;:::o;46624:230::-;46764:34;46760:1;46752:6;46748:14;46741:58;46833:13;46828:2;46820:6;46816:15;46809:38;46624:230;:::o;46860:237::-;47000:34;46996:1;46988:6;46984:14;46977:58;47069:20;47064:2;47056:6;47052:15;47045:45;46860:237;:::o;47103:225::-;47243:34;47239:1;47231:6;47227:14;47220:58;47312:8;47307:2;47299:6;47295:15;47288:33;47103:225;:::o;47334:178::-;47474:30;47470:1;47462:6;47458:14;47451:54;47334:178;:::o;47518:223::-;47658:34;47654:1;47646:6;47642:14;47635:58;47727:6;47722:2;47714:6;47710:15;47703:31;47518:223;:::o;47747:238::-;47887:34;47883:1;47875:6;47871:14;47864:58;47956:21;47951:2;47943:6;47939:15;47932:46;47747:238;:::o;47991:223::-;48131:34;48127:1;48119:6;48115:14;48108:58;48200:6;48195:2;48187:6;48183:15;48176:31;47991:223;:::o;48220:175::-;48360:27;48356:1;48348:6;48344:14;48337:51;48220:175;:::o;48401:231::-;48541:34;48537:1;48529:6;48525:14;48518:58;48610:14;48605:2;48597:6;48593:15;48586:39;48401:231;:::o;48638:243::-;48778:34;48774:1;48766:6;48762:14;48755:58;48847:26;48842:2;48834:6;48830:15;48823:51;48638:243;:::o;48887:229::-;49027:34;49023:1;49015:6;49011:14;49004:58;49096:12;49091:2;49083:6;49079:15;49072:37;48887:229;:::o;49122:228::-;49262:34;49258:1;49250:6;49246:14;49239:58;49331:11;49326:2;49318:6;49314:15;49307:36;49122:228;:::o;49356:224::-;49496:34;49492:1;49484:6;49480:14;49473:58;49565:7;49560:2;49552:6;49548:15;49541:32;49356:224;:::o;49586:182::-;49726:34;49722:1;49714:6;49710:14;49703:58;49586:182;:::o;49774:228::-;49914:34;49910:1;49902:6;49898:14;49891:58;49983:11;49978:2;49970:6;49966:15;49959:36;49774:228;:::o;50008:231::-;50148:34;50144:1;50136:6;50132:14;50125:58;50217:14;50212:2;50204:6;50200:15;50193:39;50008:231;:::o;50245:155::-;50385:7;50381:1;50373:6;50369:14;50362:31;50245:155;:::o;50406:240::-;50546:34;50542:1;50534:6;50530:14;50523:58;50615:23;50610:2;50602:6;50598:15;50591:48;50406:240;:::o;50652:182::-;50792:34;50788:1;50780:6;50776:14;50769:58;50652:182;:::o;50840:223::-;50980:34;50976:1;50968:6;50964:14;50957:58;51049:6;51044:2;51036:6;51032:15;51025:31;50840:223;:::o;51069:228::-;51209:34;51205:1;51197:6;51193:14;51186:58;51278:11;51273:2;51265:6;51261:15;51254:36;51069:228;:::o;51303:241::-;51443:34;51439:1;51431:6;51427:14;51420:58;51512:24;51507:2;51499:6;51495:15;51488:49;51303:241;:::o;51550:234::-;51690:34;51686:1;51678:6;51674:14;51667:58;51759:17;51754:2;51746:6;51742:15;51735:42;51550:234;:::o;51790:220::-;51930:34;51926:1;51918:6;51914:14;51907:58;51999:3;51994:2;51986:6;51982:15;51975:28;51790:220;:::o;52016:236::-;52156:34;52152:1;52144:6;52140:14;52133:58;52225:19;52220:2;52212:6;52208:15;52201:44;52016:236;:::o;52258:249::-;52398:34;52394:1;52386:6;52382:14;52375:58;52467:32;52462:2;52454:6;52450:15;52443:57;52258:249;:::o;52513:172::-;52653:24;52649:1;52641:6;52637:14;52630:48;52513:172;:::o;52691:231::-;52831:34;52827:1;52819:6;52815:14;52808:58;52900:14;52895:2;52887:6;52883:15;52876:39;52691:231;:::o;52928:170::-;53068:22;53064:1;53056:6;53052:14;53045:46;52928:170;:::o;53104:181::-;53244:29;53240:1;53232:6;53228:14;53221:53;53104:181;:::o;53295:246::-;53439:34;53435:1;53427:6;53423:14;53416:58;53512:17;53507:2;53499:6;53495:15;53488:42;53295:246;:::o;53551:130::-;53628:24;53646:5;53628:24;:::i;:::-;53621:5;53618:35;53608:63;;53667:1;53664;53657:12;53608:63;53551:130;:::o;53691:124::-;53765:21;53780:5;53765:21;:::i;:::-;53758:5;53755:32;53745:60;;53801:1;53798;53791:12;53745:60;53691:124;:::o;53825:128::-;53901:23;53918:5;53901:23;:::i;:::-;53894:5;53891:34;53881:62;;53939:1;53936;53929:12;53881:62;53825:128;:::o;53963:130::-;54040:24;54058:5;54040:24;:::i;:::-;54033:5;54030:35;54020:63;;54079:1;54076;54069:12;54020:63;53963:130;:::o

Swarm Source

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