ETH Price: $2,966.93 (-1.77%)
Gas: 2 Gwei

Token

CryptoManga (CMA)
 

Overview

Max Total Supply

0 CMA

Holders

328

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 CMA
0xfef5c1cd156902c3232d203c35d7434c47f55b27
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

CryptoManga is an NFT project. We are using the NFTs are building blocks to create applications. Our first application is a game in which users enhance the properties of their NFT by engaging with a bot on Twitter (already live on Twitter).

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CryptoManga

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-10-11
*/

// File: contracts/ILoot.sol


pragma solidity ^0.8.0;

interface ILoot {
  function balanceOf(address owner) external view returns (uint256 balance);
}

// 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/Counters.sol



pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// 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/security/Pausable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// 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/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/ERC721URIStorage.sol



pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

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

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

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

        return super.tokenURI(tokenId);
    }

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

    /**
     * @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 override {
        super._burn(tokenId);

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

// File: contracts/CryptoManga.sol


pragma solidity ^0.8.0;









contract CryptoManga is ERC721URIStorage, Ownable, Pausable {
  using SafeMath for uint256;

  using Counters for Counters.Counter;
  Counters.Counter private _tokenIdTracker; // init: 0

  uint256 public constant MAX_TOKENS = 5555;
  uint256 public constant MAX_MINT = 20;

  // give aways
  uint256 public constant RESERVED_TOKENS = 239;
  uint256 private _reserved;

  uint256 public constant LISTING_PRICE = 0.08 ether;
  uint256 public constant LOOT_DISCOUNTED_PRICE = 0.07 ether;
  uint256 public constant WHITELIST_TIER_ONE_DISCOUNTED_PRICE = 0.065 ether;
  uint256 public constant WHITELIST_TIER_TWO_DISCOUNTED_PRICE = 0.07 ether;

  string public baseTokenURI;

  bool public frozen;

  mapping(address => uint256) lootDiscountsRedeemed;
  mapping(address => bool) whitelistedDiscount;

  address public multiSigOwner;
  address public whitelistSignerTierOne;
  address public whitelistSignerTierTwo;

  ILoot cyberLootContract;
  ILoot sevensContract;
  ILoot metaverseTicket;

  event CryptoMangaSpawn(uint256 indexed id);

  constructor(
    string memory baseURI,
    address _cyberLoot,
    address _metaverseTicket,
    address _sevens,
    address _multiSigOwner,
    address _whitelistSignerTierOne,
    address _whitelistSignerTierTwo
  ) ERC721("CryptoManga", "CMA") {
    setBaseURI(baseURI);
    _reserved = RESERVED_TOKENS;
    cyberLootContract = ILoot(_cyberLoot);
    sevensContract = ILoot(_sevens);
    metaverseTicket = ILoot(_metaverseTicket);
    multiSigOwner = _multiSigOwner;
    whitelistSignerTierOne = _whitelistSignerTierOne;
    whitelistSignerTierTwo = _whitelistSignerTierTwo;
    pause(true);
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return baseTokenURI;
  }

  function setBaseURI(string memory baseURI) public onlyOwner {
    require(!frozen, "Contract is frozen");
    baseTokenURI = baseURI;
  }

  function freeze() public onlyOwner {
    frozen = true;
  }

  function _totalSupply() internal view returns (uint256) {
    return _tokenIdTracker.current();
  }

  modifier saleIsOpen() {
    require(_totalSupply() <= MAX_TOKENS, "Sale ended");
    if (_msgSender() != owner()) {
      require(!paused(), "Pausable: paused");
    }
    _;
  }

  function mint(address _to, uint256 _count) external payable saleIsOpen {
    require(_count > 0, "Mint count should be greater than zero");
    require(_count <= MAX_MINT, "Exceeds max items");
    uint256 numTokens = _totalSupply();
    require(numTokens <= MAX_TOKENS, "Sale ended");
    require(numTokens + _count <= MAX_TOKENS, "Max limit");

    require(msg.value >= price(_to, _count), "Insufficient funds");

    if (isEligibleForDiscount(_to)) {
      uint256 numEligibleDiscounts = calculateNumDiscounts(_to);
      if (numEligibleDiscounts >= _count) {
        lootDiscountsRedeemed[_to] += _count;
      } else {
        lootDiscountsRedeemed[_to] += numEligibleDiscounts;
      }
    }

    for (uint256 i = 0; i < _count; i++) {
      _mintOneItem(_to);
    }
  }

  function mintWithTierOneDiscount(
    address _to,
    uint256 _count,
    bytes calldata _signature
  ) external payable saleIsOpen {
    mintWithDiscount(
      _to,
      _count,
      _signature,
      whitelistSignerTierOne,
      WHITELIST_TIER_ONE_DISCOUNTED_PRICE
    );
  }

  function mintWithTierTwoDiscount(
    address _to,
    uint256 _count,
    bytes calldata _signature
  ) external payable saleIsOpen {
    mintWithDiscount(
      _to,
      _count,
      _signature,
      whitelistSignerTierTwo,
      WHITELIST_TIER_TWO_DISCOUNTED_PRICE
    );
  }

  function mintWithDiscount(
    address _to,
    uint256 _count,
    bytes calldata _signature,
    address whitelistSigner,
    uint256 _price
  ) private {
    require(_count > 0, "Mint count should be greater than zero");
    require(_count <= MAX_MINT, "Exceeds max items");
    bytes32 message = prefixed(keccak256(abi.encodePacked(_to, uint256(1))));

    require(
      recoverSigner(message, _signature) == whitelistSigner,
      "Wrong signature"
    );

    require(whitelistedDiscount[_to] == false, "Discount already claimed");
    uint256 numTokens = _totalSupply();
    require(numTokens <= MAX_TOKENS, "Sale ended");
    require(numTokens + _count <= MAX_TOKENS, "Max limit");
    uint256 discountedPrice = _price.mul(_count);
    require(msg.value >= discountedPrice, "Insufficient funds");

    for (uint256 i = 0; i < _count; i++) {
      _mintOneItem(_to);
    }

    whitelistedDiscount[_to] = true;
  }

  function giveAway(address _to, uint256 _count) external onlyOwner {
    uint256 numTokens = _totalSupply();
    require(numTokens <= MAX_TOKENS, "Sale ended");
    require(numTokens + _count <= MAX_TOKENS, "Max limit");
    require(_reserved > 0, "No more reserved tokens available");

    for (uint256 i = 0; i < _count; i++) {
      _mintOneItem(_to);
    }

    _reserved = _reserved.sub(_count);
  }

  function _mintOneItem(address _to) private {
    _tokenIdTracker.increment();
    uint256 tokenId = _totalSupply();

    _safeMint(_to, tokenId);
    _setTokenURI(
      tokenId,
      string(abi.encodePacked(Strings.toString(tokenId), ".json"))
    );
    emit CryptoMangaSpawn(tokenId);
  }

  function setMultiSigOwner(address _multiSignOwner) public onlyOwner {
    multiSigOwner = _multiSignOwner;
  }

  function setWhitelistSignerTierOne(address _whitelistSigner)
    public
    onlyOwner
  {
    whitelistSignerTierOne = _whitelistSigner;
  }

  function setWhitelistSignerTierTwo(address _whitelistSigner)
    public
    onlyOwner
  {
    whitelistSignerTierTwo = _whitelistSigner;
  }

  function pause(bool val) public onlyOwner {
    if (val == true) {
      _pause();
      return;
    }
    _unpause();
  }

  function isEligibleForDiscount(address _to) public view returns (bool) {
    uint256 numLootTokens = cyberLootContract
      .balanceOf(_to)
      .add(sevensContract.balanceOf(_to))
      .add(metaverseTicket.balanceOf(_to));
    uint256 numDiscountsRedeemed = lootDiscountsRedeemed[_to];

    return numDiscountsRedeemed <= numLootTokens;
  }

  function calculateNumDiscounts(address _to) public view returns (uint256) {
    require(isEligibleForDiscount(_to), "Not eligible for discounts");

    uint256 numLootTokens = cyberLootContract
      .balanceOf(_to)
      .add(sevensContract.balanceOf(_to))
      .add(metaverseTicket.balanceOf(_to));
    uint256 numDiscountsRedeemed = lootDiscountsRedeemed[_to];

    return numLootTokens.sub(numDiscountsRedeemed);
  }

  function price(address _to, uint256 _count) public view returns (uint256) {
    if (!isEligibleForDiscount(_to)) {
      return LISTING_PRICE.mul(_count);
    } else {
      uint256 numEligibleDiscounts = calculateNumDiscounts(_to);
      if (numEligibleDiscounts >= _count) {
        return LOOT_DISCOUNTED_PRICE.mul(_count);
      } else {
        uint256 discounted = LOOT_DISCOUNTED_PRICE.mul(numEligibleDiscounts);
        uint256 standard = LISTING_PRICE.mul(_count.sub(numEligibleDiscounts));
        return discounted.add(standard);
      }
    }
  }

  function prefixed(bytes32 hash) internal pure returns (bytes32) {
    return
      keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
  }

  function recoverSigner(bytes32 message, bytes memory sig)
    internal
    pure
    returns (address)
  {
    uint8 v;
    bytes32 r;
    bytes32 s;

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

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

  function splitSignature(bytes memory sig)
    internal
    pure
    returns (
      uint8,
      bytes32,
      bytes32
    )
  {
    require(sig.length == 65);

    bytes32 r;
    bytes32 s;
    uint8 v;

    assembly {
      // first 32 bytes, after the length prefix
      r := mload(add(sig, 32))
      // second 32 bytes
      s := mload(add(sig, 64))
      // final byte (first byte of the next 32 bytes)
      v := byte(0, mload(add(sig, 96)))
    }

    return (v, r, s);
  }

  function withdrawAll() public payable onlyOwner {
    uint256 balance = address(this).balance;
    require(balance > 0);
    _withdraw(multiSigOwner, balance);
  }

  function _withdraw(address _address, uint256 _amount) private {
    (bool success, ) = _address.call{ value: _amount }("");
    require(success, "Transfer failed.");
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address","name":"_cyberLoot","type":"address"},{"internalType":"address","name":"_metaverseTicket","type":"address"},{"internalType":"address","name":"_sevens","type":"address"},{"internalType":"address","name":"_multiSigOwner","type":"address"},{"internalType":"address","name":"_whitelistSignerTierOne","type":"address"},{"internalType":"address","name":"_whitelistSignerTierTwo","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"CryptoMangaSpawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"LISTING_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOOT_DISCOUNTED_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_TIER_ONE_DISCOUNTED_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_TIER_TWO_DISCOUNTED_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"calculateNumDiscounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"frozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"isEligibleForDiscount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mintWithTierOneDiscount","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mintWithTierTwoDiscount","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"multiSigOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_multiSignOwner","type":"address"}],"name":"setMultiSigOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelistSigner","type":"address"}],"name":"setWhitelistSignerTierOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelistSigner","type":"address"}],"name":"setWhitelistSignerTierTwo","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"whitelistSignerTierOne","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSignerTierTwo","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b506040516200683438038062006834833981810160405281019062000037919062000858565b6040518060400160405280600b81526020017f43727970746f4d616e67610000000000000000000000000000000000000000008152506040518060400160405280600381526020017f434d4100000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb92919062000713565b508060019080519060200190620000d492919062000713565b505050620000f7620000eb620002d060201b60201c565b620002d860201b60201c565b6000600760146101000a81548160ff02191690831515021790555062000123876200039e60201b60201c565b60ef60098190555085601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002c360016200049c60201b60201c565b5050505050505062000d03565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003ae620002d060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003d46200056360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200042d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004249062000a5a565b60405180910390fd5b600b60009054906101000a900460ff161562000480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004779062000a38565b60405180910390fd5b80600a90805190602001906200049892919062000713565b5050565b620004ac620002d060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004d26200056360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200052b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005229062000a5a565b60405180910390fd5b6001151581151514156200054f57620005496200058d60201b60201c565b62000560565b6200055f6200064560201b60201c565b5b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200059d620006fc60201b60201c565b15620005e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d79062000a16565b60405180910390fd5b6001600760146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200062c620002d060201b60201c565b6040516200063b9190620009d7565b60405180910390a1565b62000655620006fc60201b60201c565b62000697576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200068e90620009f4565b60405180910390fd5b6000600760146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa620006e3620002d060201b60201c565b604051620006f29190620009d7565b60405180910390a1565b6000600760149054906101000a900460ff16905090565b828054620007219062000b56565b90600052602060002090601f01602090048101928262000745576000855562000791565b82601f106200076057805160ff191683800117855562000791565b8280016001018555821562000791579182015b828111156200079057825182559160200191906001019062000773565b5b509050620007a09190620007a4565b5090565b5b80821115620007bf576000816000905550600101620007a5565b5090565b6000620007da620007d48462000aa5565b62000a7c565b905082815260208101848484011115620007f957620007f862000c25565b5b6200080684828562000b20565b509392505050565b6000815190506200081f8162000ce9565b92915050565b600082601f8301126200083d576200083c62000c20565b5b81516200084f848260208601620007c3565b91505092915050565b600080600080600080600060e0888a0312156200087a576200087962000c2f565b5b600088015167ffffffffffffffff8111156200089b576200089a62000c2a565b5b620008a98a828b0162000825565b9750506020620008bc8a828b016200080e565b9650506040620008cf8a828b016200080e565b9550506060620008e28a828b016200080e565b9450506080620008f58a828b016200080e565b93505060a0620009088a828b016200080e565b92505060c06200091b8a828b016200080e565b91505092959891949750929550565b620009358162000aec565b82525050565b60006200094a60148362000adb565b9150620009578262000c45565b602082019050919050565b60006200097160108362000adb565b91506200097e8262000c6e565b602082019050919050565b60006200099860128362000adb565b9150620009a58262000c97565b602082019050919050565b6000620009bf60208362000adb565b9150620009cc8262000cc0565b602082019050919050565b6000602082019050620009ee60008301846200092a565b92915050565b6000602082019050818103600083015262000a0f816200093b565b9050919050565b6000602082019050818103600083015262000a318162000962565b9050919050565b6000602082019050818103600083015262000a538162000989565b9050919050565b6000602082019050818103600083015262000a7581620009b0565b9050919050565b600062000a8862000a9b565b905062000a96828262000b8c565b919050565b6000604051905090565b600067ffffffffffffffff82111562000ac35762000ac262000bf1565b5b62000ace8262000c34565b9050602081019050919050565b600082825260208201905092915050565b600062000af98262000b00565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b8381101562000b4057808201518184015260208101905062000b23565b8381111562000b50576000848401525b50505050565b6000600282049050600182168062000b6f57607f821691505b6020821081141562000b865762000b8562000bc2565b5b50919050565b62000b978262000c34565b810181811067ffffffffffffffff8211171562000bb95762000bb862000bf1565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f436f6e74726163742069732066726f7a656e0000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000cf48162000aec565b811462000d0057600080fd5b50565b615b218062000d136000396000f3fe60806040526004361061025c5760003560e01c806386da232111610144578063b8eb05da116100b6578063e985e9c51161007a578063e985e9c51461089c578063e9eb8c1c146108d9578063ec724da814610904578063f0292a031461092f578063f2fde38b1461095a578063f47c84c5146109835761025c565b8063b8eb05da146107b2578063bfe0b4c4146107ef578063c87b56dd1461080b578063ca80014414610848578063d547cfb7146108715761025c565b8063961cb36111610108578063961cb36114610692578063a22cb465146106cf578063a4a65ee7146106f8578063a50d241f14610721578063ad9b80241461074c578063b88d4fde146107895761025c565b806386da2321146105cc5780638c22dd01146105e85780638da5cb5b14610613578063917d43e61461063e57806395d89b41146106675761025c565b806342842e0e116101dd5780636352211e116101a15780636352211e146104db57806368fc68c71461051857806370a0823114610543578063715018a6146105805780637395676114610597578063853828b6146105c25761025c565b806342842e0e1461041e5780634fe9fbd41461044757806355f804b3146104705780635c975abb1461049957806362a5af3b146104c45761025c565b8063081812fc11610224578063081812fc14610348578063095ea7b31461038557806323b872dd146103ae5780632f92c1e2146103d757806340c10f19146104025761025c565b806301ffc9a71461026157806302329a291461029e5780630329dd62146102c7578063054f7d9c146102f257806306fdde031461031d575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190614189565b6109ae565b6040516102959190614973565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c0919061415c565b610a90565b005b3480156102d357600080fd5b506102dc610b32565b6040516102e9919061490c565b60405180910390f35b3480156102fe57600080fd5b50610307610b58565b6040516103149190614973565b60405180910390f35b34801561032957600080fd5b50610332610b6b565b60405161033f91906149d3565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a919061422c565b610bfd565b60405161037c919061490c565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a791906140a8565b610c82565b005b3480156103ba57600080fd5b506103d560048036038101906103d09190613f92565b610d9a565b005b3480156103e357600080fd5b506103ec610dfa565b6040516103f9919061490c565b60405180910390f35b61041c600480360381019061041791906140a8565b610e20565b005b34801561042a57600080fd5b5061044560048036038101906104409190613f92565b61116d565b005b34801561045357600080fd5b5061046e60048036038101906104699190613f25565b61118d565b005b34801561047c57600080fd5b50610497600480360381019061049291906141e3565b61124d565b005b3480156104a557600080fd5b506104ae611333565b6040516104bb9190614973565b60405180910390f35b3480156104d057600080fd5b506104d961134a565b005b3480156104e757600080fd5b5061050260048036038101906104fd919061422c565b6113e3565b60405161050f919061490c565b60405180910390f35b34801561052457600080fd5b5061052d611495565b60405161053a9190614dd5565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190613f25565b61149a565b6040516105779190614dd5565b60405180910390f35b34801561058c57600080fd5b50610595611552565b005b3480156105a357600080fd5b506105ac6115da565b6040516105b99190614dd5565b60405180910390f35b6105ca6115e6565b005b6105e660048036038101906105e191906140e8565b6116a3565b005b3480156105f457600080fd5b506105fd6117b6565b60405161060a9190614dd5565b60405180910390f35b34801561061f57600080fd5b506106286117c1565b604051610635919061490c565b60405180910390f35b34801561064a57600080fd5b5061066560048036038101906106609190613f25565b6117eb565b005b34801561067357600080fd5b5061067c6118ab565b60405161068991906149d3565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190613f25565b61193d565b6040516106c69190614973565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190614068565b611bb6565b005b34801561070457600080fd5b5061071f600480360381019061071a9190613f25565b611d37565b005b34801561072d57600080fd5b50610736611df7565b6040516107439190614dd5565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e91906140a8565b611e02565b6040516107809190614dd5565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190613fe5565b611ed7565b005b3480156107be57600080fd5b506107d960048036038101906107d49190613f25565b611f39565b6040516107e69190614dd5565b60405180910390f35b610809600480360381019061080491906140e8565b61220a565b005b34801561081757600080fd5b50610832600480360381019061082d919061422c565b61231d565b60405161083f91906149d3565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a91906140a8565b61246f565b005b34801561087d57600080fd5b50610886612619565b60405161089391906149d3565b60405180910390f35b3480156108a857600080fd5b506108c360048036038101906108be9190613f52565b6126a7565b6040516108d09190614973565b60405180910390f35b3480156108e557600080fd5b506108ee61273b565b6040516108fb9190614dd5565b60405180910390f35b34801561091057600080fd5b50610919612746565b604051610926919061490c565b60405180910390f35b34801561093b57600080fd5b5061094461276c565b6040516109519190614dd5565b60405180910390f35b34801561096657600080fd5b50610981600480360381019061097c9190613f25565b612771565b005b34801561098f57600080fd5b50610998612869565b6040516109a59190614dd5565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a7957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a895750610a888261286f565b5b9050919050565b610a986128d9565b73ffffffffffffffffffffffffffffffffffffffff16610ab66117c1565b73ffffffffffffffffffffffffffffffffffffffff1614610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0390614c95565b60405180910390fd5b600115158115151415610b2657610b216128e1565b610b2f565b610b2e612984565b5b50565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60009054906101000a900460ff1681565b606060008054610b7a906150a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba6906150a7565b8015610bf35780601f10610bc857610100808354040283529160200191610bf3565b820191906000526020600020905b815481529060010190602001808311610bd657829003601f168201915b5050505050905090565b6000610c0882612a26565b610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e90614c55565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c8d826113e3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf590614d15565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d1d6128d9565b73ffffffffffffffffffffffffffffffffffffffff161480610d4c5750610d4b81610d466128d9565b6126a7565b5b610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290614b75565b60405180910390fd5b610d958383612a92565b505050565b610dab610da56128d9565b82612b4b565b610dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de190614db5565b60405180910390fd5b610df5838383612c29565b505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115b3610e2b612e85565b1115610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6390614cf5565b60405180910390fd5b610e746117c1565b73ffffffffffffffffffffffffffffffffffffffff16610e926128d9565b73ffffffffffffffffffffffffffffffffffffffff1614610ef657610eb5611333565b15610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec90614b55565b60405180910390fd5b5b60008111610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090614d55565b60405180910390fd5b6014811115610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490614d35565b60405180910390fd5b6000610f87612e85565b90506115b3811115610fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc590614cf5565b60405180910390fd5b6115b38282610fdd9190614ec5565b111561101e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101590614af5565b60405180910390fd5b6110288383611e02565b34101561106a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106190614b35565b60405180910390fd5b6110738361193d565b1561114057600061108384611f39565b90508281106110e75782600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110db9190614ec5565b9250508190555061113e565b80600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111369190614ec5565b925050819055505b505b60005b828110156111675761115484612e96565b808061115f9061510a565b915050611143565b50505050565b61118883838360405180602001604052806000815250611ed7565b505050565b6111956128d9565b73ffffffffffffffffffffffffffffffffffffffff166111b36117c1565b73ffffffffffffffffffffffffffffffffffffffff1614611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090614c95565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6112556128d9565b73ffffffffffffffffffffffffffffffffffffffff166112736117c1565b73ffffffffffffffffffffffffffffffffffffffff16146112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c090614c95565b60405180910390fd5b600b60009054906101000a900460ff1615611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090614b95565b60405180910390fd5b80600a908051906020019061132f929190613cce565b5050565b6000600760149054906101000a900460ff16905090565b6113526128d9565b73ffffffffffffffffffffffffffffffffffffffff166113706117c1565b73ffffffffffffffffffffffffffffffffffffffff16146113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd90614c95565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390614bd5565b60405180910390fd5b80915050919050565b60ef81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290614bb5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61155a6128d9565b73ffffffffffffffffffffffffffffffffffffffff166115786117c1565b73ffffffffffffffffffffffffffffffffffffffff16146115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590614c95565b60405180910390fd5b6115d86000612f18565b565b67011c37937e08000081565b6115ee6128d9565b73ffffffffffffffffffffffffffffffffffffffff1661160c6117c1565b73ffffffffffffffffffffffffffffffffffffffff1614611662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165990614c95565b60405180910390fd5b60004790506000811161167457600080fd5b6116a0600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612fde565b50565b6115b36116ae612e85565b11156116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690614cf5565b60405180910390fd5b6116f76117c1565b73ffffffffffffffffffffffffffffffffffffffff166117156128d9565b73ffffffffffffffffffffffffffffffffffffffff161461177957611738611333565b15611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f90614b55565b60405180910390fd5b5b6117b084848484600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1666e6ed27d666800061308f565b50505050565b66e6ed27d666800081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117f36128d9565b73ffffffffffffffffffffffffffffffffffffffff166118116117c1565b73ffffffffffffffffffffffffffffffffffffffff1614611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e90614c95565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600180546118ba906150a7565b80601f01602080910402602001604051908101604052809291908181526020018280546118e6906150a7565b80156119335780601f1061190857610100808354040283529160200191611933565b820191906000526020600020905b81548152906001019060200180831161191657829003601f168201915b5050505050905090565b600080611b63601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b815260040161199e919061490c565b60206040518083038186803b1580156119b657600080fd5b505afa1580156119ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ee9190614259565b611b55601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b8152600401611a4c919061490c565b60206040518083038186803b158015611a6457600080fd5b505afa158015611a78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9c9190614259565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231886040518263ffffffff1660e01b8152600401611af7919061490c565b60206040518083038186803b158015611b0f57600080fd5b505afa158015611b23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b479190614259565b61342090919063ffffffff16565b61342090919063ffffffff16565b90506000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181111592505050919050565b611bbe6128d9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2390614ad5565b60405180910390fd5b8060056000611c396128d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ce66128d9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d2b9190614973565b60405180910390a35050565b611d3f6128d9565b73ffffffffffffffffffffffffffffffffffffffff16611d5d6117c1565b73ffffffffffffffffffffffffffffffffffffffff1614611db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daa90614c95565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b66f8b0a10e47000081565b6000611e0d8361193d565b611e3357611e2c8267011c37937e08000061343690919063ffffffff16565b9050611ed1565b6000611e3e84611f39565b9050828110611e6957611e618366f8b0a10e47000061343690919063ffffffff16565b915050611ed1565b6000611e858266f8b0a10e47000061343690919063ffffffff16565b90506000611eb6611e9f848761344c90919063ffffffff16565b67011c37937e08000061343690919063ffffffff16565b9050611ecb818361342090919063ffffffff16565b93505050505b92915050565b611ee8611ee26128d9565b83612b4b565b611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90614db5565b60405180910390fd5b611f3384848484613462565b50505050565b6000611f448261193d565b611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a90614a15565b60405180910390fd5b60006121a8601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401611fe3919061490c565b60206040518083038186803b158015611ffb57600080fd5b505afa15801561200f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120339190614259565b61219a601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b8152600401612091919061490c565b60206040518083038186803b1580156120a957600080fd5b505afa1580156120bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120e19190614259565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231886040518263ffffffff1660e01b815260040161213c919061490c565b60206040518083038186803b15801561215457600080fd5b505afa158015612168573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061218c9190614259565b61342090919063ffffffff16565b61342090919063ffffffff16565b90506000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050612201818361344c90919063ffffffff16565b92505050919050565b6115b3612215612e85565b1115612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224d90614cf5565b60405180910390fd5b61225e6117c1565b73ffffffffffffffffffffffffffffffffffffffff1661227c6128d9565b73ffffffffffffffffffffffffffffffffffffffff16146122e05761229f611333565b156122df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d690614b55565b60405180910390fd5b5b61231784848484601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1666f8b0a10e47000061308f565b50505050565b606061232882612a26565b612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e90614c35565b60405180910390fd5b6000600660008481526020019081526020016000208054612387906150a7565b80601f01602080910402602001604051908101604052809291908181526020018280546123b3906150a7565b80156124005780601f106123d557610100808354040283529160200191612400565b820191906000526020600020905b8154815290600101906020018083116123e357829003601f168201915b5050505050905060006124116134be565b905060008151141561242757819250505061246a565b60008251111561245c57808260405160200161244492919061488b565b6040516020818303038152906040529250505061246a565b61246584613550565b925050505b919050565b6124776128d9565b73ffffffffffffffffffffffffffffffffffffffff166124956117c1565b73ffffffffffffffffffffffffffffffffffffffff16146124eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e290614c95565b60405180910390fd5b60006124f5612e85565b90506115b381111561253c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253390614cf5565b60405180910390fd5b6115b3828261254b9190614ec5565b111561258c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258390614af5565b60405180910390fd5b6000600954116125d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c890614c75565b60405180910390fd5b60005b828110156125f8576125e584612e96565b80806125f09061510a565b9150506125d4565b5061260e8260095461344c90919063ffffffff16565b600981905550505050565b600a8054612626906150a7565b80601f0160208091040260200160405190810160405280929190818152602001828054612652906150a7565b801561269f5780601f106126745761010080835404028352916020019161269f565b820191906000526020600020905b81548152906001019060200180831161268257829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b66f8b0a10e47000081565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601481565b6127796128d9565b73ffffffffffffffffffffffffffffffffffffffff166127976117c1565b73ffffffffffffffffffffffffffffffffffffffff16146127ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e490614c95565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561285d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285490614a75565b60405180910390fd5b61286681612f18565b50565b6115b381565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6128e9611333565b15612929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292090614b55565b60405180910390fd5b6001600760146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861296d6128d9565b60405161297a919061490c565b60405180910390a1565b61298c611333565b6129cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c2906149f5565b60405180910390fd5b6000600760146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612a0f6128d9565b604051612a1c919061490c565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612b05836113e3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612b5682612a26565b612b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8c90614b15565b60405180910390fd5b6000612ba0836113e3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c0f57508373ffffffffffffffffffffffffffffffffffffffff16612bf784610bfd565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c205750612c1f81856126a7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c49826113e3565b73ffffffffffffffffffffffffffffffffffffffff1614612c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9690614cb5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0690614ab5565b60405180910390fd5b612d1a8383836135f7565b612d25600082612a92565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d759190614fa6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dcc9190614ec5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612e9160086135fc565b905090565b612ea0600861360a565b6000612eaa612e85565b9050612eb68282613620565b612ee781612ec38361363e565b604051602001612ed391906148af565b60405160208183030381529060405261379f565b807f4579f890d46ea6f1fec296f95676f6a515b0d33dc8ba93a734ec1947d43aadfc60405160405180910390a25050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051613004906148f7565b60006040518083038185875af1925050503d8060008114613041576040519150601f19603f3d011682016040523d82523d6000602084013e613046565b606091505b505090508061308a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308190614d95565b60405180910390fd5b505050565b600085116130d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c990614d55565b60405180910390fd5b6014851115613116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310d90614d35565b60405180910390fd5b600061314a87600160405160200161312f92919061485f565b60405160208183030381529060405280519060200120613813565b90508273ffffffffffffffffffffffffffffffffffffffff166131b18287878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050613843565b73ffffffffffffffffffffffffffffffffffffffff1614613207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fe90614a35565b60405180910390fd5b60001515600d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461329a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329190614d75565b60405180910390fd5b60006132a4612e85565b90506115b38111156132eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e290614cf5565b60405180910390fd5b6115b387826132fa9190614ec5565b111561333b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333290614af5565b60405180910390fd5b6000613350888561343690919063ffffffff16565b905080341015613395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338c90614b35565b60405180910390fd5b60005b888110156133bc576133a98a612e96565b80806133b49061510a565b915050613398565b506001600d60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050505050505050565b6000818361342e9190614ec5565b905092915050565b600081836134449190614f4c565b905092915050565b6000818361345a9190614fa6565b905092915050565b61346d848484612c29565b613479848484846138b8565b6134b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134af90614a55565b60405180910390fd5b50505050565b6060600a80546134cd906150a7565b80601f01602080910402602001604051908101604052809291908181526020018280546134f9906150a7565b80156135465780601f1061351b57610100808354040283529160200191613546565b820191906000526020600020905b81548152906001019060200180831161352957829003601f168201915b5050505050905090565b606061355b82612a26565b61359a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359190614cd5565b60405180910390fd5b60006135a46134be565b905060008151116135c457604051806020016040528060008152506135ef565b806135ce8461363e565b6040516020016135df92919061488b565b6040516020818303038152906040525b915050919050565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b61363a828260405180602001604052806000815250613a4f565b5050565b60606000821415613686576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061379a565b600082905060005b600082146136b85780806136a19061510a565b915050600a826136b19190614f1b565b915061368e565b60008167ffffffffffffffff8111156136d4576136d3615278565b5b6040519080825280601f01601f1916602001820160405280156137065781602001600182028036833780820191505090505b5090505b600085146137935760018261371f9190614fa6565b9150600a8561372e919061518b565b603061373a9190614ec5565b60f81b8183815181106137505761374f615249565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561378c9190614f1b565b945061370a565b8093505050505b919050565b6137a882612a26565b6137e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137de90614bf5565b60405180910390fd5b8060066000848152602001908152602001600020908051906020019061380e929190613cce565b505050565b60008160405160200161382691906148d1565b604051602081830303815290604052805190602001209050919050565b60008060008061385285613aaa565b80935081945082955050505060018684848460405160008152602001604052604051613881949392919061498e565b6020604051602081039080840390855afa1580156138a3573d6000803e3d6000fd5b50505060206040510351935050505092915050565b60006138d98473ffffffffffffffffffffffffffffffffffffffff16613aed565b15613a42578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026139026128d9565b8786866040518563ffffffff1660e01b81526004016139249493929190614927565b602060405180830381600087803b15801561393e57600080fd5b505af192505050801561396f57506040513d601f19601f8201168201806040525081019061396c91906141b6565b60015b6139f2573d806000811461399f576040519150601f19603f3d011682016040523d82523d6000602084013e6139a4565b606091505b506000815114156139ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139e190614a55565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a47565b600190505b949350505050565b613a598383613b00565b613a6660008484846138b8565b613aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a9c90614a55565b60405180910390fd5b505050565b60008060006041845114613abd57600080fd5b60008060006020870151925060408701519150606087015160001a90508083839550955095505050509193909250565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b6790614c15565b60405180910390fd5b613b7981612a26565b15613bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bb090614a95565b60405180910390fd5b613bc5600083836135f7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c159190614ec5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613cda906150a7565b90600052602060002090601f016020900481019282613cfc5760008555613d43565b82601f10613d1557805160ff1916838001178555613d43565b82800160010185558215613d43579182015b82811115613d42578251825591602001919060010190613d27565b5b509050613d509190613d54565b5090565b5b80821115613d6d576000816000905550600101613d55565b5090565b6000613d84613d7f84614e15565b614df0565b905082815260208101848484011115613da057613d9f6152b6565b5b613dab848285615065565b509392505050565b6000613dc6613dc184614e46565b614df0565b905082815260208101848484011115613de257613de16152b6565b5b613ded848285615065565b509392505050565b600081359050613e0481615a8f565b92915050565b600081359050613e1981615aa6565b92915050565b600081359050613e2e81615abd565b92915050565b600081519050613e4381615abd565b92915050565b60008083601f840112613e5f57613e5e6152ac565b5b8235905067ffffffffffffffff811115613e7c57613e7b6152a7565b5b602083019150836001820283011115613e9857613e976152b1565b5b9250929050565b600082601f830112613eb457613eb36152ac565b5b8135613ec4848260208601613d71565b91505092915050565b600082601f830112613ee257613ee16152ac565b5b8135613ef2848260208601613db3565b91505092915050565b600081359050613f0a81615ad4565b92915050565b600081519050613f1f81615ad4565b92915050565b600060208284031215613f3b57613f3a6152c0565b5b6000613f4984828501613df5565b91505092915050565b60008060408385031215613f6957613f686152c0565b5b6000613f7785828601613df5565b9250506020613f8885828601613df5565b9150509250929050565b600080600060608486031215613fab57613faa6152c0565b5b6000613fb986828701613df5565b9350506020613fca86828701613df5565b9250506040613fdb86828701613efb565b9150509250925092565b60008060008060808587031215613fff57613ffe6152c0565b5b600061400d87828801613df5565b945050602061401e87828801613df5565b935050604061402f87828801613efb565b925050606085013567ffffffffffffffff8111156140505761404f6152bb565b5b61405c87828801613e9f565b91505092959194509250565b6000806040838503121561407f5761407e6152c0565b5b600061408d85828601613df5565b925050602061409e85828601613e0a565b9150509250929050565b600080604083850312156140bf576140be6152c0565b5b60006140cd85828601613df5565b92505060206140de85828601613efb565b9150509250929050565b60008060008060608587031215614102576141016152c0565b5b600061411087828801613df5565b945050602061412187828801613efb565b935050604085013567ffffffffffffffff811115614142576141416152bb565b5b61414e87828801613e49565b925092505092959194509250565b600060208284031215614172576141716152c0565b5b600061418084828501613e0a565b91505092915050565b60006020828403121561419f5761419e6152c0565b5b60006141ad84828501613e1f565b91505092915050565b6000602082840312156141cc576141cb6152c0565b5b60006141da84828501613e34565b91505092915050565b6000602082840312156141f9576141f86152c0565b5b600082013567ffffffffffffffff811115614217576142166152bb565b5b61422384828501613ecd565b91505092915050565b600060208284031215614242576142416152c0565b5b600061425084828501613efb565b91505092915050565b60006020828403121561426f5761426e6152c0565b5b600061427d84828501613f10565b91505092915050565b61428f81614fda565b82525050565b6142a66142a182614fda565b615153565b82525050565b6142b581614fec565b82525050565b6142c481614ff8565b82525050565b6142db6142d682614ff8565b615165565b82525050565b60006142ec82614e77565b6142f68185614e8d565b9350614306818560208601615074565b61430f816152c5565b840191505092915050565b600061432582614e82565b61432f8185614ea9565b935061433f818560208601615074565b614348816152c5565b840191505092915050565b600061435e82614e82565b6143688185614eba565b9350614378818560208601615074565b80840191505092915050565b6000614391601483614ea9565b915061439c826152e3565b602082019050919050565b60006143b4601a83614ea9565b91506143bf8261530c565b602082019050919050565b60006143d7601c83614eba565b91506143e282615335565b601c82019050919050565b60006143fa600f83614ea9565b91506144058261535e565b602082019050919050565b600061441d603283614ea9565b915061442882615387565b604082019050919050565b6000614440602683614ea9565b915061444b826153d6565b604082019050919050565b6000614463601c83614ea9565b915061446e82615425565b602082019050919050565b6000614486602483614ea9565b91506144918261544e565b604082019050919050565b60006144a9601983614ea9565b91506144b48261549d565b602082019050919050565b60006144cc600983614ea9565b91506144d7826154c6565b602082019050919050565b60006144ef602c83614ea9565b91506144fa826154ef565b604082019050919050565b6000614512601283614ea9565b915061451d8261553e565b602082019050919050565b6000614535601083614ea9565b915061454082615567565b602082019050919050565b6000614558603883614ea9565b915061456382615590565b604082019050919050565b600061457b601283614ea9565b9150614586826155df565b602082019050919050565b600061459e602a83614ea9565b91506145a982615608565b604082019050919050565b60006145c1602983614ea9565b91506145cc82615657565b604082019050919050565b60006145e4602e83614ea9565b91506145ef826156a6565b604082019050919050565b6000614607602083614ea9565b9150614612826156f5565b602082019050919050565b600061462a603183614ea9565b91506146358261571e565b604082019050919050565b600061464d602c83614ea9565b91506146588261576d565b604082019050919050565b6000614670600583614eba565b915061467b826157bc565b600582019050919050565b6000614693602183614ea9565b915061469e826157e5565b604082019050919050565b60006146b6602083614ea9565b91506146c182615834565b602082019050919050565b60006146d9602983614ea9565b91506146e48261585d565b604082019050919050565b60006146fc602f83614ea9565b9150614707826158ac565b604082019050919050565b600061471f600a83614ea9565b915061472a826158fb565b602082019050919050565b6000614742602183614ea9565b915061474d82615924565b604082019050919050565b6000614765601183614ea9565b915061477082615973565b602082019050919050565b6000614788602683614ea9565b91506147938261599c565b604082019050919050565b60006147ab601883614ea9565b91506147b6826159eb565b602082019050919050565b60006147ce600083614e9e565b91506147d982615a14565b600082019050919050565b60006147f1601083614ea9565b91506147fc82615a17565b602082019050919050565b6000614814603183614ea9565b915061481f82615a40565b604082019050919050565b6148338161504e565b82525050565b61484a6148458261504e565b615181565b82525050565b61485981615058565b82525050565b600061486b8285614295565b60148201915061487b8284614839565b6020820191508190509392505050565b60006148978285614353565b91506148a38284614353565b91508190509392505050565b60006148bb8284614353565b91506148c682614663565b915081905092915050565b60006148dc826143ca565b91506148e882846142ca565b60208201915081905092915050565b6000614902826147c1565b9150819050919050565b60006020820190506149216000830184614286565b92915050565b600060808201905061493c6000830187614286565b6149496020830186614286565b614956604083018561482a565b818103606083015261496881846142e1565b905095945050505050565b600060208201905061498860008301846142ac565b92915050565b60006080820190506149a360008301876142bb565b6149b06020830186614850565b6149bd60408301856142bb565b6149ca60608301846142bb565b95945050505050565b600060208201905081810360008301526149ed818461431a565b905092915050565b60006020820190508181036000830152614a0e81614384565b9050919050565b60006020820190508181036000830152614a2e816143a7565b9050919050565b60006020820190508181036000830152614a4e816143ed565b9050919050565b60006020820190508181036000830152614a6e81614410565b9050919050565b60006020820190508181036000830152614a8e81614433565b9050919050565b60006020820190508181036000830152614aae81614456565b9050919050565b60006020820190508181036000830152614ace81614479565b9050919050565b60006020820190508181036000830152614aee8161449c565b9050919050565b60006020820190508181036000830152614b0e816144bf565b9050919050565b60006020820190508181036000830152614b2e816144e2565b9050919050565b60006020820190508181036000830152614b4e81614505565b9050919050565b60006020820190508181036000830152614b6e81614528565b9050919050565b60006020820190508181036000830152614b8e8161454b565b9050919050565b60006020820190508181036000830152614bae8161456e565b9050919050565b60006020820190508181036000830152614bce81614591565b9050919050565b60006020820190508181036000830152614bee816145b4565b9050919050565b60006020820190508181036000830152614c0e816145d7565b9050919050565b60006020820190508181036000830152614c2e816145fa565b9050919050565b60006020820190508181036000830152614c4e8161461d565b9050919050565b60006020820190508181036000830152614c6e81614640565b9050919050565b60006020820190508181036000830152614c8e81614686565b9050919050565b60006020820190508181036000830152614cae816146a9565b9050919050565b60006020820190508181036000830152614cce816146cc565b9050919050565b60006020820190508181036000830152614cee816146ef565b9050919050565b60006020820190508181036000830152614d0e81614712565b9050919050565b60006020820190508181036000830152614d2e81614735565b9050919050565b60006020820190508181036000830152614d4e81614758565b9050919050565b60006020820190508181036000830152614d6e8161477b565b9050919050565b60006020820190508181036000830152614d8e8161479e565b9050919050565b60006020820190508181036000830152614dae816147e4565b9050919050565b60006020820190508181036000830152614dce81614807565b9050919050565b6000602082019050614dea600083018461482a565b92915050565b6000614dfa614e0b565b9050614e0682826150d9565b919050565b6000604051905090565b600067ffffffffffffffff821115614e3057614e2f615278565b5b614e39826152c5565b9050602081019050919050565b600067ffffffffffffffff821115614e6157614e60615278565b5b614e6a826152c5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ed08261504e565b9150614edb8361504e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f1057614f0f6151bc565b5b828201905092915050565b6000614f268261504e565b9150614f318361504e565b925082614f4157614f406151eb565b5b828204905092915050565b6000614f578261504e565b9150614f628361504e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f9b57614f9a6151bc565b5b828202905092915050565b6000614fb18261504e565b9150614fbc8361504e565b925082821015614fcf57614fce6151bc565b5b828203905092915050565b6000614fe58261502e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015615092578082015181840152602081019050615077565b838111156150a1576000848401525b50505050565b600060028204905060018216806150bf57607f821691505b602082108114156150d3576150d261521a565b5b50919050565b6150e2826152c5565b810181811067ffffffffffffffff8211171561510157615100615278565b5b80604052505050565b60006151158261504e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615148576151476151bc565b5b600182019050919050565b600061515e8261516f565b9050919050565b6000819050919050565b600061517a826152d6565b9050919050565b6000819050919050565b60006151968261504e565b91506151a18361504e565b9250826151b1576151b06151eb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4e6f7420656c696769626c6520666f7220646973636f756e7473000000000000600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f57726f6e67207369676e61747572650000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f436f6e74726163742069732066726f7a656e0000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4e6f206d6f726520726573657276656420746f6b656e7320617661696c61626c60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c6520656e64656400000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178206974656d73000000000000000000000000000000600082015250565b7f4d696e7420636f756e742073686f756c6420626520677265617465722074686160008201527f6e207a65726f0000000000000000000000000000000000000000000000000000602082015250565b7f446973636f756e7420616c726561647920636c61696d65640000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b615a9881614fda565b8114615aa357600080fd5b50565b615aaf81614fec565b8114615aba57600080fd5b50565b615ac681615002565b8114615ad157600080fd5b50565b615add8161504e565b8114615ae857600080fd5b5056fea2646970667358221220067a4914a25514277ddc321e770e0baa5990ff70b8e28af75b08519d5cdaa17464736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000e000000000000000000000000013a48f723f4ad29b6da6e7215fe53172c027d98f000000000000000000000000d90d393d9d3dcb3ee4942afe0ea2e07949dc23c6000000000000000000000000f497253c2bb7644ebb99e4d9ecc104ae7a79187a0000000000000000000000000dacfd6b67d96b95f0275514cab0426b4d2eb05a000000000000000000000000d70c35c73c8989b0e0615020b3b4cc2d24e0da130000000000000000000000005a3bbeea6ceb34fe0780b31060b7b5cbcff622210000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d534865387068386a477036747255626450375a334a68764b72647a543547375754443267507537773136785a2f00000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c806386da232111610144578063b8eb05da116100b6578063e985e9c51161007a578063e985e9c51461089c578063e9eb8c1c146108d9578063ec724da814610904578063f0292a031461092f578063f2fde38b1461095a578063f47c84c5146109835761025c565b8063b8eb05da146107b2578063bfe0b4c4146107ef578063c87b56dd1461080b578063ca80014414610848578063d547cfb7146108715761025c565b8063961cb36111610108578063961cb36114610692578063a22cb465146106cf578063a4a65ee7146106f8578063a50d241f14610721578063ad9b80241461074c578063b88d4fde146107895761025c565b806386da2321146105cc5780638c22dd01146105e85780638da5cb5b14610613578063917d43e61461063e57806395d89b41146106675761025c565b806342842e0e116101dd5780636352211e116101a15780636352211e146104db57806368fc68c71461051857806370a0823114610543578063715018a6146105805780637395676114610597578063853828b6146105c25761025c565b806342842e0e1461041e5780634fe9fbd41461044757806355f804b3146104705780635c975abb1461049957806362a5af3b146104c45761025c565b8063081812fc11610224578063081812fc14610348578063095ea7b31461038557806323b872dd146103ae5780632f92c1e2146103d757806340c10f19146104025761025c565b806301ffc9a71461026157806302329a291461029e5780630329dd62146102c7578063054f7d9c146102f257806306fdde031461031d575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190614189565b6109ae565b6040516102959190614973565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c0919061415c565b610a90565b005b3480156102d357600080fd5b506102dc610b32565b6040516102e9919061490c565b60405180910390f35b3480156102fe57600080fd5b50610307610b58565b6040516103149190614973565b60405180910390f35b34801561032957600080fd5b50610332610b6b565b60405161033f91906149d3565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a919061422c565b610bfd565b60405161037c919061490c565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a791906140a8565b610c82565b005b3480156103ba57600080fd5b506103d560048036038101906103d09190613f92565b610d9a565b005b3480156103e357600080fd5b506103ec610dfa565b6040516103f9919061490c565b60405180910390f35b61041c600480360381019061041791906140a8565b610e20565b005b34801561042a57600080fd5b5061044560048036038101906104409190613f92565b61116d565b005b34801561045357600080fd5b5061046e60048036038101906104699190613f25565b61118d565b005b34801561047c57600080fd5b50610497600480360381019061049291906141e3565b61124d565b005b3480156104a557600080fd5b506104ae611333565b6040516104bb9190614973565b60405180910390f35b3480156104d057600080fd5b506104d961134a565b005b3480156104e757600080fd5b5061050260048036038101906104fd919061422c565b6113e3565b60405161050f919061490c565b60405180910390f35b34801561052457600080fd5b5061052d611495565b60405161053a9190614dd5565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190613f25565b61149a565b6040516105779190614dd5565b60405180910390f35b34801561058c57600080fd5b50610595611552565b005b3480156105a357600080fd5b506105ac6115da565b6040516105b99190614dd5565b60405180910390f35b6105ca6115e6565b005b6105e660048036038101906105e191906140e8565b6116a3565b005b3480156105f457600080fd5b506105fd6117b6565b60405161060a9190614dd5565b60405180910390f35b34801561061f57600080fd5b506106286117c1565b604051610635919061490c565b60405180910390f35b34801561064a57600080fd5b5061066560048036038101906106609190613f25565b6117eb565b005b34801561067357600080fd5b5061067c6118ab565b60405161068991906149d3565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190613f25565b61193d565b6040516106c69190614973565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190614068565b611bb6565b005b34801561070457600080fd5b5061071f600480360381019061071a9190613f25565b611d37565b005b34801561072d57600080fd5b50610736611df7565b6040516107439190614dd5565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e91906140a8565b611e02565b6040516107809190614dd5565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190613fe5565b611ed7565b005b3480156107be57600080fd5b506107d960048036038101906107d49190613f25565b611f39565b6040516107e69190614dd5565b60405180910390f35b610809600480360381019061080491906140e8565b61220a565b005b34801561081757600080fd5b50610832600480360381019061082d919061422c565b61231d565b60405161083f91906149d3565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a91906140a8565b61246f565b005b34801561087d57600080fd5b50610886612619565b60405161089391906149d3565b60405180910390f35b3480156108a857600080fd5b506108c360048036038101906108be9190613f52565b6126a7565b6040516108d09190614973565b60405180910390f35b3480156108e557600080fd5b506108ee61273b565b6040516108fb9190614dd5565b60405180910390f35b34801561091057600080fd5b50610919612746565b604051610926919061490c565b60405180910390f35b34801561093b57600080fd5b5061094461276c565b6040516109519190614dd5565b60405180910390f35b34801561096657600080fd5b50610981600480360381019061097c9190613f25565b612771565b005b34801561098f57600080fd5b50610998612869565b6040516109a59190614dd5565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a7957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a895750610a888261286f565b5b9050919050565b610a986128d9565b73ffffffffffffffffffffffffffffffffffffffff16610ab66117c1565b73ffffffffffffffffffffffffffffffffffffffff1614610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0390614c95565b60405180910390fd5b600115158115151415610b2657610b216128e1565b610b2f565b610b2e612984565b5b50565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60009054906101000a900460ff1681565b606060008054610b7a906150a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba6906150a7565b8015610bf35780601f10610bc857610100808354040283529160200191610bf3565b820191906000526020600020905b815481529060010190602001808311610bd657829003601f168201915b5050505050905090565b6000610c0882612a26565b610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e90614c55565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c8d826113e3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf590614d15565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d1d6128d9565b73ffffffffffffffffffffffffffffffffffffffff161480610d4c5750610d4b81610d466128d9565b6126a7565b5b610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290614b75565b60405180910390fd5b610d958383612a92565b505050565b610dab610da56128d9565b82612b4b565b610dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de190614db5565b60405180910390fd5b610df5838383612c29565b505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115b3610e2b612e85565b1115610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6390614cf5565b60405180910390fd5b610e746117c1565b73ffffffffffffffffffffffffffffffffffffffff16610e926128d9565b73ffffffffffffffffffffffffffffffffffffffff1614610ef657610eb5611333565b15610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec90614b55565b60405180910390fd5b5b60008111610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090614d55565b60405180910390fd5b6014811115610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490614d35565b60405180910390fd5b6000610f87612e85565b90506115b3811115610fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc590614cf5565b60405180910390fd5b6115b38282610fdd9190614ec5565b111561101e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101590614af5565b60405180910390fd5b6110288383611e02565b34101561106a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106190614b35565b60405180910390fd5b6110738361193d565b1561114057600061108384611f39565b90508281106110e75782600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110db9190614ec5565b9250508190555061113e565b80600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111369190614ec5565b925050819055505b505b60005b828110156111675761115484612e96565b808061115f9061510a565b915050611143565b50505050565b61118883838360405180602001604052806000815250611ed7565b505050565b6111956128d9565b73ffffffffffffffffffffffffffffffffffffffff166111b36117c1565b73ffffffffffffffffffffffffffffffffffffffff1614611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090614c95565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6112556128d9565b73ffffffffffffffffffffffffffffffffffffffff166112736117c1565b73ffffffffffffffffffffffffffffffffffffffff16146112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c090614c95565b60405180910390fd5b600b60009054906101000a900460ff1615611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090614b95565b60405180910390fd5b80600a908051906020019061132f929190613cce565b5050565b6000600760149054906101000a900460ff16905090565b6113526128d9565b73ffffffffffffffffffffffffffffffffffffffff166113706117c1565b73ffffffffffffffffffffffffffffffffffffffff16146113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd90614c95565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390614bd5565b60405180910390fd5b80915050919050565b60ef81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290614bb5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61155a6128d9565b73ffffffffffffffffffffffffffffffffffffffff166115786117c1565b73ffffffffffffffffffffffffffffffffffffffff16146115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590614c95565b60405180910390fd5b6115d86000612f18565b565b67011c37937e08000081565b6115ee6128d9565b73ffffffffffffffffffffffffffffffffffffffff1661160c6117c1565b73ffffffffffffffffffffffffffffffffffffffff1614611662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165990614c95565b60405180910390fd5b60004790506000811161167457600080fd5b6116a0600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612fde565b50565b6115b36116ae612e85565b11156116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690614cf5565b60405180910390fd5b6116f76117c1565b73ffffffffffffffffffffffffffffffffffffffff166117156128d9565b73ffffffffffffffffffffffffffffffffffffffff161461177957611738611333565b15611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f90614b55565b60405180910390fd5b5b6117b084848484600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1666e6ed27d666800061308f565b50505050565b66e6ed27d666800081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117f36128d9565b73ffffffffffffffffffffffffffffffffffffffff166118116117c1565b73ffffffffffffffffffffffffffffffffffffffff1614611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e90614c95565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600180546118ba906150a7565b80601f01602080910402602001604051908101604052809291908181526020018280546118e6906150a7565b80156119335780601f1061190857610100808354040283529160200191611933565b820191906000526020600020905b81548152906001019060200180831161191657829003601f168201915b5050505050905090565b600080611b63601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b815260040161199e919061490c565b60206040518083038186803b1580156119b657600080fd5b505afa1580156119ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ee9190614259565b611b55601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b8152600401611a4c919061490c565b60206040518083038186803b158015611a6457600080fd5b505afa158015611a78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9c9190614259565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231886040518263ffffffff1660e01b8152600401611af7919061490c565b60206040518083038186803b158015611b0f57600080fd5b505afa158015611b23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b479190614259565b61342090919063ffffffff16565b61342090919063ffffffff16565b90506000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181111592505050919050565b611bbe6128d9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2390614ad5565b60405180910390fd5b8060056000611c396128d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ce66128d9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d2b9190614973565b60405180910390a35050565b611d3f6128d9565b73ffffffffffffffffffffffffffffffffffffffff16611d5d6117c1565b73ffffffffffffffffffffffffffffffffffffffff1614611db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daa90614c95565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b66f8b0a10e47000081565b6000611e0d8361193d565b611e3357611e2c8267011c37937e08000061343690919063ffffffff16565b9050611ed1565b6000611e3e84611f39565b9050828110611e6957611e618366f8b0a10e47000061343690919063ffffffff16565b915050611ed1565b6000611e858266f8b0a10e47000061343690919063ffffffff16565b90506000611eb6611e9f848761344c90919063ffffffff16565b67011c37937e08000061343690919063ffffffff16565b9050611ecb818361342090919063ffffffff16565b93505050505b92915050565b611ee8611ee26128d9565b83612b4b565b611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90614db5565b60405180910390fd5b611f3384848484613462565b50505050565b6000611f448261193d565b611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a90614a15565b60405180910390fd5b60006121a8601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401611fe3919061490c565b60206040518083038186803b158015611ffb57600080fd5b505afa15801561200f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120339190614259565b61219a601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b8152600401612091919061490c565b60206040518083038186803b1580156120a957600080fd5b505afa1580156120bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120e19190614259565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231886040518263ffffffff1660e01b815260040161213c919061490c565b60206040518083038186803b15801561215457600080fd5b505afa158015612168573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061218c9190614259565b61342090919063ffffffff16565b61342090919063ffffffff16565b90506000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050612201818361344c90919063ffffffff16565b92505050919050565b6115b3612215612e85565b1115612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224d90614cf5565b60405180910390fd5b61225e6117c1565b73ffffffffffffffffffffffffffffffffffffffff1661227c6128d9565b73ffffffffffffffffffffffffffffffffffffffff16146122e05761229f611333565b156122df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d690614b55565b60405180910390fd5b5b61231784848484601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1666f8b0a10e47000061308f565b50505050565b606061232882612a26565b612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e90614c35565b60405180910390fd5b6000600660008481526020019081526020016000208054612387906150a7565b80601f01602080910402602001604051908101604052809291908181526020018280546123b3906150a7565b80156124005780601f106123d557610100808354040283529160200191612400565b820191906000526020600020905b8154815290600101906020018083116123e357829003601f168201915b5050505050905060006124116134be565b905060008151141561242757819250505061246a565b60008251111561245c57808260405160200161244492919061488b565b6040516020818303038152906040529250505061246a565b61246584613550565b925050505b919050565b6124776128d9565b73ffffffffffffffffffffffffffffffffffffffff166124956117c1565b73ffffffffffffffffffffffffffffffffffffffff16146124eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e290614c95565b60405180910390fd5b60006124f5612e85565b90506115b381111561253c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253390614cf5565b60405180910390fd5b6115b3828261254b9190614ec5565b111561258c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258390614af5565b60405180910390fd5b6000600954116125d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c890614c75565b60405180910390fd5b60005b828110156125f8576125e584612e96565b80806125f09061510a565b9150506125d4565b5061260e8260095461344c90919063ffffffff16565b600981905550505050565b600a8054612626906150a7565b80601f0160208091040260200160405190810160405280929190818152602001828054612652906150a7565b801561269f5780601f106126745761010080835404028352916020019161269f565b820191906000526020600020905b81548152906001019060200180831161268257829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b66f8b0a10e47000081565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601481565b6127796128d9565b73ffffffffffffffffffffffffffffffffffffffff166127976117c1565b73ffffffffffffffffffffffffffffffffffffffff16146127ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e490614c95565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561285d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285490614a75565b60405180910390fd5b61286681612f18565b50565b6115b381565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6128e9611333565b15612929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292090614b55565b60405180910390fd5b6001600760146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861296d6128d9565b60405161297a919061490c565b60405180910390a1565b61298c611333565b6129cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c2906149f5565b60405180910390fd5b6000600760146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612a0f6128d9565b604051612a1c919061490c565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612b05836113e3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612b5682612a26565b612b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8c90614b15565b60405180910390fd5b6000612ba0836113e3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c0f57508373ffffffffffffffffffffffffffffffffffffffff16612bf784610bfd565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c205750612c1f81856126a7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c49826113e3565b73ffffffffffffffffffffffffffffffffffffffff1614612c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9690614cb5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0690614ab5565b60405180910390fd5b612d1a8383836135f7565b612d25600082612a92565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d759190614fa6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dcc9190614ec5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612e9160086135fc565b905090565b612ea0600861360a565b6000612eaa612e85565b9050612eb68282613620565b612ee781612ec38361363e565b604051602001612ed391906148af565b60405160208183030381529060405261379f565b807f4579f890d46ea6f1fec296f95676f6a515b0d33dc8ba93a734ec1947d43aadfc60405160405180910390a25050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051613004906148f7565b60006040518083038185875af1925050503d8060008114613041576040519150601f19603f3d011682016040523d82523d6000602084013e613046565b606091505b505090508061308a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308190614d95565b60405180910390fd5b505050565b600085116130d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c990614d55565b60405180910390fd5b6014851115613116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310d90614d35565b60405180910390fd5b600061314a87600160405160200161312f92919061485f565b60405160208183030381529060405280519060200120613813565b90508273ffffffffffffffffffffffffffffffffffffffff166131b18287878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050613843565b73ffffffffffffffffffffffffffffffffffffffff1614613207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fe90614a35565b60405180910390fd5b60001515600d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461329a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329190614d75565b60405180910390fd5b60006132a4612e85565b90506115b38111156132eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e290614cf5565b60405180910390fd5b6115b387826132fa9190614ec5565b111561333b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333290614af5565b60405180910390fd5b6000613350888561343690919063ffffffff16565b905080341015613395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338c90614b35565b60405180910390fd5b60005b888110156133bc576133a98a612e96565b80806133b49061510a565b915050613398565b506001600d60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050505050505050565b6000818361342e9190614ec5565b905092915050565b600081836134449190614f4c565b905092915050565b6000818361345a9190614fa6565b905092915050565b61346d848484612c29565b613479848484846138b8565b6134b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134af90614a55565b60405180910390fd5b50505050565b6060600a80546134cd906150a7565b80601f01602080910402602001604051908101604052809291908181526020018280546134f9906150a7565b80156135465780601f1061351b57610100808354040283529160200191613546565b820191906000526020600020905b81548152906001019060200180831161352957829003601f168201915b5050505050905090565b606061355b82612a26565b61359a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359190614cd5565b60405180910390fd5b60006135a46134be565b905060008151116135c457604051806020016040528060008152506135ef565b806135ce8461363e565b6040516020016135df92919061488b565b6040516020818303038152906040525b915050919050565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b61363a828260405180602001604052806000815250613a4f565b5050565b60606000821415613686576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061379a565b600082905060005b600082146136b85780806136a19061510a565b915050600a826136b19190614f1b565b915061368e565b60008167ffffffffffffffff8111156136d4576136d3615278565b5b6040519080825280601f01601f1916602001820160405280156137065781602001600182028036833780820191505090505b5090505b600085146137935760018261371f9190614fa6565b9150600a8561372e919061518b565b603061373a9190614ec5565b60f81b8183815181106137505761374f615249565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561378c9190614f1b565b945061370a565b8093505050505b919050565b6137a882612a26565b6137e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137de90614bf5565b60405180910390fd5b8060066000848152602001908152602001600020908051906020019061380e929190613cce565b505050565b60008160405160200161382691906148d1565b604051602081830303815290604052805190602001209050919050565b60008060008061385285613aaa565b80935081945082955050505060018684848460405160008152602001604052604051613881949392919061498e565b6020604051602081039080840390855afa1580156138a3573d6000803e3d6000fd5b50505060206040510351935050505092915050565b60006138d98473ffffffffffffffffffffffffffffffffffffffff16613aed565b15613a42578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026139026128d9565b8786866040518563ffffffff1660e01b81526004016139249493929190614927565b602060405180830381600087803b15801561393e57600080fd5b505af192505050801561396f57506040513d601f19601f8201168201806040525081019061396c91906141b6565b60015b6139f2573d806000811461399f576040519150601f19603f3d011682016040523d82523d6000602084013e6139a4565b606091505b506000815114156139ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139e190614a55565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a47565b600190505b949350505050565b613a598383613b00565b613a6660008484846138b8565b613aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a9c90614a55565b60405180910390fd5b505050565b60008060006041845114613abd57600080fd5b60008060006020870151925060408701519150606087015160001a90508083839550955095505050509193909250565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b6790614c15565b60405180910390fd5b613b7981612a26565b15613bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bb090614a95565b60405180910390fd5b613bc5600083836135f7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c159190614ec5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613cda906150a7565b90600052602060002090601f016020900481019282613cfc5760008555613d43565b82601f10613d1557805160ff1916838001178555613d43565b82800160010185558215613d43579182015b82811115613d42578251825591602001919060010190613d27565b5b509050613d509190613d54565b5090565b5b80821115613d6d576000816000905550600101613d55565b5090565b6000613d84613d7f84614e15565b614df0565b905082815260208101848484011115613da057613d9f6152b6565b5b613dab848285615065565b509392505050565b6000613dc6613dc184614e46565b614df0565b905082815260208101848484011115613de257613de16152b6565b5b613ded848285615065565b509392505050565b600081359050613e0481615a8f565b92915050565b600081359050613e1981615aa6565b92915050565b600081359050613e2e81615abd565b92915050565b600081519050613e4381615abd565b92915050565b60008083601f840112613e5f57613e5e6152ac565b5b8235905067ffffffffffffffff811115613e7c57613e7b6152a7565b5b602083019150836001820283011115613e9857613e976152b1565b5b9250929050565b600082601f830112613eb457613eb36152ac565b5b8135613ec4848260208601613d71565b91505092915050565b600082601f830112613ee257613ee16152ac565b5b8135613ef2848260208601613db3565b91505092915050565b600081359050613f0a81615ad4565b92915050565b600081519050613f1f81615ad4565b92915050565b600060208284031215613f3b57613f3a6152c0565b5b6000613f4984828501613df5565b91505092915050565b60008060408385031215613f6957613f686152c0565b5b6000613f7785828601613df5565b9250506020613f8885828601613df5565b9150509250929050565b600080600060608486031215613fab57613faa6152c0565b5b6000613fb986828701613df5565b9350506020613fca86828701613df5565b9250506040613fdb86828701613efb565b9150509250925092565b60008060008060808587031215613fff57613ffe6152c0565b5b600061400d87828801613df5565b945050602061401e87828801613df5565b935050604061402f87828801613efb565b925050606085013567ffffffffffffffff8111156140505761404f6152bb565b5b61405c87828801613e9f565b91505092959194509250565b6000806040838503121561407f5761407e6152c0565b5b600061408d85828601613df5565b925050602061409e85828601613e0a565b9150509250929050565b600080604083850312156140bf576140be6152c0565b5b60006140cd85828601613df5565b92505060206140de85828601613efb565b9150509250929050565b60008060008060608587031215614102576141016152c0565b5b600061411087828801613df5565b945050602061412187828801613efb565b935050604085013567ffffffffffffffff811115614142576141416152bb565b5b61414e87828801613e49565b925092505092959194509250565b600060208284031215614172576141716152c0565b5b600061418084828501613e0a565b91505092915050565b60006020828403121561419f5761419e6152c0565b5b60006141ad84828501613e1f565b91505092915050565b6000602082840312156141cc576141cb6152c0565b5b60006141da84828501613e34565b91505092915050565b6000602082840312156141f9576141f86152c0565b5b600082013567ffffffffffffffff811115614217576142166152bb565b5b61422384828501613ecd565b91505092915050565b600060208284031215614242576142416152c0565b5b600061425084828501613efb565b91505092915050565b60006020828403121561426f5761426e6152c0565b5b600061427d84828501613f10565b91505092915050565b61428f81614fda565b82525050565b6142a66142a182614fda565b615153565b82525050565b6142b581614fec565b82525050565b6142c481614ff8565b82525050565b6142db6142d682614ff8565b615165565b82525050565b60006142ec82614e77565b6142f68185614e8d565b9350614306818560208601615074565b61430f816152c5565b840191505092915050565b600061432582614e82565b61432f8185614ea9565b935061433f818560208601615074565b614348816152c5565b840191505092915050565b600061435e82614e82565b6143688185614eba565b9350614378818560208601615074565b80840191505092915050565b6000614391601483614ea9565b915061439c826152e3565b602082019050919050565b60006143b4601a83614ea9565b91506143bf8261530c565b602082019050919050565b60006143d7601c83614eba565b91506143e282615335565b601c82019050919050565b60006143fa600f83614ea9565b91506144058261535e565b602082019050919050565b600061441d603283614ea9565b915061442882615387565b604082019050919050565b6000614440602683614ea9565b915061444b826153d6565b604082019050919050565b6000614463601c83614ea9565b915061446e82615425565b602082019050919050565b6000614486602483614ea9565b91506144918261544e565b604082019050919050565b60006144a9601983614ea9565b91506144b48261549d565b602082019050919050565b60006144cc600983614ea9565b91506144d7826154c6565b602082019050919050565b60006144ef602c83614ea9565b91506144fa826154ef565b604082019050919050565b6000614512601283614ea9565b915061451d8261553e565b602082019050919050565b6000614535601083614ea9565b915061454082615567565b602082019050919050565b6000614558603883614ea9565b915061456382615590565b604082019050919050565b600061457b601283614ea9565b9150614586826155df565b602082019050919050565b600061459e602a83614ea9565b91506145a982615608565b604082019050919050565b60006145c1602983614ea9565b91506145cc82615657565b604082019050919050565b60006145e4602e83614ea9565b91506145ef826156a6565b604082019050919050565b6000614607602083614ea9565b9150614612826156f5565b602082019050919050565b600061462a603183614ea9565b91506146358261571e565b604082019050919050565b600061464d602c83614ea9565b91506146588261576d565b604082019050919050565b6000614670600583614eba565b915061467b826157bc565b600582019050919050565b6000614693602183614ea9565b915061469e826157e5565b604082019050919050565b60006146b6602083614ea9565b91506146c182615834565b602082019050919050565b60006146d9602983614ea9565b91506146e48261585d565b604082019050919050565b60006146fc602f83614ea9565b9150614707826158ac565b604082019050919050565b600061471f600a83614ea9565b915061472a826158fb565b602082019050919050565b6000614742602183614ea9565b915061474d82615924565b604082019050919050565b6000614765601183614ea9565b915061477082615973565b602082019050919050565b6000614788602683614ea9565b91506147938261599c565b604082019050919050565b60006147ab601883614ea9565b91506147b6826159eb565b602082019050919050565b60006147ce600083614e9e565b91506147d982615a14565b600082019050919050565b60006147f1601083614ea9565b91506147fc82615a17565b602082019050919050565b6000614814603183614ea9565b915061481f82615a40565b604082019050919050565b6148338161504e565b82525050565b61484a6148458261504e565b615181565b82525050565b61485981615058565b82525050565b600061486b8285614295565b60148201915061487b8284614839565b6020820191508190509392505050565b60006148978285614353565b91506148a38284614353565b91508190509392505050565b60006148bb8284614353565b91506148c682614663565b915081905092915050565b60006148dc826143ca565b91506148e882846142ca565b60208201915081905092915050565b6000614902826147c1565b9150819050919050565b60006020820190506149216000830184614286565b92915050565b600060808201905061493c6000830187614286565b6149496020830186614286565b614956604083018561482a565b818103606083015261496881846142e1565b905095945050505050565b600060208201905061498860008301846142ac565b92915050565b60006080820190506149a360008301876142bb565b6149b06020830186614850565b6149bd60408301856142bb565b6149ca60608301846142bb565b95945050505050565b600060208201905081810360008301526149ed818461431a565b905092915050565b60006020820190508181036000830152614a0e81614384565b9050919050565b60006020820190508181036000830152614a2e816143a7565b9050919050565b60006020820190508181036000830152614a4e816143ed565b9050919050565b60006020820190508181036000830152614a6e81614410565b9050919050565b60006020820190508181036000830152614a8e81614433565b9050919050565b60006020820190508181036000830152614aae81614456565b9050919050565b60006020820190508181036000830152614ace81614479565b9050919050565b60006020820190508181036000830152614aee8161449c565b9050919050565b60006020820190508181036000830152614b0e816144bf565b9050919050565b60006020820190508181036000830152614b2e816144e2565b9050919050565b60006020820190508181036000830152614b4e81614505565b9050919050565b60006020820190508181036000830152614b6e81614528565b9050919050565b60006020820190508181036000830152614b8e8161454b565b9050919050565b60006020820190508181036000830152614bae8161456e565b9050919050565b60006020820190508181036000830152614bce81614591565b9050919050565b60006020820190508181036000830152614bee816145b4565b9050919050565b60006020820190508181036000830152614c0e816145d7565b9050919050565b60006020820190508181036000830152614c2e816145fa565b9050919050565b60006020820190508181036000830152614c4e8161461d565b9050919050565b60006020820190508181036000830152614c6e81614640565b9050919050565b60006020820190508181036000830152614c8e81614686565b9050919050565b60006020820190508181036000830152614cae816146a9565b9050919050565b60006020820190508181036000830152614cce816146cc565b9050919050565b60006020820190508181036000830152614cee816146ef565b9050919050565b60006020820190508181036000830152614d0e81614712565b9050919050565b60006020820190508181036000830152614d2e81614735565b9050919050565b60006020820190508181036000830152614d4e81614758565b9050919050565b60006020820190508181036000830152614d6e8161477b565b9050919050565b60006020820190508181036000830152614d8e8161479e565b9050919050565b60006020820190508181036000830152614dae816147e4565b9050919050565b60006020820190508181036000830152614dce81614807565b9050919050565b6000602082019050614dea600083018461482a565b92915050565b6000614dfa614e0b565b9050614e0682826150d9565b919050565b6000604051905090565b600067ffffffffffffffff821115614e3057614e2f615278565b5b614e39826152c5565b9050602081019050919050565b600067ffffffffffffffff821115614e6157614e60615278565b5b614e6a826152c5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ed08261504e565b9150614edb8361504e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f1057614f0f6151bc565b5b828201905092915050565b6000614f268261504e565b9150614f318361504e565b925082614f4157614f406151eb565b5b828204905092915050565b6000614f578261504e565b9150614f628361504e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f9b57614f9a6151bc565b5b828202905092915050565b6000614fb18261504e565b9150614fbc8361504e565b925082821015614fcf57614fce6151bc565b5b828203905092915050565b6000614fe58261502e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015615092578082015181840152602081019050615077565b838111156150a1576000848401525b50505050565b600060028204905060018216806150bf57607f821691505b602082108114156150d3576150d261521a565b5b50919050565b6150e2826152c5565b810181811067ffffffffffffffff8211171561510157615100615278565b5b80604052505050565b60006151158261504e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615148576151476151bc565b5b600182019050919050565b600061515e8261516f565b9050919050565b6000819050919050565b600061517a826152d6565b9050919050565b6000819050919050565b60006151968261504e565b91506151a18361504e565b9250826151b1576151b06151eb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4e6f7420656c696769626c6520666f7220646973636f756e7473000000000000600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f57726f6e67207369676e61747572650000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f436f6e74726163742069732066726f7a656e0000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4e6f206d6f726520726573657276656420746f6b656e7320617661696c61626c60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c6520656e64656400000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178206974656d73000000000000000000000000000000600082015250565b7f4d696e7420636f756e742073686f756c6420626520677265617465722074686160008201527f6e207a65726f0000000000000000000000000000000000000000000000000000602082015250565b7f446973636f756e7420616c726561647920636c61696d65640000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b615a9881614fda565b8114615aa357600080fd5b50565b615aaf81614fec565b8114615aba57600080fd5b50565b615ac681615002565b8114615ad157600080fd5b50565b615add8161504e565b8114615ae857600080fd5b5056fea2646970667358221220067a4914a25514277ddc321e770e0baa5990ff70b8e28af75b08519d5cdaa17464736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000013a48f723f4ad29b6da6e7215fe53172c027d98f000000000000000000000000d90d393d9d3dcb3ee4942afe0ea2e07949dc23c6000000000000000000000000f497253c2bb7644ebb99e4d9ecc104ae7a79187a0000000000000000000000000dacfd6b67d96b95f0275514cab0426b4d2eb05a000000000000000000000000d70c35c73c8989b0e0615020b3b4cc2d24e0da130000000000000000000000005a3bbeea6ceb34fe0780b31060b7b5cbcff622210000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d534865387068386a477036747255626450375a334a68764b72647a543547375754443267507537773136785a2f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmSHe8ph8jGp6trUbdP7Z3JhvKrdzT5G7WTD2gPu7w16xZ/
Arg [1] : _cyberLoot (address): 0x13a48f723f4AD29b6da6e7215Fe53172C027d98f
Arg [2] : _metaverseTicket (address): 0xd90d393D9d3dCB3Ee4942AFE0Ea2E07949DC23C6
Arg [3] : _sevens (address): 0xf497253C2bB7644ebb99e4d9ECC104aE7a79187A
Arg [4] : _multiSigOwner (address): 0x0dacfD6b67D96b95f0275514CAB0426b4d2eb05A
Arg [5] : _whitelistSignerTierOne (address): 0xD70c35C73c8989b0E0615020b3b4Cc2D24e0dA13
Arg [6] : _whitelistSignerTierTwo (address): 0x5a3bBEea6ceb34fe0780B31060B7b5CBCFF62221

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 00000000000000000000000013a48f723f4ad29b6da6e7215fe53172c027d98f
Arg [2] : 000000000000000000000000d90d393d9d3dcb3ee4942afe0ea2e07949dc23c6
Arg [3] : 000000000000000000000000f497253c2bb7644ebb99e4d9ecc104ae7a79187a
Arg [4] : 0000000000000000000000000dacfd6b67d96b95f0275514cab0426b4d2eb05a
Arg [5] : 000000000000000000000000d70c35c73c8989b0e0615020b3b4cc2d24e0da13
Arg [6] : 0000000000000000000000005a3bbeea6ceb34fe0780b31060b7b5cbcff62221
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d534865387068386a477036747255626450375a334a6876
Arg [9] : 4b72647a543547375754443267507537773136785a2f00000000000000000000


Deployed Bytecode Sourcemap

47843:8609:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33713:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53669:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48666:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48536:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34658:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36217:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35740:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37107:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48741:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50162:797;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37517:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53249:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49652:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12513:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49798:61;;;;;;;;;;;;;:::i;:::-;;34352:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48146:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34082:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15348:94;;;;;;;;;;;;;:::i;:::-;;48228:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56104:167;;;:::i;:::-;;50965:294;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48346:73;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14697:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53518:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34827:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53803:352;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36510:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53367:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48283:58;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54598:571;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37773:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54161:431;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51265:294;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46266:679;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52521:414;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48503:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36876:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48424:72;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48699:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48085;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15597:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48039:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33713:305;33815:4;33867:25;33852:40;;;:11;:40;;;;:105;;;;33924:33;33909:48;;;:11;:48;;;;33852:105;:158;;;;33974:36;33998:11;33974:23;:36::i;:::-;33852:158;33832:178;;33713:305;;;:::o;53669:128::-;14928:12;:10;:12::i;:::-;14917:23;;:7;:5;:7::i;:::-;:23;;;14909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53729:4:::1;53722:11;;:3;:11;;;53718:57;;;53744:8;:6;:8::i;:::-;53761:7;;53718:57;53781:10;:8;:10::i;:::-;14988:1;53669:128:::0;:::o;48666:28::-;;;;;;;;;;;;;:::o;48536:18::-;;;;;;;;;;;;;:::o;34658:100::-;34712:13;34745:5;34738:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34658:100;:::o;36217:221::-;36293:7;36321:16;36329:7;36321;:16::i;:::-;36313:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36406:15;:24;36422:7;36406:24;;;;;;;;;;;;;;;;;;;;;36399:31;;36217:221;;;:::o;35740:411::-;35821:13;35837:23;35852:7;35837:14;:23::i;:::-;35821:39;;35885:5;35879:11;;:2;:11;;;;35871:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;35979:5;35963:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;35988:37;36005:5;36012:12;:10;:12::i;:::-;35988:16;:37::i;:::-;35963:62;35941:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;36122:21;36131:2;36135:7;36122:8;:21::i;:::-;35810:341;35740:411;;:::o;37107:339::-;37302:41;37321:12;:10;:12::i;:::-;37335:7;37302:18;:41::i;:::-;37294:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;37410:28;37420:4;37426:2;37430:7;37410:9;:28::i;:::-;37107:339;;;:::o;48741:37::-;;;;;;;;;;;;;:::o;50162:797::-;48076:4;50009:14;:12;:14::i;:::-;:28;;50001:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;50079:7;:5;:7::i;:::-;50063:23;;:12;:10;:12::i;:::-;:23;;;50059:84;;50106:8;:6;:8::i;:::-;50105:9;50097:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;50059:84;50257:1:::1;50248:6;:10;50240:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48120:2;50316:6;:18;;50308:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;50363:17;50383:14;:12;:14::i;:::-;50363:34;;48076:4;50412:9;:23;;50404:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;48076:4;50477:6;50465:9;:18;;;;:::i;:::-;:32;;50457:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;50541:18;50547:3;50552:6;50541:5;:18::i;:::-;50528:9;:31;;50520:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;50595:26;50617:3;50595:21;:26::i;:::-;50591:284;;;50632:28;50663:26;50685:3;50663:21;:26::i;:::-;50632:57;;50726:6;50702:20;:30;50698:170;;50775:6;50745:21;:26;50767:3;50745:26;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;50698:170;;;50838:20;50808:21;:26;50830:3;50808:26;;;;;;;;;;;;;;;;:50;;;;;;;:::i;:::-;;;;;;;;50698:170;50623:252;50591:284;50888:9;50883:71;50907:6;50903:1;:10;50883:71;;;50929:17;50942:3;50929:12;:17::i;:::-;50915:3;;;;;:::i;:::-;;;;50883:71;;;;50233:726;50162:797:::0;;:::o;37517:185::-;37655:39;37672:4;37678:2;37682:7;37655:39;;;;;;;;;;;;:16;:39::i;:::-;37517:185;;;:::o;53249:112::-;14928:12;:10;:12::i;:::-;14917:23;;:7;:5;:7::i;:::-;:23;;;14909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53340:15:::1;53324:13;;:31;;;;;;;;;;;;;;;;;;53249:112:::0;:::o;49652:140::-;14928:12;:10;:12::i;:::-;14917:23;;:7;:5;:7::i;:::-;:23;;;14909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49728:6:::1;;;;;;;;;;;49727:7;49719:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;49779:7;49764:12;:22;;;;;;;;;;;;:::i;:::-;;49652:140:::0;:::o;12513:86::-;12560:4;12584:7;;;;;;;;;;;12577:14;;12513:86;:::o;49798:61::-;14928:12;:10;:12::i;:::-;14917:23;;:7;:5;:7::i;:::-;:23;;;14909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49849:4:::1;49840:6;;:13;;;;;;;;;;;;;;;;;;49798:61::o:0;34352:239::-;34424:7;34444:13;34460:7;:16;34468:7;34460:16;;;;;;;;;;;;;;;;;;;;;34444:32;;34512:1;34495:19;;:5;:19;;;;34487:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34578:5;34571:12;;;34352:239;;;:::o;48146:45::-;48188:3;48146:45;:::o;34082:208::-;34154:7;34199:1;34182:19;;:5;:19;;;;34174:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;34266:9;:16;34276:5;34266:16;;;;;;;;;;;;;;;;34259:23;;34082:208;;;:::o;15348:94::-;14928:12;:10;:12::i;:::-;14917:23;;:7;:5;:7::i;:::-;:23;;;14909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15413:21:::1;15431:1;15413:9;:21::i;:::-;15348:94::o:0;48228:50::-;48268:10;48228:50;:::o;56104:167::-;14928:12;:10;:12::i;:::-;14917:23;;:7;:5;:7::i;:::-;:23;;;14909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56159:15:::1;56177:21;56159:39;;56223:1;56213:7;:11;56205:20;;;::::0;::::1;;56232:33;56242:13;;;;;;;;;;;56257:7;56232:9;:33::i;:::-;56152:119;56104:167::o:0;50965:294::-;48076:4;50009:14;:12;:14::i;:::-;:28;;50001:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;50079:7;:5;:7::i;:::-;50063:23;;:12;:10;:12::i;:::-;:23;;;50059:84;;50106:8;:6;:8::i;:::-;50105:9;50097:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;50059:84;51109:144:::1;51134:3;51146:6;51161:10;;51180:22;;;;;;;;;;;48408:11;51109:16;:144::i;:::-;50965:294:::0;;;;:::o;48346:73::-;48408:11;48346:73;:::o;14697:87::-;14743:7;14770:6;;;;;;;;;;;14763:13;;14697:87;:::o;53518:145::-;14928:12;:10;:12::i;:::-;14917:23;;:7;:5;:7::i;:::-;:23;;;14909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53641:16:::1;53616:22;;:41;;;;;;;;;;;;;;;;;;53518:145:::0;:::o;34827:104::-;34883:13;34916:7;34909:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34827:104;:::o;53803:352::-;53868:4;53881:21;53905:127;54001:15;;;;;;;;;;;:25;;;54027:3;54001:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53905:83;53958:14;;;;;;;;;;;:24;;;53983:3;53958:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53905:17;;;;;;;;;;;:35;;;53941:3;53905:40;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:52;;:83;;;;:::i;:::-;:95;;:127;;;;:::i;:::-;53881:151;;54039:28;54070:21;:26;54092:3;54070:26;;;;;;;;;;;;;;;;54039:57;;54136:13;54112:20;:37;;54105:44;;;;53803:352;;;:::o;36510:295::-;36625:12;:10;:12::i;:::-;36613:24;;:8;:24;;;;36605:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36725:8;36680:18;:32;36699:12;:10;:12::i;:::-;36680:32;;;;;;;;;;;;;;;:42;36713:8;36680:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36778:8;36749:48;;36764:12;:10;:12::i;:::-;36749:48;;;36788:8;36749:48;;;;;;:::i;:::-;;;;;;;;36510:295;;:::o;53367:145::-;14928:12;:10;:12::i;:::-;14917:23;;:7;:5;:7::i;:::-;:23;;;14909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53490:16:::1;53465:22;;:41;;;;;;;;;;;;;;;;;;53367:145:::0;:::o;48283:58::-;48331:10;48283:58;:::o;54598:571::-;54663:7;54684:26;54706:3;54684:21;:26::i;:::-;54679:485;;54728:25;54746:6;48268:10;54728:17;;:25;;;;:::i;:::-;54721:32;;;;54679:485;54776:28;54807:26;54829:3;54807:21;:26::i;:::-;54776:57;;54870:6;54846:20;:30;54842:315;;54896:33;54922:6;48331:10;54896:25;;:33;;;;:::i;:::-;54889:40;;;;;54842:315;54956:18;54977:47;55003:20;48331:10;54977:25;;:47;;;;:::i;:::-;54956:68;;55035:16;55054:51;55072:32;55083:20;55072:6;:10;;:32;;;;:::i;:::-;48268:10;55054:17;;:51;;;;:::i;:::-;55035:70;;55123:24;55138:8;55123:10;:14;;:24;;;;:::i;:::-;55116:31;;;;;54598:571;;;;;:::o;37773:328::-;37948:41;37967:12;:10;:12::i;:::-;37981:7;37948:18;:41::i;:::-;37940:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;38054:39;38068:4;38074:2;38078:7;38087:5;38054:13;:39::i;:::-;37773:328;;;;:::o;54161:431::-;54226:7;54250:26;54272:3;54250:21;:26::i;:::-;54242:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;54316:21;54340:127;54436:15;;;;;;;;;;;:25;;;54462:3;54436:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54340:83;54393:14;;;;;;;;;;;:24;;;54418:3;54393:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54340:17;;;;;;;;;;;:35;;;54376:3;54340:40;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:52;;:83;;;;:::i;:::-;:95;;:127;;;;:::i;:::-;54316:151;;54474:28;54505:21;:26;54527:3;54505:26;;;;;;;;;;;;;;;;54474:57;;54547:39;54565:20;54547:13;:17;;:39;;;;:::i;:::-;54540:46;;;;54161:431;;;:::o;51265:294::-;48076:4;50009:14;:12;:14::i;:::-;:28;;50001:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;50079:7;:5;:7::i;:::-;50063:23;;:12;:10;:12::i;:::-;:23;;;50059:84;;50106:8;:6;:8::i;:::-;50105:9;50097:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;50059:84;51409:144:::1;51434:3;51446:6;51461:10;;51480:22;;;;;;;;;;;48486:10;51409:16;:144::i;:::-;51265:294:::0;;;;:::o;46266:679::-;46339:13;46373:16;46381:7;46373;:16::i;:::-;46365:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;46456:23;46482:10;:19;46493:7;46482:19;;;;;;;;;;;46456:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46512:18;46533:10;:8;:10::i;:::-;46512:31;;46641:1;46625:4;46619:18;:23;46615:72;;;46666:9;46659:16;;;;;;46615:72;46817:1;46797:9;46791:23;:27;46787:108;;;46866:4;46872:9;46849:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46835:48;;;;;;46787:108;46914:23;46929:7;46914:14;:23::i;:::-;46907:30;;;;46266:679;;;;:::o;52521:414::-;14928:12;:10;:12::i;:::-;14917:23;;:7;:5;:7::i;:::-;:23;;;14909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52594:17:::1;52614:14;:12;:14::i;:::-;52594:34;;48076:4;52643:9;:23;;52635:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;48076:4;52708:6;52696:9;:18;;;;:::i;:::-;:32;;52688:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;52769:1;52757:9;;:13;52749:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;52822:9;52817:71;52841:6;52837:1;:10;52817:71;;;52863:17;52876:3;52863:12;:17::i;:::-;52849:3;;;;;:::i;:::-;;;;52817:71;;;;52908:21;52922:6;52908:9;;:13;;:21;;;;:::i;:::-;52896:9;:33;;;;52587:348;52521:414:::0;;:::o;48503:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36876:164::-;36973:4;36997:18;:25;37016:5;36997:25;;;;;;;;;;;;;;;:35;37023:8;36997:35;;;;;;;;;;;;;;;;;;;;;;;;;36990:42;;36876:164;;;;:::o;48424:72::-;48486:10;48424:72;:::o;48699:37::-;;;;;;;;;;;;;:::o;48085:::-;48120:2;48085:37;:::o;15597:192::-;14928:12;:10;:12::i;:::-;14917:23;;:7;:5;:7::i;:::-;:23;;;14909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15706:1:::1;15686:22;;:8;:22;;;;15678:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;15762:19;15772:8;15762:9;:19::i;:::-;15597:192:::0;:::o;48039:41::-;48076:4;48039:41;:::o;26683:157::-;26768:4;26807:25;26792:40;;;:11;:40;;;;26785:47;;26683:157;;;:::o;11225:98::-;11278:7;11305:10;11298:17;;11225:98;:::o;13313:118::-;12839:8;:6;:8::i;:::-;12838:9;12830:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;13383:4:::1;13373:7;;:14;;;;;;;;;;;;;;;;;;13403:20;13410:12;:10;:12::i;:::-;13403:20;;;;;;:::i;:::-;;;;;;;;13313:118::o:0;13572:120::-;13116:8;:6;:8::i;:::-;13108:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;13641:5:::1;13631:7;;:15;;;;;;;;;;;;;;;;;;13662:22;13671:12;:10;:12::i;:::-;13662:22;;;;;;:::i;:::-;;;;;;;;13572:120::o:0;39611:127::-;39676:4;39728:1;39700:30;;:7;:16;39708:7;39700:16;;;;;;;;;;;;;;;;;;;;;:30;;;;39693:37;;39611:127;;;:::o;43593:174::-;43695:2;43668:15;:24;43684:7;43668:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43751:7;43747:2;43713:46;;43722:23;43737:7;43722:14;:23::i;:::-;43713:46;;;;;;;;;;;;43593:174;;:::o;39905:348::-;39998:4;40023:16;40031:7;40023;:16::i;:::-;40015:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;40099:13;40115:23;40130:7;40115:14;:23::i;:::-;40099:39;;40168:5;40157:16;;:7;:16;;;:51;;;;40201:7;40177:31;;:20;40189:7;40177:11;:20::i;:::-;:31;;;40157:51;:87;;;;40212:32;40229:5;40236:7;40212:16;:32::i;:::-;40157:87;40149:96;;;39905:348;;;;:::o;42897:578::-;43056:4;43029:31;;:23;43044:7;43029:14;:23::i;:::-;:31;;;43021:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;43139:1;43125:16;;:2;:16;;;;43117:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;43195:39;43216:4;43222:2;43226:7;43195:20;:39::i;:::-;43299:29;43316:1;43320:7;43299:8;:29::i;:::-;43360:1;43341:9;:15;43351:4;43341:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;43389:1;43372:9;:13;43382:2;43372:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;43420:2;43401:7;:16;43409:7;43401:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;43459:7;43455:2;43440:27;;43449:4;43440:27;;;;;;;;;;;;42897:578;;;:::o;49865:101::-;49912:7;49935:25;:15;:23;:25::i;:::-;49928:32;;49865:101;:::o;52941:302::-;52991:27;:15;:25;:27::i;:::-;53025:15;53043:14;:12;:14::i;:::-;53025:32;;53066:23;53076:3;53081:7;53066:9;:23::i;:::-;53096:104;53117:7;53157:25;53174:7;53157:16;:25::i;:::-;53140:52;;;;;;;;:::i;:::-;;;;;;;;;;;;;53096:12;:104::i;:::-;53229:7;53212:25;;;;;;;;;;52984:259;52941:302;:::o;15797:173::-;15853:16;15872:6;;;;;;;;;;;15853:25;;15898:8;15889:6;;:17;;;;;;;;;;;;;;;;;;15953:8;15922:40;;15943:8;15922:40;;;;;;;;;;;;15842:128;15797:173;:::o;56277:172::-;56347:12;56365:8;:13;;56387:7;56365:35;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56346:54;;;56415:7;56407:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;56339:110;56277:172;;:::o;51565:950::-;51750:1;51741:6;:10;51733:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48120:2;51809:6;:18;;51801:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;51856:15;51874:54;51910:3;51923:1;51893:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51883:44;;;;;;51874:8;:54::i;:::-;51856:72;;51991:15;51953:53;;:34;51967:7;51976:10;;51953:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:13;:34::i;:::-;:53;;;51937:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;52084:5;52056:33;;:19;:24;52076:3;52056:24;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;52048:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;52125:17;52145:14;:12;:14::i;:::-;52125:34;;48076:4;52174:9;:23;;52166:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;48076:4;52239:6;52227:9;:18;;;;:::i;:::-;:32;;52219:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;52280:23;52306:18;52317:6;52306;:10;;:18;;;;:::i;:::-;52280:44;;52352:15;52339:9;:28;;52331:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;52404:9;52399:71;52423:6;52419:1;:10;52399:71;;;52445:17;52458:3;52445:12;:17::i;:::-;52431:3;;;;;:::i;:::-;;;;52399:71;;;;52505:4;52478:19;:24;52498:3;52478:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;51726:789;;;51565:950;;;;;;:::o;2955:98::-;3013:7;3044:1;3040;:5;;;;:::i;:::-;3033:12;;2955:98;;;;:::o;3693:::-;3751:7;3782:1;3778;:5;;;;:::i;:::-;3771:12;;3693:98;;;;:::o;3336:::-;3394:7;3425:1;3421;:5;;;;:::i;:::-;3414:12;;3336:98;;;;:::o;38983:315::-;39140:28;39150:4;39156:2;39160:7;39140:9;:28::i;:::-;39187:48;39210:4;39216:2;39220:7;39229:5;39187:22;:48::i;:::-;39179:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;38983:315;;;;:::o;49539:107::-;49599:13;49628:12;49621:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49539:107;:::o;35002:334::-;35075:13;35109:16;35117:7;35109;:16::i;:::-;35101:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;35190:21;35214:10;:8;:10::i;:::-;35190:34;;35266:1;35248:7;35242:21;:25;:86;;;;;;;;;;;;;;;;;35294:7;35303:18;:7;:16;:18::i;:::-;35277:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35242:86;35235:93;;;35002:334;;;:::o;45703:126::-;;;;:::o;7937:114::-;8002:7;8029;:14;;;8022:21;;7937:114;;;:::o;8059:127::-;8166:1;8148:7;:14;;;:19;;;;;;;;;;;8059:127;:::o;40595:110::-;40671:26;40681:2;40685:7;40671:26;;;;;;;;;;;;:9;:26::i;:::-;40595:110;;:::o;8841:723::-;8897:13;9127:1;9118:5;:10;9114:53;;;9145:10;;;;;;;;;;;;;;;;;;;;;9114:53;9177:12;9192:5;9177:20;;9208:14;9233:78;9248:1;9240:4;:9;9233:78;;9266:8;;;;;:::i;:::-;;;;9297:2;9289:10;;;;;:::i;:::-;;;9233:78;;;9321:19;9353:6;9343:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9321:39;;9371:154;9387:1;9378:5;:10;9371:154;;9415:1;9405:11;;;;;:::i;:::-;;;9482:2;9474:5;:10;;;;:::i;:::-;9461:2;:24;;;;:::i;:::-;9448:39;;9431:6;9438;9431:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9511:2;9502:11;;;;;:::i;:::-;;;9371:154;;;9549:6;9535:21;;;;;8841:723;;;;:::o;47101:217::-;47201:16;47209:7;47201;:16::i;:::-;47193:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;47301:9;47279:10;:19;47290:7;47279:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;47101:217;;:::o;55175:160::-;55230:7;55323:4;55270:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;55260:69;;;;;;55246:83;;55175:160;;;:::o;55341:243::-;55437:7;55456;55470:9;55486;55516:19;55531:3;55516:14;:19::i;:::-;55504:31;;;;;;;;;;;;55551:27;55561:7;55570:1;55573;55576;55551:27;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55544:34;;;;;55341:243;;;;:::o;44332:799::-;44487:4;44508:15;:2;:13;;;:15::i;:::-;44504:620;;;44560:2;44544:36;;;44581:12;:10;:12::i;:::-;44595:4;44601:7;44610:5;44544:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44540:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44803:1;44786:6;:13;:18;44782:272;;;44829:60;;;;;;;;;;:::i;:::-;;;;;;;;44782:272;45004:6;44998:13;44989:6;44985:2;44981:15;44974:38;44540:529;44677:41;;;44667:51;;;:6;:51;;;;44660:58;;;;;44504:620;45108:4;45101:11;;44332:799;;;;;;;:::o;40932:321::-;41062:18;41068:2;41072:7;41062:5;:18::i;:::-;41113:54;41144:1;41148:2;41152:7;41161:5;41113:22;:54::i;:::-;41091:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;40932:321;;;:::o;55590:508::-;55678:5;55692:7;55708;55755:2;55741:3;:10;:16;55733:25;;;;;;55767:9;55783;55799:7;55903:2;55898:3;55894:12;55888:19;55883:24;;55961:2;55956:3;55952:12;55946:19;55941:24;;56056:2;56051:3;56047:12;56041:19;56038:1;56033:28;56028:33;;56084:1;56087;56090;56076:16;;;;;;;;;55590:508;;;;;:::o;16743:387::-;16803:4;17011:12;17078:7;17066:20;17058:28;;17121:1;17114:4;:8;17107:15;;;16743:387;;;:::o;41589:382::-;41683:1;41669:16;;:2;:16;;;;41661:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;41742:16;41750:7;41742;:16::i;:::-;41741:17;41733:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;41804:45;41833:1;41837:2;41841:7;41804:20;:45::i;:::-;41879:1;41862:9;:13;41872:2;41862:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;41910:2;41891:7;:16;41899:7;41891:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;41955:7;41951:2;41930:33;;41947:1;41930:33;;;;;;;;;;;;41589:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:552::-;1485:8;1495:6;1545:3;1538:4;1530:6;1526:17;1522:27;1512:122;;1553:79;;:::i;:::-;1512:122;1666:6;1653:20;1643:30;;1696:18;1688:6;1685:30;1682:117;;;1718:79;;:::i;:::-;1682:117;1832:4;1824:6;1820:17;1808:29;;1886:3;1878:4;1870:6;1866:17;1856:8;1852:32;1849:41;1846:128;;;1893:79;;:::i;:::-;1846:128;1428:552;;;;;:::o;1999:338::-;2054:5;2103:3;2096:4;2088:6;2084:17;2080:27;2070:122;;2111:79;;:::i;:::-;2070:122;2228:6;2215:20;2253:78;2327:3;2319:6;2312:4;2304:6;2300:17;2253:78;:::i;:::-;2244:87;;2060:277;1999:338;;;;:::o;2357:340::-;2413:5;2462:3;2455:4;2447:6;2443:17;2439:27;2429:122;;2470:79;;:::i;:::-;2429:122;2587:6;2574:20;2612:79;2687:3;2679:6;2672:4;2664:6;2660:17;2612:79;:::i;:::-;2603:88;;2419:278;2357:340;;;;:::o;2703:139::-;2749:5;2787:6;2774:20;2765:29;;2803:33;2830:5;2803:33;:::i;:::-;2703:139;;;;:::o;2848:143::-;2905:5;2936:6;2930:13;2921:22;;2952:33;2979:5;2952:33;:::i;:::-;2848:143;;;;:::o;2997:329::-;3056:6;3105:2;3093:9;3084:7;3080:23;3076:32;3073:119;;;3111:79;;:::i;:::-;3073:119;3231:1;3256:53;3301:7;3292:6;3281:9;3277:22;3256:53;:::i;:::-;3246:63;;3202:117;2997:329;;;;:::o;3332:474::-;3400:6;3408;3457:2;3445:9;3436:7;3432:23;3428:32;3425:119;;;3463:79;;:::i;:::-;3425:119;3583:1;3608:53;3653:7;3644:6;3633:9;3629:22;3608:53;:::i;:::-;3598:63;;3554:117;3710:2;3736:53;3781:7;3772:6;3761:9;3757:22;3736:53;:::i;:::-;3726:63;;3681:118;3332:474;;;;;:::o;3812:619::-;3889:6;3897;3905;3954:2;3942:9;3933:7;3929:23;3925:32;3922:119;;;3960:79;;:::i;:::-;3922:119;4080:1;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4051:117;4207:2;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4178:118;4335:2;4361:53;4406:7;4397:6;4386:9;4382:22;4361:53;:::i;:::-;4351:63;;4306:118;3812:619;;;;;:::o;4437:943::-;4532:6;4540;4548;4556;4605:3;4593:9;4584:7;4580:23;4576:33;4573:120;;;4612:79;;:::i;:::-;4573:120;4732:1;4757:53;4802:7;4793:6;4782:9;4778:22;4757:53;:::i;:::-;4747:63;;4703:117;4859:2;4885:53;4930:7;4921:6;4910:9;4906:22;4885:53;:::i;:::-;4875:63;;4830:118;4987:2;5013:53;5058:7;5049:6;5038:9;5034:22;5013:53;:::i;:::-;5003:63;;4958:118;5143:2;5132:9;5128:18;5115:32;5174:18;5166:6;5163:30;5160:117;;;5196:79;;:::i;:::-;5160:117;5301:62;5355:7;5346:6;5335:9;5331:22;5301:62;:::i;:::-;5291:72;;5086:287;4437:943;;;;;;;:::o;5386:468::-;5451:6;5459;5508:2;5496:9;5487:7;5483:23;5479:32;5476:119;;;5514:79;;:::i;:::-;5476:119;5634:1;5659:53;5704:7;5695:6;5684:9;5680:22;5659:53;:::i;:::-;5649:63;;5605:117;5761:2;5787:50;5829:7;5820:6;5809:9;5805:22;5787:50;:::i;:::-;5777:60;;5732:115;5386:468;;;;;:::o;5860:474::-;5928:6;5936;5985:2;5973:9;5964:7;5960:23;5956:32;5953:119;;;5991:79;;:::i;:::-;5953:119;6111:1;6136:53;6181:7;6172:6;6161:9;6157:22;6136:53;:::i;:::-;6126:63;;6082:117;6238:2;6264:53;6309:7;6300:6;6289:9;6285:22;6264:53;:::i;:::-;6254:63;;6209:118;5860:474;;;;;:::o;6340:817::-;6428:6;6436;6444;6452;6501:2;6489:9;6480:7;6476:23;6472:32;6469:119;;;6507:79;;:::i;:::-;6469:119;6627:1;6652:53;6697:7;6688:6;6677:9;6673:22;6652:53;:::i;:::-;6642:63;;6598:117;6754:2;6780:53;6825:7;6816:6;6805:9;6801:22;6780:53;:::i;:::-;6770:63;;6725:118;6910:2;6899:9;6895:18;6882:32;6941:18;6933:6;6930:30;6927:117;;;6963:79;;:::i;:::-;6927:117;7076:64;7132:7;7123:6;7112:9;7108:22;7076:64;:::i;:::-;7058:82;;;;6853:297;6340:817;;;;;;;:::o;7163:323::-;7219:6;7268:2;7256:9;7247:7;7243:23;7239:32;7236:119;;;7274:79;;:::i;:::-;7236:119;7394:1;7419:50;7461:7;7452:6;7441:9;7437:22;7419:50;:::i;:::-;7409:60;;7365:114;7163:323;;;;:::o;7492:327::-;7550:6;7599:2;7587:9;7578:7;7574:23;7570:32;7567:119;;;7605:79;;:::i;:::-;7567:119;7725:1;7750:52;7794:7;7785:6;7774:9;7770:22;7750:52;:::i;:::-;7740:62;;7696:116;7492:327;;;;:::o;7825:349::-;7894:6;7943:2;7931:9;7922:7;7918:23;7914:32;7911:119;;;7949:79;;:::i;:::-;7911:119;8069:1;8094:63;8149:7;8140:6;8129:9;8125:22;8094:63;:::i;:::-;8084:73;;8040:127;7825:349;;;;:::o;8180:509::-;8249:6;8298:2;8286:9;8277:7;8273:23;8269:32;8266:119;;;8304:79;;:::i;:::-;8266:119;8452:1;8441:9;8437:17;8424:31;8482:18;8474:6;8471:30;8468:117;;;8504:79;;:::i;:::-;8468:117;8609:63;8664:7;8655:6;8644:9;8640:22;8609:63;:::i;:::-;8599:73;;8395:287;8180:509;;;;:::o;8695:329::-;8754:6;8803:2;8791:9;8782:7;8778:23;8774:32;8771:119;;;8809:79;;:::i;:::-;8771:119;8929:1;8954:53;8999:7;8990:6;8979:9;8975:22;8954:53;:::i;:::-;8944:63;;8900:117;8695:329;;;;:::o;9030:351::-;9100:6;9149:2;9137:9;9128:7;9124:23;9120:32;9117:119;;;9155:79;;:::i;:::-;9117:119;9275:1;9300:64;9356:7;9347:6;9336:9;9332:22;9300:64;:::i;:::-;9290:74;;9246:128;9030:351;;;;:::o;9387:118::-;9474:24;9492:5;9474:24;:::i;:::-;9469:3;9462:37;9387:118;;:::o;9511:157::-;9616:45;9636:24;9654:5;9636:24;:::i;:::-;9616:45;:::i;:::-;9611:3;9604:58;9511:157;;:::o;9674:109::-;9755:21;9770:5;9755:21;:::i;:::-;9750:3;9743:34;9674:109;;:::o;9789:118::-;9876:24;9894:5;9876:24;:::i;:::-;9871:3;9864:37;9789:118;;:::o;9913:157::-;10018:45;10038:24;10056:5;10038:24;:::i;:::-;10018:45;:::i;:::-;10013:3;10006:58;9913:157;;:::o;10076:360::-;10162:3;10190:38;10222:5;10190:38;:::i;:::-;10244:70;10307:6;10302:3;10244:70;:::i;:::-;10237:77;;10323:52;10368:6;10363:3;10356:4;10349:5;10345:16;10323:52;:::i;:::-;10400:29;10422:6;10400:29;:::i;:::-;10395:3;10391:39;10384:46;;10166:270;10076:360;;;;:::o;10442:364::-;10530:3;10558:39;10591:5;10558:39;:::i;:::-;10613:71;10677:6;10672:3;10613:71;:::i;:::-;10606:78;;10693:52;10738:6;10733:3;10726:4;10719:5;10715:16;10693:52;:::i;:::-;10770:29;10792:6;10770:29;:::i;:::-;10765:3;10761:39;10754:46;;10534:272;10442:364;;;;:::o;10812:377::-;10918:3;10946:39;10979:5;10946:39;:::i;:::-;11001:89;11083:6;11078:3;11001:89;:::i;:::-;10994:96;;11099:52;11144:6;11139:3;11132:4;11125:5;11121:16;11099:52;:::i;:::-;11176:6;11171:3;11167:16;11160:23;;10922:267;10812:377;;;;:::o;11195:366::-;11337:3;11358:67;11422:2;11417:3;11358:67;:::i;:::-;11351:74;;11434:93;11523:3;11434:93;:::i;:::-;11552:2;11547:3;11543:12;11536:19;;11195:366;;;:::o;11567:::-;11709:3;11730:67;11794:2;11789:3;11730:67;:::i;:::-;11723:74;;11806:93;11895:3;11806:93;:::i;:::-;11924:2;11919:3;11915:12;11908:19;;11567:366;;;:::o;11939:402::-;12099:3;12120:85;12202:2;12197:3;12120:85;:::i;:::-;12113:92;;12214:93;12303:3;12214:93;:::i;:::-;12332:2;12327:3;12323:12;12316:19;;11939:402;;;:::o;12347:366::-;12489:3;12510:67;12574:2;12569:3;12510:67;:::i;:::-;12503:74;;12586:93;12675:3;12586:93;:::i;:::-;12704:2;12699:3;12695:12;12688:19;;12347:366;;;:::o;12719:::-;12861:3;12882:67;12946:2;12941:3;12882:67;:::i;:::-;12875:74;;12958:93;13047:3;12958:93;:::i;:::-;13076:2;13071:3;13067:12;13060:19;;12719:366;;;:::o;13091:::-;13233:3;13254:67;13318:2;13313:3;13254:67;:::i;:::-;13247:74;;13330:93;13419:3;13330:93;:::i;:::-;13448:2;13443:3;13439:12;13432:19;;13091:366;;;:::o;13463:::-;13605:3;13626:67;13690:2;13685:3;13626:67;:::i;:::-;13619:74;;13702:93;13791:3;13702:93;:::i;:::-;13820:2;13815:3;13811:12;13804:19;;13463:366;;;:::o;13835:::-;13977:3;13998:67;14062:2;14057:3;13998:67;:::i;:::-;13991:74;;14074:93;14163:3;14074:93;:::i;:::-;14192:2;14187:3;14183:12;14176:19;;13835:366;;;:::o;14207:::-;14349:3;14370:67;14434:2;14429:3;14370:67;:::i;:::-;14363:74;;14446:93;14535:3;14446:93;:::i;:::-;14564:2;14559:3;14555:12;14548:19;;14207:366;;;:::o;14579:365::-;14721:3;14742:66;14806:1;14801:3;14742:66;:::i;:::-;14735:73;;14817:93;14906:3;14817:93;:::i;:::-;14935:2;14930:3;14926:12;14919:19;;14579:365;;;:::o;14950:366::-;15092:3;15113:67;15177:2;15172:3;15113:67;:::i;:::-;15106:74;;15189:93;15278:3;15189:93;:::i;:::-;15307:2;15302:3;15298:12;15291:19;;14950:366;;;:::o;15322:::-;15464:3;15485:67;15549:2;15544:3;15485:67;:::i;:::-;15478:74;;15561:93;15650:3;15561:93;:::i;:::-;15679:2;15674:3;15670:12;15663:19;;15322:366;;;:::o;15694:::-;15836:3;15857:67;15921:2;15916:3;15857:67;:::i;:::-;15850:74;;15933:93;16022:3;15933:93;:::i;:::-;16051:2;16046:3;16042:12;16035:19;;15694:366;;;:::o;16066:::-;16208:3;16229:67;16293:2;16288:3;16229:67;:::i;:::-;16222:74;;16305:93;16394:3;16305:93;:::i;:::-;16423:2;16418:3;16414:12;16407:19;;16066:366;;;:::o;16438:::-;16580:3;16601:67;16665:2;16660:3;16601:67;:::i;:::-;16594:74;;16677:93;16766:3;16677:93;:::i;:::-;16795:2;16790:3;16786:12;16779:19;;16438:366;;;:::o;16810:::-;16952:3;16973:67;17037:2;17032:3;16973:67;:::i;:::-;16966:74;;17049:93;17138:3;17049:93;:::i;:::-;17167:2;17162:3;17158:12;17151:19;;16810:366;;;:::o;17182:::-;17324:3;17345:67;17409:2;17404:3;17345:67;:::i;:::-;17338:74;;17421:93;17510:3;17421:93;:::i;:::-;17539:2;17534:3;17530:12;17523:19;;17182:366;;;:::o;17554:::-;17696:3;17717:67;17781:2;17776:3;17717:67;:::i;:::-;17710:74;;17793:93;17882:3;17793:93;:::i;:::-;17911:2;17906:3;17902:12;17895:19;;17554:366;;;:::o;17926:::-;18068:3;18089:67;18153:2;18148:3;18089:67;:::i;:::-;18082:74;;18165:93;18254:3;18165:93;:::i;:::-;18283:2;18278:3;18274:12;18267:19;;17926:366;;;:::o;18298:::-;18440:3;18461:67;18525:2;18520:3;18461:67;:::i;:::-;18454:74;;18537:93;18626:3;18537:93;:::i;:::-;18655:2;18650:3;18646:12;18639:19;;18298:366;;;:::o;18670:::-;18812:3;18833:67;18897:2;18892:3;18833:67;:::i;:::-;18826:74;;18909:93;18998:3;18909:93;:::i;:::-;19027:2;19022:3;19018:12;19011:19;;18670:366;;;:::o;19042:400::-;19202:3;19223:84;19305:1;19300:3;19223:84;:::i;:::-;19216:91;;19316:93;19405:3;19316:93;:::i;:::-;19434:1;19429:3;19425:11;19418:18;;19042:400;;;:::o;19448:366::-;19590:3;19611:67;19675:2;19670:3;19611:67;:::i;:::-;19604:74;;19687:93;19776:3;19687:93;:::i;:::-;19805:2;19800:3;19796:12;19789:19;;19448:366;;;:::o;19820:::-;19962:3;19983:67;20047:2;20042:3;19983:67;:::i;:::-;19976:74;;20059:93;20148:3;20059:93;:::i;:::-;20177:2;20172:3;20168:12;20161:19;;19820:366;;;:::o;20192:::-;20334:3;20355:67;20419:2;20414:3;20355:67;:::i;:::-;20348:74;;20431:93;20520:3;20431:93;:::i;:::-;20549:2;20544:3;20540:12;20533:19;;20192:366;;;:::o;20564:::-;20706:3;20727:67;20791:2;20786:3;20727:67;:::i;:::-;20720:74;;20803:93;20892:3;20803:93;:::i;:::-;20921:2;20916:3;20912:12;20905:19;;20564:366;;;:::o;20936:::-;21078:3;21099:67;21163:2;21158:3;21099:67;:::i;:::-;21092:74;;21175:93;21264:3;21175:93;:::i;:::-;21293:2;21288:3;21284:12;21277:19;;20936:366;;;:::o;21308:::-;21450:3;21471:67;21535:2;21530:3;21471:67;:::i;:::-;21464:74;;21547:93;21636:3;21547:93;:::i;:::-;21665:2;21660:3;21656:12;21649:19;;21308:366;;;:::o;21680:::-;21822:3;21843:67;21907:2;21902:3;21843:67;:::i;:::-;21836:74;;21919:93;22008:3;21919:93;:::i;:::-;22037:2;22032:3;22028:12;22021:19;;21680:366;;;:::o;22052:::-;22194:3;22215:67;22279:2;22274:3;22215:67;:::i;:::-;22208:74;;22291:93;22380:3;22291:93;:::i;:::-;22409:2;22404:3;22400:12;22393:19;;22052:366;;;:::o;22424:::-;22566:3;22587:67;22651:2;22646:3;22587:67;:::i;:::-;22580:74;;22663:93;22752:3;22663:93;:::i;:::-;22781:2;22776:3;22772:12;22765:19;;22424:366;;;:::o;22796:398::-;22955:3;22976:83;23057:1;23052:3;22976:83;:::i;:::-;22969:90;;23068:93;23157:3;23068:93;:::i;:::-;23186:1;23181:3;23177:11;23170:18;;22796:398;;;:::o;23200:366::-;23342:3;23363:67;23427:2;23422:3;23363:67;:::i;:::-;23356:74;;23439:93;23528:3;23439:93;:::i;:::-;23557:2;23552:3;23548:12;23541:19;;23200:366;;;:::o;23572:::-;23714:3;23735:67;23799:2;23794:3;23735:67;:::i;:::-;23728:74;;23811:93;23900:3;23811:93;:::i;:::-;23929:2;23924:3;23920:12;23913:19;;23572:366;;;:::o;23944:118::-;24031:24;24049:5;24031:24;:::i;:::-;24026:3;24019:37;23944:118;;:::o;24068:157::-;24173:45;24193:24;24211:5;24193:24;:::i;:::-;24173:45;:::i;:::-;24168:3;24161:58;24068:157;;:::o;24231:112::-;24314:22;24330:5;24314:22;:::i;:::-;24309:3;24302:35;24231:112;;:::o;24349:397::-;24489:3;24504:75;24575:3;24566:6;24504:75;:::i;:::-;24604:2;24599:3;24595:12;24588:19;;24617:75;24688:3;24679:6;24617:75;:::i;:::-;24717:2;24712:3;24708:12;24701:19;;24737:3;24730:10;;24349:397;;;;;:::o;24752:435::-;24932:3;24954:95;25045:3;25036:6;24954:95;:::i;:::-;24947:102;;25066:95;25157:3;25148:6;25066:95;:::i;:::-;25059:102;;25178:3;25171:10;;24752:435;;;;;:::o;25193:541::-;25426:3;25448:95;25539:3;25530:6;25448:95;:::i;:::-;25441:102;;25560:148;25704:3;25560:148;:::i;:::-;25553:155;;25725:3;25718:10;;25193:541;;;;:::o;25740:522::-;25953:3;25975:148;26119:3;25975:148;:::i;:::-;25968:155;;26133:75;26204:3;26195:6;26133:75;:::i;:::-;26233:2;26228:3;26224:12;26217:19;;26253:3;26246:10;;25740:522;;;;:::o;26268:379::-;26452:3;26474:147;26617:3;26474:147;:::i;:::-;26467:154;;26638:3;26631:10;;26268:379;;;:::o;26653:222::-;26746:4;26784:2;26773:9;26769:18;26761:26;;26797:71;26865:1;26854:9;26850:17;26841:6;26797:71;:::i;:::-;26653:222;;;;:::o;26881:640::-;27076:4;27114:3;27103:9;27099:19;27091:27;;27128:71;27196:1;27185:9;27181:17;27172:6;27128:71;:::i;:::-;27209:72;27277:2;27266:9;27262:18;27253:6;27209:72;:::i;:::-;27291;27359:2;27348:9;27344:18;27335:6;27291:72;:::i;:::-;27410:9;27404:4;27400:20;27395:2;27384:9;27380:18;27373:48;27438:76;27509:4;27500:6;27438:76;:::i;:::-;27430:84;;26881:640;;;;;;;:::o;27527:210::-;27614:4;27652:2;27641:9;27637:18;27629:26;;27665:65;27727:1;27716:9;27712:17;27703:6;27665:65;:::i;:::-;27527:210;;;;:::o;27743:545::-;27916:4;27954:3;27943:9;27939:19;27931:27;;27968:71;28036:1;28025:9;28021:17;28012:6;27968:71;:::i;:::-;28049:68;28113:2;28102:9;28098:18;28089:6;28049:68;:::i;:::-;28127:72;28195:2;28184:9;28180:18;28171:6;28127:72;:::i;:::-;28209;28277:2;28266:9;28262:18;28253:6;28209:72;:::i;:::-;27743:545;;;;;;;:::o;28294:313::-;28407:4;28445:2;28434:9;28430:18;28422:26;;28494:9;28488:4;28484:20;28480:1;28469:9;28465:17;28458:47;28522:78;28595:4;28586:6;28522:78;:::i;:::-;28514:86;;28294:313;;;;:::o;28613:419::-;28779:4;28817:2;28806:9;28802:18;28794:26;;28866:9;28860:4;28856:20;28852:1;28841:9;28837:17;28830:47;28894:131;29020:4;28894:131;:::i;:::-;28886:139;;28613:419;;;:::o;29038:::-;29204:4;29242:2;29231:9;29227:18;29219:26;;29291:9;29285:4;29281:20;29277:1;29266:9;29262:17;29255:47;29319:131;29445:4;29319:131;:::i;:::-;29311:139;;29038:419;;;:::o;29463:::-;29629:4;29667:2;29656:9;29652:18;29644:26;;29716:9;29710:4;29706:20;29702:1;29691:9;29687:17;29680:47;29744:131;29870:4;29744:131;:::i;:::-;29736:139;;29463:419;;;:::o;29888:::-;30054:4;30092:2;30081:9;30077:18;30069:26;;30141:9;30135:4;30131:20;30127:1;30116:9;30112:17;30105:47;30169:131;30295:4;30169:131;:::i;:::-;30161:139;;29888:419;;;:::o;30313:::-;30479:4;30517:2;30506:9;30502:18;30494:26;;30566:9;30560:4;30556:20;30552:1;30541:9;30537:17;30530:47;30594:131;30720:4;30594:131;:::i;:::-;30586:139;;30313:419;;;:::o;30738:::-;30904:4;30942:2;30931:9;30927:18;30919:26;;30991:9;30985:4;30981:20;30977:1;30966:9;30962:17;30955:47;31019:131;31145:4;31019:131;:::i;:::-;31011:139;;30738:419;;;:::o;31163:::-;31329:4;31367:2;31356:9;31352:18;31344:26;;31416:9;31410:4;31406:20;31402:1;31391:9;31387:17;31380:47;31444:131;31570:4;31444:131;:::i;:::-;31436:139;;31163:419;;;:::o;31588:::-;31754:4;31792:2;31781:9;31777:18;31769:26;;31841:9;31835:4;31831:20;31827:1;31816:9;31812:17;31805:47;31869:131;31995:4;31869:131;:::i;:::-;31861:139;;31588:419;;;:::o;32013:::-;32179:4;32217:2;32206:9;32202:18;32194:26;;32266:9;32260:4;32256:20;32252:1;32241:9;32237:17;32230:47;32294:131;32420:4;32294:131;:::i;:::-;32286:139;;32013:419;;;:::o;32438:::-;32604:4;32642:2;32631:9;32627:18;32619:26;;32691:9;32685:4;32681:20;32677:1;32666:9;32662:17;32655:47;32719:131;32845:4;32719:131;:::i;:::-;32711:139;;32438:419;;;:::o;32863:::-;33029:4;33067:2;33056:9;33052:18;33044:26;;33116:9;33110:4;33106:20;33102:1;33091:9;33087:17;33080:47;33144:131;33270:4;33144:131;:::i;:::-;33136:139;;32863:419;;;:::o;33288:::-;33454:4;33492:2;33481:9;33477:18;33469:26;;33541:9;33535:4;33531:20;33527:1;33516:9;33512:17;33505:47;33569:131;33695:4;33569:131;:::i;:::-;33561:139;;33288:419;;;:::o;33713:::-;33879:4;33917:2;33906:9;33902:18;33894:26;;33966:9;33960:4;33956:20;33952:1;33941:9;33937:17;33930:47;33994:131;34120:4;33994:131;:::i;:::-;33986:139;;33713:419;;;:::o;34138:::-;34304:4;34342:2;34331:9;34327:18;34319:26;;34391:9;34385:4;34381:20;34377:1;34366:9;34362:17;34355:47;34419:131;34545:4;34419:131;:::i;:::-;34411:139;;34138:419;;;:::o;34563:::-;34729:4;34767:2;34756:9;34752:18;34744:26;;34816:9;34810:4;34806:20;34802:1;34791:9;34787:17;34780:47;34844:131;34970:4;34844:131;:::i;:::-;34836:139;;34563:419;;;:::o;34988:::-;35154:4;35192:2;35181:9;35177:18;35169:26;;35241:9;35235:4;35231:20;35227:1;35216:9;35212:17;35205:47;35269:131;35395:4;35269:131;:::i;:::-;35261:139;;34988:419;;;:::o;35413:::-;35579:4;35617:2;35606:9;35602:18;35594:26;;35666:9;35660:4;35656:20;35652:1;35641:9;35637:17;35630:47;35694:131;35820:4;35694:131;:::i;:::-;35686:139;;35413:419;;;:::o;35838:::-;36004:4;36042:2;36031:9;36027:18;36019:26;;36091:9;36085:4;36081:20;36077:1;36066:9;36062:17;36055:47;36119:131;36245:4;36119:131;:::i;:::-;36111:139;;35838:419;;;:::o;36263:::-;36429:4;36467:2;36456:9;36452:18;36444:26;;36516:9;36510:4;36506:20;36502:1;36491:9;36487:17;36480:47;36544:131;36670:4;36544:131;:::i;:::-;36536:139;;36263:419;;;:::o;36688:::-;36854:4;36892:2;36881:9;36877:18;36869:26;;36941:9;36935:4;36931:20;36927:1;36916:9;36912:17;36905:47;36969:131;37095:4;36969:131;:::i;:::-;36961:139;;36688:419;;;:::o;37113:::-;37279:4;37317:2;37306:9;37302:18;37294:26;;37366:9;37360:4;37356:20;37352:1;37341:9;37337:17;37330:47;37394:131;37520:4;37394:131;:::i;:::-;37386:139;;37113:419;;;:::o;37538:::-;37704:4;37742:2;37731:9;37727:18;37719:26;;37791:9;37785:4;37781:20;37777:1;37766:9;37762:17;37755:47;37819:131;37945:4;37819:131;:::i;:::-;37811:139;;37538:419;;;:::o;37963:::-;38129:4;38167:2;38156:9;38152:18;38144:26;;38216:9;38210:4;38206:20;38202:1;38191:9;38187:17;38180:47;38244:131;38370:4;38244:131;:::i;:::-;38236:139;;37963:419;;;:::o;38388:::-;38554:4;38592:2;38581:9;38577:18;38569:26;;38641:9;38635:4;38631:20;38627:1;38616:9;38612:17;38605:47;38669:131;38795:4;38669:131;:::i;:::-;38661:139;;38388:419;;;:::o;38813:::-;38979:4;39017:2;39006:9;39002:18;38994:26;;39066:9;39060:4;39056:20;39052:1;39041:9;39037:17;39030:47;39094:131;39220:4;39094:131;:::i;:::-;39086:139;;38813:419;;;:::o;39238:::-;39404:4;39442:2;39431:9;39427:18;39419:26;;39491:9;39485:4;39481:20;39477:1;39466:9;39462:17;39455:47;39519:131;39645:4;39519:131;:::i;:::-;39511:139;;39238:419;;;:::o;39663:::-;39829:4;39867:2;39856:9;39852:18;39844:26;;39916:9;39910:4;39906:20;39902:1;39891:9;39887:17;39880:47;39944:131;40070:4;39944:131;:::i;:::-;39936:139;;39663:419;;;:::o;40088:::-;40254:4;40292:2;40281:9;40277:18;40269:26;;40341:9;40335:4;40331:20;40327:1;40316:9;40312:17;40305:47;40369:131;40495:4;40369:131;:::i;:::-;40361:139;;40088:419;;;:::o;40513:::-;40679:4;40717:2;40706:9;40702:18;40694:26;;40766:9;40760:4;40756:20;40752:1;40741:9;40737:17;40730:47;40794:131;40920:4;40794:131;:::i;:::-;40786:139;;40513:419;;;:::o;40938:::-;41104:4;41142:2;41131:9;41127:18;41119:26;;41191:9;41185:4;41181:20;41177:1;41166:9;41162:17;41155:47;41219:131;41345:4;41219:131;:::i;:::-;41211:139;;40938:419;;;:::o;41363:::-;41529:4;41567:2;41556:9;41552:18;41544:26;;41616:9;41610:4;41606:20;41602:1;41591:9;41587:17;41580:47;41644:131;41770:4;41644:131;:::i;:::-;41636:139;;41363:419;;;:::o;41788:222::-;41881:4;41919:2;41908:9;41904:18;41896:26;;41932:71;42000:1;41989:9;41985:17;41976:6;41932:71;:::i;:::-;41788:222;;;;:::o;42016:129::-;42050:6;42077:20;;:::i;:::-;42067:30;;42106:33;42134:4;42126:6;42106:33;:::i;:::-;42016:129;;;:::o;42151:75::-;42184:6;42217:2;42211:9;42201:19;;42151:75;:::o;42232:307::-;42293:4;42383:18;42375:6;42372:30;42369:56;;;42405:18;;:::i;:::-;42369:56;42443:29;42465:6;42443:29;:::i;:::-;42435:37;;42527:4;42521;42517:15;42509:23;;42232:307;;;:::o;42545:308::-;42607:4;42697:18;42689:6;42686:30;42683:56;;;42719:18;;:::i;:::-;42683:56;42757:29;42779:6;42757:29;:::i;:::-;42749:37;;42841:4;42835;42831:15;42823:23;;42545:308;;;:::o;42859:98::-;42910:6;42944:5;42938:12;42928:22;;42859:98;;;:::o;42963:99::-;43015:6;43049:5;43043:12;43033:22;;42963:99;;;:::o;43068:168::-;43151:11;43185:6;43180:3;43173:19;43225:4;43220:3;43216:14;43201:29;;43068:168;;;;:::o;43242:147::-;43343:11;43380:3;43365:18;;43242:147;;;;:::o;43395:169::-;43479:11;43513:6;43508:3;43501:19;43553:4;43548:3;43544:14;43529:29;;43395:169;;;;:::o;43570:148::-;43672:11;43709:3;43694:18;;43570:148;;;;:::o;43724:305::-;43764:3;43783:20;43801:1;43783:20;:::i;:::-;43778:25;;43817:20;43835:1;43817:20;:::i;:::-;43812:25;;43971:1;43903:66;43899:74;43896:1;43893:81;43890:107;;;43977:18;;:::i;:::-;43890:107;44021:1;44018;44014:9;44007:16;;43724:305;;;;:::o;44035:185::-;44075:1;44092:20;44110:1;44092:20;:::i;:::-;44087:25;;44126:20;44144:1;44126:20;:::i;:::-;44121:25;;44165:1;44155:35;;44170:18;;:::i;:::-;44155:35;44212:1;44209;44205:9;44200:14;;44035:185;;;;:::o;44226:348::-;44266:7;44289:20;44307:1;44289:20;:::i;:::-;44284:25;;44323:20;44341:1;44323:20;:::i;:::-;44318:25;;44511:1;44443:66;44439:74;44436:1;44433:81;44428:1;44421:9;44414:17;44410:105;44407:131;;;44518:18;;:::i;:::-;44407:131;44566:1;44563;44559:9;44548:20;;44226:348;;;;:::o;44580:191::-;44620:4;44640:20;44658:1;44640:20;:::i;:::-;44635:25;;44674:20;44692:1;44674:20;:::i;:::-;44669:25;;44713:1;44710;44707:8;44704:34;;;44718:18;;:::i;:::-;44704:34;44763:1;44760;44756:9;44748:17;;44580:191;;;;:::o;44777:96::-;44814:7;44843:24;44861:5;44843:24;:::i;:::-;44832:35;;44777:96;;;:::o;44879:90::-;44913:7;44956:5;44949:13;44942:21;44931:32;;44879:90;;;:::o;44975:77::-;45012:7;45041:5;45030:16;;44975:77;;;:::o;45058:149::-;45094:7;45134:66;45127:5;45123:78;45112:89;;45058:149;;;:::o;45213:126::-;45250:7;45290:42;45283:5;45279:54;45268:65;;45213:126;;;:::o;45345:77::-;45382:7;45411:5;45400:16;;45345:77;;;:::o;45428:86::-;45463:7;45503:4;45496:5;45492:16;45481:27;;45428:86;;;:::o;45520:154::-;45604:6;45599:3;45594;45581:30;45666:1;45657:6;45652:3;45648:16;45641:27;45520:154;;;:::o;45680:307::-;45748:1;45758:113;45772:6;45769:1;45766:13;45758:113;;;45857:1;45852:3;45848:11;45842:18;45838:1;45833:3;45829:11;45822:39;45794:2;45791:1;45787:10;45782:15;;45758:113;;;45889:6;45886:1;45883:13;45880:101;;;45969:1;45960:6;45955:3;45951:16;45944:27;45880:101;45729:258;45680:307;;;:::o;45993:320::-;46037:6;46074:1;46068:4;46064:12;46054:22;;46121:1;46115:4;46111:12;46142:18;46132:81;;46198:4;46190:6;46186:17;46176:27;;46132:81;46260:2;46252:6;46249:14;46229:18;46226:38;46223:84;;;46279:18;;:::i;:::-;46223:84;46044:269;45993:320;;;:::o;46319:281::-;46402:27;46424:4;46402:27;:::i;:::-;46394:6;46390:40;46532:6;46520:10;46517:22;46496:18;46484:10;46481:34;46478:62;46475:88;;;46543:18;;:::i;:::-;46475:88;46583:10;46579:2;46572:22;46362:238;46319:281;;:::o;46606:233::-;46645:3;46668:24;46686:5;46668:24;:::i;:::-;46659:33;;46714:66;46707:5;46704:77;46701:103;;;46784:18;;:::i;:::-;46701:103;46831:1;46824:5;46820:13;46813:20;;46606:233;;;:::o;46845:100::-;46884:7;46913:26;46933:5;46913:26;:::i;:::-;46902:37;;46845:100;;;:::o;46951:79::-;46990:7;47019:5;47008:16;;46951:79;;;:::o;47036:94::-;47075:7;47104:20;47118:5;47104:20;:::i;:::-;47093:31;;47036:94;;;:::o;47136:79::-;47175:7;47204:5;47193:16;;47136:79;;;:::o;47221:176::-;47253:1;47270:20;47288:1;47270:20;:::i;:::-;47265:25;;47304:20;47322:1;47304:20;:::i;:::-;47299:25;;47343:1;47333:35;;47348:18;;:::i;:::-;47333:35;47389:1;47386;47382:9;47377:14;;47221:176;;;;:::o;47403:180::-;47451:77;47448:1;47441:88;47548:4;47545:1;47538:15;47572:4;47569:1;47562:15;47589:180;47637:77;47634:1;47627:88;47734:4;47731:1;47724:15;47758:4;47755:1;47748:15;47775:180;47823:77;47820:1;47813:88;47920:4;47917:1;47910:15;47944:4;47941:1;47934:15;47961:180;48009:77;48006:1;47999:88;48106:4;48103:1;48096:15;48130:4;48127:1;48120:15;48147:180;48195:77;48192:1;48185:88;48292:4;48289:1;48282:15;48316:4;48313:1;48306:15;48333:117;48442:1;48439;48432:12;48456:117;48565:1;48562;48555:12;48579:117;48688:1;48685;48678:12;48702:117;48811:1;48808;48801:12;48825:117;48934:1;48931;48924:12;48948:117;49057:1;49054;49047:12;49071:102;49112:6;49163:2;49159:7;49154:2;49147:5;49143:14;49139:28;49129:38;;49071:102;;;:::o;49179:94::-;49212:8;49260:5;49256:2;49252:14;49231:35;;49179:94;;;:::o;49279:170::-;49419:22;49415:1;49407:6;49403:14;49396:46;49279:170;:::o;49455:176::-;49595:28;49591:1;49583:6;49579:14;49572:52;49455:176;:::o;49637:214::-;49777:66;49773:1;49765:6;49761:14;49754:90;49637:214;:::o;49857:165::-;49997:17;49993:1;49985:6;49981:14;49974:41;49857:165;:::o;50028:237::-;50168:34;50164:1;50156:6;50152:14;50145:58;50237:20;50232:2;50224:6;50220:15;50213:45;50028:237;:::o;50271:225::-;50411:34;50407:1;50399:6;50395:14;50388:58;50480:8;50475:2;50467:6;50463:15;50456:33;50271:225;:::o;50502:178::-;50642:30;50638:1;50630:6;50626:14;50619:54;50502:178;:::o;50686:223::-;50826:34;50822:1;50814:6;50810:14;50803:58;50895:6;50890:2;50882:6;50878:15;50871:31;50686:223;:::o;50915:175::-;51055:27;51051:1;51043:6;51039:14;51032:51;50915:175;:::o;51096:159::-;51236:11;51232:1;51224:6;51220:14;51213:35;51096:159;:::o;51261:231::-;51401:34;51397:1;51389:6;51385:14;51378:58;51470:14;51465:2;51457:6;51453:15;51446:39;51261:231;:::o;51498:168::-;51638:20;51634:1;51626:6;51622:14;51615:44;51498:168;:::o;51672:166::-;51812:18;51808:1;51800:6;51796:14;51789:42;51672:166;:::o;51844:243::-;51984:34;51980:1;51972:6;51968:14;51961:58;52053:26;52048:2;52040:6;52036:15;52029:51;51844:243;:::o;52093:168::-;52233:20;52229:1;52221:6;52217:14;52210:44;52093:168;:::o;52267:229::-;52407:34;52403:1;52395:6;52391:14;52384:58;52476:12;52471:2;52463:6;52459:15;52452:37;52267:229;:::o;52502:228::-;52642:34;52638:1;52630:6;52626:14;52619:58;52711:11;52706:2;52698:6;52694:15;52687:36;52502:228;:::o;52736:233::-;52876:34;52872:1;52864:6;52860:14;52853:58;52945:16;52940:2;52932:6;52928:15;52921:41;52736:233;:::o;52975:182::-;53115:34;53111:1;53103:6;53099:14;53092:58;52975:182;:::o;53163:236::-;53303:34;53299:1;53291:6;53287:14;53280:58;53372:19;53367:2;53359:6;53355:15;53348:44;53163:236;:::o;53405:231::-;53545:34;53541:1;53533:6;53529:14;53522:58;53614:14;53609:2;53601:6;53597:15;53590:39;53405:231;:::o;53642:155::-;53782:7;53778:1;53770:6;53766:14;53759:31;53642:155;:::o;53803:220::-;53943:34;53939:1;53931:6;53927:14;53920:58;54012:3;54007:2;53999:6;53995:15;53988:28;53803:220;:::o;54029:182::-;54169:34;54165:1;54157:6;54153:14;54146:58;54029:182;:::o;54217:228::-;54357:34;54353:1;54345:6;54341:14;54334:58;54426:11;54421:2;54413:6;54409:15;54402:36;54217:228;:::o;54451:234::-;54591:34;54587:1;54579:6;54575:14;54568:58;54660:17;54655:2;54647:6;54643:15;54636:42;54451:234;:::o;54691:160::-;54831:12;54827:1;54819:6;54815:14;54808:36;54691:160;:::o;54857:220::-;54997:34;54993:1;54985:6;54981:14;54974:58;55066:3;55061:2;55053:6;55049:15;55042:28;54857:220;:::o;55083:167::-;55223:19;55219:1;55211:6;55207:14;55200:43;55083:167;:::o;55256:225::-;55396:34;55392:1;55384:6;55380:14;55373:58;55465:8;55460:2;55452:6;55448:15;55441:33;55256:225;:::o;55487:174::-;55627:26;55623:1;55615:6;55611:14;55604:50;55487:174;:::o;55667:114::-;;:::o;55787:166::-;55927:18;55923:1;55915:6;55911:14;55904:42;55787:166;:::o;55959:236::-;56099:34;56095:1;56087:6;56083:14;56076:58;56168:19;56163:2;56155:6;56151:15;56144:44;55959:236;:::o;56201:122::-;56274:24;56292:5;56274:24;:::i;:::-;56267:5;56264:35;56254:63;;56313:1;56310;56303:12;56254:63;56201:122;:::o;56329:116::-;56399:21;56414:5;56399:21;:::i;:::-;56392:5;56389:32;56379:60;;56435:1;56432;56425:12;56379:60;56329:116;:::o;56451:120::-;56523:23;56540:5;56523:23;:::i;:::-;56516:5;56513:34;56503:62;;56561:1;56558;56551:12;56503:62;56451:120;:::o;56577:122::-;56650:24;56668:5;56650:24;:::i;:::-;56643:5;56640:35;56630:63;;56689:1;56686;56679:12;56630:63;56577:122;:::o

Swarm Source

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