ETH Price: $3,488.50 (+2.04%)
Gas: 12 Gwei

Token

The Moon Boyz (MOONBOYZ)
 

Overview

Max Total Supply

11,110 MOONBOYZ

Holders

3,683

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MOONBOYZ
0x8d74e65e67766a1edb774e86f3f3ab76957021df
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Moon Boyz is a collection of 11,111 unique ERC-721 tokens living on the Ethereum Blockchain. Unique and 3D designed, each NFT comes with a full membership to an ever-growing community and awesome utilities.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TheMoonBoyz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 2 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 3 of 16 : IERC165.sol
// SPDX-License-Identifier: MIT

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 4 of 16 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 5 of 16 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Address.sol";
import "./Context.sol";

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

    uint256 private _totalShares;
    uint256 private _totalReleased;

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

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

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

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

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

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

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

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

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

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

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

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

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

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

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

File 6 of 16 : Address.sol
// SPDX-License-Identifier: MIT

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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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 7 of 16 : Context.sol
// SPDX-License-Identifier: MIT

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 8 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 9 of 16 : Counters.sol
// SPDX-License-Identifier: MIT

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 10 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @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 11 of 16 : SafeMath.sol
// SPDX-License-Identifier: MIT

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 12 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @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(to).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 13 of 16 : Strings.sol
// SPDX-License-Identifier: MIT

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 14 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 15 of 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 16 of 16 : MOONBOYZCONTRACT.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.7;

import "./ERC721.sol";
import "./Ownable.sol";
import "./Address.sol";
import "./SafeMath.sol";
import "./Counters.sol";
import "./PaymentSplitter.sol";
interface OldContract {
    function viewWhitelistOneStatus(address _user) external view returns(bool);
    function totalAvailableForUser(address _user) external view returns(uint);
    //WHITELISTS
    function whiteListOne(uint) external view returns (address);
    function whiteListTwo(uint) external view returns (address);
    function whiteListThree(uint) external view returns (address);
    function whiteListFour(uint) external view returns (address);
    function whiteListFive(uint) external view returns (address);
    function whiteListSix(uint) external view returns (address);
    function whiteListSeven(uint) external view returns (address);
    function whiteListEight(uint) external view returns (address);
    function whiteListNine(uint) external view returns (address);
    function whiteListTen(uint) external view returns (address);
    function whiteListEleven(uint) external view returns (address);
    //CURRENT OWNERS OF MOONBOYZ
    function totalSupply() external view returns(uint);
    function ownerOf(uint) external view returns(address);
    function balanceOf(address) external view returns(uint);
}

contract TheMoonBoyz is ERC721, Ownable, PaymentSplitter {
    using SafeMath for uint256;
    using Counters for Counters.Counter;
    using Address for address;
    
    Counters.Counter private _tokenIdCounter;
    
    uint256 public maxMoonBoyzSupply = 11111;
    
    bool public claimableSale = false;
    bool public regularSale = false;
    
    bool private revealed = false;
    
    address[] private _team = [
        0x700eec4D6Ed56ED0F97a0f43Fc9DF5B426Ba25Fc, 
        0xDFf1889Ec0F09d14dE9379938bDc3Df0c6D0B39C, 
        0x4c2a5a4ea0d3f7E9142535f260A05b975Ee1df02, 
        0xDbe3BfBEc8332b0835bf0f466bA34c64655Ba94D, 
        0x9389D778c5Fc4978d1dF24e1084e6853d3407863 
        ];
    
    uint256[] private _teamShares = [
        25,
        24,
        25,
        24,
        2
        ];
    
    uint public mintPrice;
    OldContract private oldContract;
    
    mapping (uint256 => string) private _tokenURIs;
    string public baseURI;
    
    mapping(address => uint256) public totalClaimable;
    mapping(address => uint256) public totalClaimed;
    address[] public claimers;
    
    uint private iOwner = 1;
    uint public maxPerTransaction = 10;
    
    constructor(uint _mintPrice, address _oldContract) ERC721("The Moon Boyz", "MOONBOYZ") PaymentSplitter(_team, _teamShares) {
        //SET MINT PRICE
        mintPrice = _mintPrice;
        //GET OLD CONTRACT
        oldContract = OldContract(_oldContract);
    }
    
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        
        string memory base = _baseURI();
        if(!revealed){
            return bytes(base).length > 0 ? string(abi.encodePacked(base)) : "";
        }
        return bytes(base).length > 0 ? string(abi.encodePacked(base, uint2str(tokenId))) : "";
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    
    function _setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }
    
  	function setTotalSupply(uint _totalSupply) public onlyOwner{
  	    maxMoonBoyzSupply = _totalSupply;
  	}
  	
    function claim(uint _claimCount) public payable {
        require(claimableSale == true, "Claiming Not Active");
        uint sent = msg.value;
        require(sent == mintPrice * _claimCount, "Did not send required eth");
        require(_claimCount > 0 && _claimCount <= totalClaimable[msg.sender], "You are not eligible to claim this many tokens");
        //ADD USER TO ARRAY
        claimers.push(msg.sender);
        //ADD USER CLAIMED
        totalClaimed[msg.sender] += _claimCount;
        //REDUCE USER CLAIMABLE
        totalClaimable[msg.sender] -= _claimCount;
    }
    
    function airdrop(uint _from, uint _to) public onlyOwner {
        for(uint i = _from; i < _to && i < claimers.length; i++){
            require(_tokenIdCounter.current() < maxMoonBoyzSupply, "At Max Supply");
            
            for(uint j = 0; j < totalClaimed[claimers[i]]; j++){
                uint256 _tokenID = _tokenIdCounter.current();
                
                //REQUIRE TOKEN DOESNT EXIST
                require(!super._exists(_tokenID), "Token ID Exists");
                
                //MINT TO CLAIMERS ADDRESS
                _safeMint(claimers[i], _tokenID);
                _tokenIdCounter.increment();
            }
            totalClaimed[claimers[i]] = 0;
        }
    }
    
    function regularSaleMint(uint _count) public payable {
        require(regularSale == true, "Normal Sale Not Active");
        require(_count <= maxPerTransaction, "Over maxPerTransaction");
        require(msg.value == mintPrice * _count, "Insuffcient Amount Sent");
        
        require(_tokenIdCounter.current() < maxMoonBoyzSupply, "At Max Supply");
        
        
        for(uint i = 0; i < _count; i++){
            uint256 _tokenID = _tokenIdCounter.current();
            require(!super._exists(_tokenID), "Token ID Exists");
            _safeMint(msg.sender, _tokenID);
            _tokenIdCounter.increment();
        }
    }
    function ownerMint(uint _count)public onlyOwner {
        require(_tokenIdCounter.current() + _count < maxMoonBoyzSupply, "TOO MANY MOON BOYZ");
        for(uint i = 0; i < _count; i++){
            uint256 _tokenID = _tokenIdCounter.current();
            require(!super._exists(_tokenID), "Token ID Exists");
            require(_tokenIdCounter.current() < maxMoonBoyzSupply, "At Max Supply");
            _safeMint(msg.sender, _tokenID);
            _tokenIdCounter.increment();
        }
    }
    function whitelistFunctions(uint iFunc, uint i) private view returns(address explicit){
        if(iFunc==0){
            try oldContract.whiteListOne(i) returns (address _address) {
                return(_address);
            } catch {
                return(address(0));
            }
        }
        else if(iFunc==1){
            try oldContract.whiteListTwo(i) returns (address _address) {
                return(_address);
            } catch {
                return(address(0));
            }
        } 
        else if (iFunc==2){
            try oldContract.whiteListThree(i) returns (address _address) {
                return(_address);
            } catch {
                return(address(0));
            }
        
        }
        else if(iFunc==3){
            try oldContract.whiteListFour(i)returns (address _address) {
                return(_address);
            } catch {
                return(address(0));
            }
        } 
        else if(iFunc==4){
            try oldContract.whiteListFive(i)returns (address _address) {
                return(_address);
            } catch {
                return(address(0));
            }
        } 
        else if (iFunc==5){
            try oldContract.whiteListSix(i)returns (address _address) {
                return(_address);
            } catch {
                return(address(0));
            }
        }
        else if(iFunc==6){
            try oldContract.whiteListSeven(i)returns (address _address) {
                return(_address);
            } catch {
                return(address(0));
            }
        }
        else if(iFunc==7){
            try oldContract.whiteListEight(i)returns (address _address) {
                return(_address);
            } catch {
                return(address(0));
            }
        } 
        else if(iFunc==8){
            try oldContract.whiteListNine(i)returns (address _address) {
                return(_address);
            } catch {
                return(address(0));
            }
        } 
        else if (iFunc==9){
            try oldContract.whiteListTen(i)returns (address _address) {
                return(_address);
            } catch {
                return(address(0));
            }
        }
        else if(iFunc==10){
            try oldContract.whiteListEleven(i)returns (address _address) {
                return(_address);
            } catch {
                return(address(0));
            }
        } 
        
    }
    
    
    function pullWhitelist(uint _from, uint _to) public onlyOwner
    {
        for(uint f = _from; f < _to; f++){
            bool tmp = false;
            for(uint i = 0; !tmp; i++){
                address tmpAddress = whitelistFunctions(f,i);
                if(tmpAddress != address(0)){
                    if(totalClaimable[tmpAddress] <= 0){
                        totalClaimable[tmpAddress] += oldContract.totalAvailableForUser(tmpAddress);
                    }
                } else {
                    tmp = true;
                }
            }
        }
    }
    
    function pullCurrentOwners(uint _to) public onlyOwner {
        uint oldTotalSupply = oldContract.totalSupply();
        if(_to > iOwner){
            for(uint i = iOwner; i <= oldTotalSupply && i < _to; i++){
                iOwner += 1;
                try oldContract.ownerOf(i) returns (address _address) {
                    if(_address != address(0)){
                        claimers.push(_address);
                        totalClaimed[_address] += 1;
                    }
                } catch {
                }
            }
        }
    }
    function totalSupply() external view returns (uint256) {
        return _tokenIdCounter.current();
    }
    
    function flipClaimableSale() public onlyOwner {
        claimableSale = !claimableSale;
    }
    
    function flipRevealed() public onlyOwner {
        revealed = !revealed;
    }
    
    function flipRegularSale() public onlyOwner {
        regularSale = !regularSale;
    }
    
    
    function setMintPrice(uint256 _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
    }
    
    function withdrawAll() external onlyOwner {
        for (uint256 i = 0; i < _team.length; i++) {
            address payable wallet = payable(_team[i]);
            release(wallet);
        }
    }
    
    function getClaimers() public view returns(address[] memory){
        return claimers;
    }
    function uint2str(uint _i) private pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }
}

Settings
{
  "metadata": {
    "useLiteralContent": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"address","name":"_oldContract","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"_setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_claimCount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimableSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimers","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipClaimableSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipRegularSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMoonBoyzSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"pullCurrentOwners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"pullWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"regularSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"regularSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052612b67600d556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506000600e60026101000a81548160ff0219169083151502179055506040518060a0016040528073700eec4d6ed56ed0f97a0f43fc9df5b426ba25fc73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173dff1889ec0f09d14de9379938bdc3df0c6d0b39c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001734c2a5a4ea0d3f7e9142535f260a05b975ee1df0273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173dbe3bfbec8332b0835bf0f466ba34c64655ba94d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001739389d778c5fc4978d1df24e1084e6853d340786373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250600f906005620001d492919062000854565b506040518060a00160405280601960ff168152602001601860ff168152602001601960ff168152602001601860ff168152602001600260ff16815250601090600562000222929190620008e3565b506001601855600a6019553480156200023a57600080fd5b5060405162006ef538038062006ef5833981810160405281019062000260919062000a18565b600f805480602002602001604051908101604052809291908181526020018280548015620002e457602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831162000299575b505050505060108054806020026020016040519081016040528092919081815260200182805480156200033757602002820191906000526020600020905b81548152602001906001019080831162000322575b50505050506040518060400160405280600d81526020017f546865204d6f6f6e20426f797a000000000000000000000000000000000000008152506040518060400160405280600881526020017f4d4f4f4e424f595a0000000000000000000000000000000000000000000000008152508160009080519060200190620003c09291906200093a565b508060019080519060200190620003d99291906200093a565b505050620003fc620003f06200054c60201b60201c565b6200055460201b60201c565b805182511462000443576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043a9062000b93565b60405180910390fd5b60008251116200048a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004819062000bd7565b60405180910390fd5b60005b8251811015620004f957620004e3838281518110620004b157620004b062000da9565b5b6020026020010151838381518110620004cf57620004ce62000da9565b5b60200260200101516200061a60201b60201c565b8080620004f09062000cfd565b9150506200048d565b5050508160118190555080601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000f50565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200068d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006849062000b71565b60405180910390fd5b60008111620006d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ca9062000bf9565b60405180910390fd5b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000758576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200074f9062000bb5565b60405180910390fd5b600b829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806007546200080f919062000c2c565b6007819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac82826040516200084892919062000b44565b60405180910390a15050565b828054828255906000526020600020908101928215620008d0579160200282015b82811115620008cf5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000875565b5b509050620008df9190620009cb565b5090565b82805482825590600052602060002090810192821562000927579160200282015b8281111562000926578251829060ff1690559160200191906001019062000904565b5b509050620009369190620009cb565b5090565b828054620009489062000cc7565b90600052602060002090601f0160209004810192826200096c5760008555620009b8565b82601f106200098757805160ff1916838001178555620009b8565b82800160010185558215620009b8579182015b82811115620009b75782518255916020019190600101906200099a565b5b509050620009c79190620009cb565b5090565b5b80821115620009e6576000816000905550600101620009cc565b5090565b600081519050620009fb8162000f1c565b92915050565b60008151905062000a128162000f36565b92915050565b6000806040838503121562000a325762000a3162000dd8565b5b600062000a428582860162000a01565b925050602062000a5585828601620009ea565b9150509250929050565b62000a6a8162000c89565b82525050565b600062000a7f602c8362000c1b565b915062000a8c8262000ddd565b604082019050919050565b600062000aa660328362000c1b565b915062000ab38262000e2c565b604082019050919050565b600062000acd602b8362000c1b565b915062000ada8262000e7b565b604082019050919050565b600062000af4601a8362000c1b565b915062000b018262000eca565b602082019050919050565b600062000b1b601d8362000c1b565b915062000b288262000ef3565b602082019050919050565b62000b3e8162000cbd565b82525050565b600060408201905062000b5b600083018562000a5f565b62000b6a602083018462000b33565b9392505050565b6000602082019050818103600083015262000b8c8162000a70565b9050919050565b6000602082019050818103600083015262000bae8162000a97565b9050919050565b6000602082019050818103600083015262000bd08162000abe565b9050919050565b6000602082019050818103600083015262000bf28162000ae5565b9050919050565b6000602082019050818103600083015262000c148162000b0c565b9050919050565b600082825260208201905092915050565b600062000c398262000cbd565b915062000c468362000cbd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c7e5762000c7d62000d4b565b5b828201905092915050565b600062000c968262000c9d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000ce057607f821691505b6020821081141562000cf75762000cf662000d7a565b5b50919050565b600062000d0a8262000cbd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000d405762000d3f62000d4b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b62000f278162000c89565b811462000f3357600080fd5b50565b62000f418162000cbd565b811462000f4d57600080fd5b50565b615f958062000f606000396000f3fe6080604052600436106102815760003560e01c8063802e73f11161014f578063c87b56dd116100c1578063ef5d9ae81161007a578063ef5d9ae8146109c4578063f19e75d414610a01578063f2fde38b14610a2a578063f4a0a52814610a53578063f7ea7a3d14610a7c578063fa956ad214610aa5576102c8565b8063c87b56dd1461088e578063ce7c2ac2146108cb578063d59563ba14610908578063e33b7de314610933578063e7b431b21461095e578063e985e9c514610987576102c8565b806395d89b411161011357806395d89b41146107805780639852595c146107ab57806399ae559d146107e8578063a040006614610825578063a22cb4651461083c578063b88d4fde14610865576102c8565b8063802e73f1146106ab578063853828b6146106d65780638b83209b146106ed5780638da5cb5b1461072a57806395ab5aa514610755576102c8565b8063379607f5116101f35780636352211e116101ac5780636352211e1461059b5780636817c76c146105d85780636c0360eb146106035780636f243a9c1461062e57806370a0823114610657578063715018a614610694576102c8565b8063379607f5146104be5780633a98ef39146104da5780633b2c3fb61461050557806342842e0e1461051c5780634b980d671461054557806352b2710c14610570576102c8565b806318160ddd1161024557806318160ddd146103c457806319165587146103ef5780631dfce5c61461041857806323b872dd14610455578063306242331461047e57806331b5b90714610495576102c8565b806301ffc9a7146102cd57806306fdde031461030a578063081812fc14610335578063095ea7b314610372578063147792261461039b576102c8565b366102c8577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102af610ac1565b346040516102be929190614e80565b60405180910390a1005b600080fd5b3480156102d957600080fd5b506102f460048036038101906102ef91906146e5565b610ac9565b6040516103019190614ecb565b60405180910390f35b34801561031657600080fd5b5061031f610bab565b60405161032c9190614ee6565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190614788565b610c3d565b6040516103699190614df0565b60405180910390f35b34801561037e57600080fd5b50610399600480360381019061039491906146a5565b610cc2565b005b3480156103a757600080fd5b506103c260048036038101906103bd9190614788565b610dda565b005b3480156103d057600080fd5b506103d96110f1565b6040516103e691906152a8565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190614522565b611102565b005b34801561042457600080fd5b5061043f600480360381019061043a91906144c8565b61136a565b60405161044c91906152a8565b60405180910390f35b34801561046157600080fd5b5061047c6004803603810190610477919061458f565b611382565b005b34801561048a57600080fd5b506104936113e2565b005b3480156104a157600080fd5b506104bc60048036038101906104b7919061473f565b61148a565b005b6104d860048036038101906104d39190614788565b611520565b005b3480156104e657600080fd5b506104ef61176b565b6040516104fc91906152a8565b60405180910390f35b34801561051157600080fd5b5061051a611775565b005b34801561052857600080fd5b50610543600480360381019061053e919061458f565b61181d565b005b34801561055157600080fd5b5061055a61183d565b60405161056791906152a8565b60405180910390f35b34801561057c57600080fd5b50610585611843565b6040516105929190614ea9565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190614788565b6118d1565b6040516105cf9190614df0565b60405180910390f35b3480156105e457600080fd5b506105ed611983565b6040516105fa91906152a8565b60405180910390f35b34801561060f57600080fd5b50610618611989565b6040516106259190614ee6565b60405180910390f35b34801561063a57600080fd5b50610655600480360381019061065091906147e2565b611a17565b005b34801561066357600080fd5b5061067e600480360381019061067991906144c8565b611cdf565b60405161068b91906152a8565b60405180910390f35b3480156106a057600080fd5b506106a9611d97565b005b3480156106b757600080fd5b506106c0611e1f565b6040516106cd91906152a8565b60405180910390f35b3480156106e257600080fd5b506106eb611e25565b005b3480156106f957600080fd5b50610714600480360381019061070f9190614788565b611f14565b6040516107219190614df0565b60405180910390f35b34801561073657600080fd5b5061073f611f5c565b60405161074c9190614df0565b60405180910390f35b34801561076157600080fd5b5061076a611f86565b6040516107779190614ecb565b60405180910390f35b34801561078c57600080fd5b50610795611f99565b6040516107a29190614ee6565b60405180910390f35b3480156107b757600080fd5b506107d260048036038101906107cd91906144c8565b61202b565b6040516107df91906152a8565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190614788565b612074565b60405161081c9190614df0565b60405180910390f35b34801561083157600080fd5b5061083a6120b3565b005b34801561084857600080fd5b50610863600480360381019061085e9190614665565b61215b565b005b34801561087157600080fd5b5061088c600480360381019061088791906145e2565b6122dc565b005b34801561089a57600080fd5b506108b560048036038101906108b09190614788565b61233e565b6040516108c29190614ee6565b60405180910390f35b3480156108d757600080fd5b506108f260048036038101906108ed91906144c8565b612441565b6040516108ff91906152a8565b60405180910390f35b34801561091457600080fd5b5061091d61248a565b60405161092a9190614ecb565b60405180910390f35b34801561093f57600080fd5b5061094861249d565b60405161095591906152a8565b60405180910390f35b34801561096a57600080fd5b50610985600480360381019061098091906147e2565b6124a7565b005b34801561099357600080fd5b506109ae60048036038101906109a9919061454f565b6126fc565b6040516109bb9190614ecb565b60405180910390f35b3480156109d057600080fd5b506109eb60048036038101906109e691906144c8565b612790565b6040516109f891906152a8565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614788565b6127a8565b005b348015610a3657600080fd5b50610a516004803603810190610a4c91906144c8565b612957565b005b348015610a5f57600080fd5b50610a7a6004803603810190610a759190614788565b612a4f565b005b348015610a8857600080fd5b50610aa36004803603810190610a9e9190614788565b612ad5565b005b610abf6004803603810190610aba9190614788565b612b5b565b005b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b9457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ba45750610ba382612d20565b5b9050919050565b606060008054610bba90615628565b80601f0160208091040260200160405190810160405280929190818152602001828054610be690615628565b8015610c335780601f10610c0857610100808354040283529160200191610c33565b820191906000526020600020905b815481529060010190602001808311610c1657829003601f168201915b5050505050905090565b6000610c4882612d8a565b610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e90615128565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ccd826118d1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3590615208565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d5d610ac1565b73ffffffffffffffffffffffffffffffffffffffff161480610d8c5750610d8b81610d86610ac1565b6126fc565b5b610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290615088565b60405180910390fd5b610dd58383612df6565b505050565b610de2610ac1565b73ffffffffffffffffffffffffffffffffffffffff16610e00611f5c565b73ffffffffffffffffffffffffffffffffffffffff1614610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90615148565b60405180910390fd5b6000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ec057600080fd5b505afa158015610ed4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef891906147b5565b90506018548211156110ed57600060185490505b818111158015610f1b57508281105b156110eb57600160186000828254610f3391906153d1565b92505081905550601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b8152600401610f9591906152a8565b60206040518083038186803b158015610fad57600080fd5b505afa925050508015610fde57506040513d601f19601f82011682018060405250810190610fdb91906144f5565b60015b610fe7576110d8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110d6576017819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110ce91906153d1565b925050819055505b505b80806110e39061568b565b915050610f0c565b505b5050565b60006110fd600c612eaf565b905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b90614f88565b60405180910390fd5b60006008544761119491906153d1565b90506000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600754600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484611226919061548f565b611230919061545e565b61123a91906154e9565b90506000811415611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790615048565b60405180910390fd5b80600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112cb91906153d1565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508060085461131c91906153d1565b60088190555061132c8382612ebd565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056838260405161135d929190614e0b565b60405180910390a1505050565b60156020528060005260406000206000915090505481565b61139361138d610ac1565b82612fb1565b6113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c990615248565b60405180910390fd5b6113dd83838361308f565b505050565b6113ea610ac1565b73ffffffffffffffffffffffffffffffffffffffff16611408611f5c565b73ffffffffffffffffffffffffffffffffffffffff161461145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590615148565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b611492610ac1565b73ffffffffffffffffffffffffffffffffffffffff166114b0611f5c565b73ffffffffffffffffffffffffffffffffffffffff1614611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90615148565b60405180910390fd5b806014908051906020019061151c92919061429d565b5050565b60011515600e60009054906101000a900460ff16151514611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d906151a8565b60405180910390fd5b600034905081601154611589919061548f565b81146115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190615068565b60405180910390fd5b6000821180156116195750601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211155b611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90614f08565b60405180910390fd5b6017339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461170a91906153d1565b9250508190555081601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461176091906154e9565b925050819055505050565b6000600754905090565b61177d610ac1565b73ffffffffffffffffffffffffffffffffffffffff1661179b611f5c565b73ffffffffffffffffffffffffffffffffffffffff16146117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890615148565b60405180910390fd5b600e60029054906101000a900460ff1615600e60026101000a81548160ff021916908315150217905550565b611838838383604051806020016040528060008152506122dc565b505050565b60195481565b606060178054806020026020016040519081016040528092919081815260200182805480156118c757602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831161187d575b5050505050905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611971906150c8565b60405180910390fd5b80915050919050565b60115481565b6014805461199690615628565b80601f01602080910402602001604051908101604052809291908181526020018280546119c290615628565b8015611a0f5780601f106119e457610100808354040283529160200191611a0f565b820191906000526020600020905b8154815290600101906020018083116119f257829003601f168201915b505050505081565b611a1f610ac1565b73ffffffffffffffffffffffffffffffffffffffff16611a3d611f5c565b73ffffffffffffffffffffffffffffffffffffffff1614611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a90615148565b60405180910390fd5b60008290505b8181108015611aac575060178054905081105b15611cda57600d54611abe600c612eaf565b10611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af590615268565b60405180910390fd5b60005b6016600060178481548110611b1957611b18615761565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811015611c43576000611b92600c612eaf565b9050611b9d81612d8a565b15611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490615168565b60405180910390fd5b611c2560178481548110611bf457611bf3615761565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826132eb565b611c2f600c613309565b508080611c3b9061568b565b915050611b01565b5060006016600060178481548110611c5e57611c5d615761565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611cd29061568b565b915050611a99565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d47906150a8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611d9f610ac1565b73ffffffffffffffffffffffffffffffffffffffff16611dbd611f5c565b73ffffffffffffffffffffffffffffffffffffffff1614611e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0a90615148565b60405180910390fd5b611e1d600061331f565b565b600d5481565b611e2d610ac1565b73ffffffffffffffffffffffffffffffffffffffff16611e4b611f5c565b73ffffffffffffffffffffffffffffffffffffffff1614611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890615148565b60405180910390fd5b60005b600f80549050811015611f11576000600f8281548110611ec757611ec6615761565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050611efd81611102565b508080611f099061568b565b915050611ea4565b50565b6000600b8281548110611f2a57611f29615761565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e60019054906101000a900460ff1681565b606060018054611fa890615628565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd490615628565b80156120215780601f10611ff657610100808354040283529160200191612021565b820191906000526020600020905b81548152906001019060200180831161200457829003601f168201915b5050505050905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6017818154811061208457600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6120bb610ac1565b73ffffffffffffffffffffffffffffffffffffffff166120d9611f5c565b73ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212690615148565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b612163610ac1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c890614fc8565b60405180910390fd5b80600560006121de610ac1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661228b610ac1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122d09190614ecb565b60405180910390a35050565b6122ed6122e7610ac1565b83612fb1565b61232c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232390615248565b60405180910390fd5b612338848484846133e5565b50505050565b606061234982612d8a565b612388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237f906151c8565b60405180910390fd5b6000612392613441565b9050600e60029054906101000a900460ff166123ef5760008151116123c657604051806020016040528060008152506123e7565b806040516020016123d79190614da0565b6040516020818303038152906040525b91505061243c565b600081511161240d5760405180602001604052806000815250612438565b80612417846134d3565b604051602001612428929190614db7565b6040516020818303038152906040525b9150505b919050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e60009054906101000a900460ff1681565b6000600854905090565b6124af610ac1565b73ffffffffffffffffffffffffffffffffffffffff166124cd611f5c565b73ffffffffffffffffffffffffffffffffffffffff1614612523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251a90615148565b60405180910390fd5b60008290505b818110156126f7576000805b816126e2576000612546848361365c565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146126c9576000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116126c457601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166367aedf71826040518263ffffffff1660e01b815260040161261e9190614df0565b60206040518083038186803b15801561263657600080fd5b505afa15801561264a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061266e91906147b5565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126bc91906153d1565b925050819055505b6126ce565b600192505b5080806126da9061568b565b915050612535565b505080806126ef9061568b565b915050612529565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60166020528060005260406000206000915090505481565b6127b0610ac1565b73ffffffffffffffffffffffffffffffffffffffff166127ce611f5c565b73ffffffffffffffffffffffffffffffffffffffff1614612824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281b90615148565b60405180910390fd5b600d5481612832600c612eaf565b61283c91906153d1565b1061287c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287390615108565b60405180910390fd5b60005b81811015612953576000612893600c612eaf565b905061289e81612d8a565b156128de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d590615168565b60405180910390fd5b600d546128eb600c612eaf565b1061292b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292290615268565b60405180910390fd5b61293533826132eb565b61293f600c613309565b50808061294b9061568b565b91505061287f565b5050565b61295f610ac1565b73ffffffffffffffffffffffffffffffffffffffff1661297d611f5c565b73ffffffffffffffffffffffffffffffffffffffff16146129d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ca90615148565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3a90614f48565b60405180910390fd5b612a4c8161331f565b50565b612a57610ac1565b73ffffffffffffffffffffffffffffffffffffffff16612a75611f5c565b73ffffffffffffffffffffffffffffffffffffffff1614612acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac290615148565b60405180910390fd5b8060118190555050565b612add610ac1565b73ffffffffffffffffffffffffffffffffffffffff16612afb611f5c565b73ffffffffffffffffffffffffffffffffffffffff1614612b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4890615148565b60405180910390fd5b80600d8190555050565b60011515600e60019054906101000a900460ff16151514612bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba890615228565b60405180910390fd5b601954811115612bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bed906151e8565b60405180910390fd5b80601154612c04919061548f565b3414612c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3c90615288565b60405180910390fd5b600d54612c52600c612eaf565b10612c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8990615268565b60405180910390fd5b60005b81811015612d1c576000612ca9600c612eaf565b9050612cb481612d8a565b15612cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ceb90615168565b60405180910390fd5b612cfe33826132eb565b612d08600c613309565b508080612d149061568b565b915050612c95565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e69836118d1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b80471015612f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef790615008565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612f2690614ddb565b60006040518083038185875af1925050503d8060008114612f63576040519150601f19603f3d011682016040523d82523d6000602084013e612f68565b606091505b5050905080612fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa390614fe8565b60405180910390fd5b505050565b6000612fbc82612d8a565b612ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff290615028565b60405180910390fd5b6000613006836118d1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061307557508373ffffffffffffffffffffffffffffffffffffffff1661305d84610c3d565b73ffffffffffffffffffffffffffffffffffffffff16145b80613086575061308581856126fc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166130af826118d1565b73ffffffffffffffffffffffffffffffffffffffff1614613105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fc90615188565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316c90614fa8565b60405180910390fd5b613180838383613ec5565b61318b600082612df6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131db91906154e9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461323291906153d1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b613305828260405180602001604052806000815250613eca565b5050565b6001816000016000828254019250508190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6133f084848461308f565b6133fc84848484613f25565b61343b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343290614f28565b60405180910390fd5b50505050565b60606014805461345090615628565b80601f016020809104026020016040519081016040528092919081815260200182805461347c90615628565b80156134c95780601f1061349e576101008083540402835291602001916134c9565b820191906000526020600020905b8154815290600101906020018083116134ac57829003601f168201915b5050505050905090565b6060600082141561351b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613657565b600082905060005b6000821461354d5780806135369061568b565b915050600a82613546919061545e565b9150613523565b60008167ffffffffffffffff81111561356957613568615790565b5b6040519080825280601f01601f19166020018201604052801561359b5781602001600182028036833780820191505090505b50905060008290505b6000861461364f576001816135b991906154e9565b90506000600a80886135cb919061545e565b6135d5919061548f565b876135e091906154e9565b60306135ec9190615427565b905060008160f81b90508084848151811061360a57613609615761565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88613646919061545e565b975050506135a4565b819450505050505b919050565b60008083141561372057601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a2c4b7a7836040518263ffffffff1660e01b81526004016136c191906152a8565b60206040518083038186803b1580156136d957600080fd5b505afa92505050801561370a57506040513d601f19601f8201168201806040525081019061370791906144f5565b60015b6137175760009050613ebf565b80915050613ebf565b60018314156137e357601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e3a51dcd836040518263ffffffff1660e01b815260040161378491906152a8565b60206040518083038186803b15801561379c57600080fd5b505afa9250505080156137cd57506040513d601f19601f820116820180604052508101906137ca91906144f5565b60015b6137da5760009050613ebf565b80915050613ebf565b60028314156138a657601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f6da2fb0836040518263ffffffff1660e01b815260040161384791906152a8565b60206040518083038186803b15801561385f57600080fd5b505afa92505050801561389057506040513d601f19601f8201168201806040525081019061388d91906144f5565b60015b61389d5760009050613ebf565b80915050613ebf565b600383141561396957601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d17a15d1836040518263ffffffff1660e01b815260040161390a91906152a8565b60206040518083038186803b15801561392257600080fd5b505afa92505050801561395357506040513d601f19601f8201168201806040525081019061395091906144f5565b60015b6139605760009050613ebf565b80915050613ebf565b6004831415613a2c57601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632c507190836040518263ffffffff1660e01b81526004016139cd91906152a8565b60206040518083038186803b1580156139e557600080fd5b505afa925050508015613a1657506040513d601f19601f82011682018060405250810190613a1391906144f5565b60015b613a235760009050613ebf565b80915050613ebf565b6005831415613aef57601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663119167f3836040518263ffffffff1660e01b8152600401613a9091906152a8565b60206040518083038186803b158015613aa857600080fd5b505afa925050508015613ad957506040513d601f19601f82011682018060405250810190613ad691906144f5565b60015b613ae65760009050613ebf565b80915050613ebf565b6006831415613bb257601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbdbec74836040518263ffffffff1660e01b8152600401613b5391906152a8565b60206040518083038186803b158015613b6b57600080fd5b505afa925050508015613b9c57506040513d601f19601f82011682018060405250810190613b9991906144f5565b60015b613ba95760009050613ebf565b80915050613ebf565b6007831415613c7557601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c97191bc836040518263ffffffff1660e01b8152600401613c1691906152a8565b60206040518083038186803b158015613c2e57600080fd5b505afa925050508015613c5f57506040513d601f19601f82011682018060405250810190613c5c91906144f5565b60015b613c6c5760009050613ebf565b80915050613ebf565b6008831415613d3857601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166304078072836040518263ffffffff1660e01b8152600401613cd991906152a8565b60206040518083038186803b158015613cf157600080fd5b505afa925050508015613d2257506040513d601f19601f82011682018060405250810190613d1f91906144f5565b60015b613d2f5760009050613ebf565b80915050613ebf565b6009831415613dfb57601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166378ec7fed836040518263ffffffff1660e01b8152600401613d9c91906152a8565b60206040518083038186803b158015613db457600080fd5b505afa925050508015613de557506040513d601f19601f82011682018060405250810190613de291906144f5565b60015b613df25760009050613ebf565b80915050613ebf565b600a831415613ebe57601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d5c27f20836040518263ffffffff1660e01b8152600401613e5f91906152a8565b60206040518083038186803b158015613e7757600080fd5b505afa925050508015613ea857506040513d601f19601f82011682018060405250810190613ea591906144f5565b60015b613eb55760009050613ebf565b80915050613ebf565b5b92915050565b505050565b613ed483836140bc565b613ee16000848484613f25565b613f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f1790614f28565b60405180910390fd5b505050565b6000613f468473ffffffffffffffffffffffffffffffffffffffff1661428a565b156140af578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613f6f610ac1565b8786866040518563ffffffff1660e01b8152600401613f919493929190614e34565b602060405180830381600087803b158015613fab57600080fd5b505af1925050508015613fdc57506040513d601f19601f82011682018060405250810190613fd99190614712565b60015b61405f573d806000811461400c576040519150601f19603f3d011682016040523d82523d6000602084013e614011565b606091505b50600081511415614057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161404e90614f28565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506140b4565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561412c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614123906150e8565b60405180910390fd5b61413581612d8a565b15614175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161416c90614f68565b60405180910390fd5b61418160008383613ec5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546141d191906153d1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546142a990615628565b90600052602060002090601f0160209004810192826142cb5760008555614312565b82601f106142e457805160ff1916838001178555614312565b82800160010185558215614312579182015b828111156143115782518255916020019190600101906142f6565b5b50905061431f9190614323565b5090565b5b8082111561433c576000816000905550600101614324565b5090565b600061435361434e846152e8565b6152c3565b90508281526020810184848401111561436f5761436e6157c4565b5b61437a8482856155e6565b509392505050565b600061439561439084615319565b6152c3565b9050828152602081018484840111156143b1576143b06157c4565b5b6143bc8482856155e6565b509392505050565b6000813590506143d381615eec565b92915050565b6000815190506143e881615eec565b92915050565b6000813590506143fd81615f03565b92915050565b60008135905061441281615f1a565b92915050565b60008135905061442781615f31565b92915050565b60008151905061443c81615f31565b92915050565b600082601f830112614457576144566157bf565b5b8135614467848260208601614340565b91505092915050565b600082601f830112614485576144846157bf565b5b8135614495848260208601614382565b91505092915050565b6000813590506144ad81615f48565b92915050565b6000815190506144c281615f48565b92915050565b6000602082840312156144de576144dd6157ce565b5b60006144ec848285016143c4565b91505092915050565b60006020828403121561450b5761450a6157ce565b5b6000614519848285016143d9565b91505092915050565b600060208284031215614538576145376157ce565b5b6000614546848285016143ee565b91505092915050565b60008060408385031215614566576145656157ce565b5b6000614574858286016143c4565b9250506020614585858286016143c4565b9150509250929050565b6000806000606084860312156145a8576145a76157ce565b5b60006145b6868287016143c4565b93505060206145c7868287016143c4565b92505060406145d88682870161449e565b9150509250925092565b600080600080608085870312156145fc576145fb6157ce565b5b600061460a878288016143c4565b945050602061461b878288016143c4565b935050604061462c8782880161449e565b925050606085013567ffffffffffffffff81111561464d5761464c6157c9565b5b61465987828801614442565b91505092959194509250565b6000806040838503121561467c5761467b6157ce565b5b600061468a858286016143c4565b925050602061469b85828601614403565b9150509250929050565b600080604083850312156146bc576146bb6157ce565b5b60006146ca858286016143c4565b92505060206146db8582860161449e565b9150509250929050565b6000602082840312156146fb576146fa6157ce565b5b600061470984828501614418565b91505092915050565b600060208284031215614728576147276157ce565b5b60006147368482850161442d565b91505092915050565b600060208284031215614755576147546157ce565b5b600082013567ffffffffffffffff811115614773576147726157c9565b5b61477f84828501614470565b91505092915050565b60006020828403121561479e5761479d6157ce565b5b60006147ac8482850161449e565b91505092915050565b6000602082840312156147cb576147ca6157ce565b5b60006147d9848285016144b3565b91505092915050565b600080604083850312156147f9576147f86157ce565b5b60006148078582860161449e565b92505060206148188582860161449e565b9150509250929050565b600061482e8383614849565b60208301905092915050565b614843816155b0565b82525050565b6148528161551d565b82525050565b6148618161551d565b82525050565b60006148728261535a565b61487c8185615388565b93506148878361534a565b8060005b838110156148b857815161489f8882614822565b97506148aa8361537b565b92505060018101905061488b565b5085935050505092915050565b6148ce81615541565b82525050565b60006148df82615365565b6148e98185615399565b93506148f98185602086016155f5565b614902816157d3565b840191505092915050565b600061491882615370565b61492281856153b5565b93506149328185602086016155f5565b61493b816157d3565b840191505092915050565b600061495182615370565b61495b81856153c6565b935061496b8185602086016155f5565b80840191505092915050565b6000614984602e836153b5565b915061498f826157e4565b604082019050919050565b60006149a76032836153b5565b91506149b282615833565b604082019050919050565b60006149ca6026836153b5565b91506149d582615882565b604082019050919050565b60006149ed601c836153b5565b91506149f8826158d1565b602082019050919050565b6000614a106026836153b5565b9150614a1b826158fa565b604082019050919050565b6000614a336024836153b5565b9150614a3e82615949565b604082019050919050565b6000614a566019836153b5565b9150614a6182615998565b602082019050919050565b6000614a79603a836153b5565b9150614a84826159c1565b604082019050919050565b6000614a9c601d836153b5565b9150614aa782615a10565b602082019050919050565b6000614abf602c836153b5565b9150614aca82615a39565b604082019050919050565b6000614ae2602b836153b5565b9150614aed82615a88565b604082019050919050565b6000614b056019836153b5565b9150614b1082615ad7565b602082019050919050565b6000614b286038836153b5565b9150614b3382615b00565b604082019050919050565b6000614b4b602a836153b5565b9150614b5682615b4f565b604082019050919050565b6000614b6e6029836153b5565b9150614b7982615b9e565b604082019050919050565b6000614b916020836153b5565b9150614b9c82615bed565b602082019050919050565b6000614bb46012836153b5565b9150614bbf82615c16565b602082019050919050565b6000614bd7602c836153b5565b9150614be282615c3f565b604082019050919050565b6000614bfa6020836153b5565b9150614c0582615c8e565b602082019050919050565b6000614c1d600f836153b5565b9150614c2882615cb7565b602082019050919050565b6000614c406029836153b5565b9150614c4b82615ce0565b604082019050919050565b6000614c636013836153b5565b9150614c6e82615d2f565b602082019050919050565b6000614c86602f836153b5565b9150614c9182615d58565b604082019050919050565b6000614ca96016836153b5565b9150614cb482615da7565b602082019050919050565b6000614ccc6021836153b5565b9150614cd782615dd0565b604082019050919050565b6000614cef6016836153b5565b9150614cfa82615e1f565b602082019050919050565b6000614d126000836153aa565b9150614d1d82615e48565b600082019050919050565b6000614d356031836153b5565b9150614d4082615e4b565b604082019050919050565b6000614d58600d836153b5565b9150614d6382615e9a565b602082019050919050565b6000614d7b6017836153b5565b9150614d8682615ec3565b602082019050919050565b614d9a81615599565b82525050565b6000614dac8284614946565b915081905092915050565b6000614dc38285614946565b9150614dcf8284614946565b91508190509392505050565b6000614de682614d05565b9150819050919050565b6000602082019050614e056000830184614858565b92915050565b6000604082019050614e20600083018561483a565b614e2d6020830184614d91565b9392505050565b6000608082019050614e496000830187614858565b614e566020830186614858565b614e636040830185614d91565b8181036060830152614e7581846148d4565b905095945050505050565b6000604082019050614e956000830185614858565b614ea26020830184614d91565b9392505050565b60006020820190508181036000830152614ec38184614867565b905092915050565b6000602082019050614ee060008301846148c5565b92915050565b60006020820190508181036000830152614f00818461490d565b905092915050565b60006020820190508181036000830152614f2181614977565b9050919050565b60006020820190508181036000830152614f418161499a565b9050919050565b60006020820190508181036000830152614f61816149bd565b9050919050565b60006020820190508181036000830152614f81816149e0565b9050919050565b60006020820190508181036000830152614fa181614a03565b9050919050565b60006020820190508181036000830152614fc181614a26565b9050919050565b60006020820190508181036000830152614fe181614a49565b9050919050565b6000602082019050818103600083015261500181614a6c565b9050919050565b6000602082019050818103600083015261502181614a8f565b9050919050565b6000602082019050818103600083015261504181614ab2565b9050919050565b6000602082019050818103600083015261506181614ad5565b9050919050565b6000602082019050818103600083015261508181614af8565b9050919050565b600060208201905081810360008301526150a181614b1b565b9050919050565b600060208201905081810360008301526150c181614b3e565b9050919050565b600060208201905081810360008301526150e181614b61565b9050919050565b6000602082019050818103600083015261510181614b84565b9050919050565b6000602082019050818103600083015261512181614ba7565b9050919050565b6000602082019050818103600083015261514181614bca565b9050919050565b6000602082019050818103600083015261516181614bed565b9050919050565b6000602082019050818103600083015261518181614c10565b9050919050565b600060208201905081810360008301526151a181614c33565b9050919050565b600060208201905081810360008301526151c181614c56565b9050919050565b600060208201905081810360008301526151e181614c79565b9050919050565b6000602082019050818103600083015261520181614c9c565b9050919050565b6000602082019050818103600083015261522181614cbf565b9050919050565b6000602082019050818103600083015261524181614ce2565b9050919050565b6000602082019050818103600083015261526181614d28565b9050919050565b6000602082019050818103600083015261528181614d4b565b9050919050565b600060208201905081810360008301526152a181614d6e565b9050919050565b60006020820190506152bd6000830184614d91565b92915050565b60006152cd6152de565b90506152d9828261565a565b919050565b6000604051905090565b600067ffffffffffffffff82111561530357615302615790565b5b61530c826157d3565b9050602081019050919050565b600067ffffffffffffffff82111561533457615333615790565b5b61533d826157d3565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006153dc82615599565b91506153e783615599565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561541c5761541b6156d4565b5b828201905092915050565b6000615432826155a3565b915061543d836155a3565b92508260ff03821115615453576154526156d4565b5b828201905092915050565b600061546982615599565b915061547483615599565b92508261548457615483615703565b5b828204905092915050565b600061549a82615599565b91506154a583615599565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156154de576154dd6156d4565b5b828202905092915050565b60006154f482615599565b91506154ff83615599565b925082821015615512576155116156d4565b5b828203905092915050565b600061552882615579565b9050919050565b600061553a82615579565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006155bb826155c2565b9050919050565b60006155cd826155d4565b9050919050565b60006155df82615579565b9050919050565b82818337600083830152505050565b60005b838110156156135780820151818401526020810190506155f8565b83811115615622576000848401525b50505050565b6000600282049050600182168061564057607f821691505b6020821081141561565457615653615732565b5b50919050565b615663826157d3565b810181811067ffffffffffffffff8211171561568257615681615790565b5b80604052505050565b600061569682615599565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156156c9576156c86156d4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f7520617265206e6f7420656c696769626c6520746f20636c61696d20746860008201527f6973206d616e7920746f6b656e73000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f446964206e6f742073656e642072657175697265642065746800000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f544f4f204d414e59204d4f4f4e20424f595a0000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e204944204578697374730000000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f436c61696d696e67204e6f742041637469766500000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4f766572206d61785065725472616e73616374696f6e00000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f726d616c2053616c65204e6f742041637469766500000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4174204d617820537570706c7900000000000000000000000000000000000000600082015250565b7f496e737566666369656e7420416d6f756e742053656e74000000000000000000600082015250565b615ef58161551d565b8114615f0057600080fd5b50565b615f0c8161552f565b8114615f1757600080fd5b50565b615f2381615541565b8114615f2e57600080fd5b50565b615f3a8161554d565b8114615f4557600080fd5b50565b615f5181615599565b8114615f5c57600080fd5b5056fea2646970667358221220046547834d2f497f4fa5c4494a7a812b53986ea0c953befa9713aafb26b269d164736f6c63430008070033000000000000000000000000000000000000000000000000016345785d8a00000000000000000000000000008d17ca37bb689e7c9ae74397eb9c57c69f2447ff

Deployed Bytecode

0x6080604052600436106102815760003560e01c8063802e73f11161014f578063c87b56dd116100c1578063ef5d9ae81161007a578063ef5d9ae8146109c4578063f19e75d414610a01578063f2fde38b14610a2a578063f4a0a52814610a53578063f7ea7a3d14610a7c578063fa956ad214610aa5576102c8565b8063c87b56dd1461088e578063ce7c2ac2146108cb578063d59563ba14610908578063e33b7de314610933578063e7b431b21461095e578063e985e9c514610987576102c8565b806395d89b411161011357806395d89b41146107805780639852595c146107ab57806399ae559d146107e8578063a040006614610825578063a22cb4651461083c578063b88d4fde14610865576102c8565b8063802e73f1146106ab578063853828b6146106d65780638b83209b146106ed5780638da5cb5b1461072a57806395ab5aa514610755576102c8565b8063379607f5116101f35780636352211e116101ac5780636352211e1461059b5780636817c76c146105d85780636c0360eb146106035780636f243a9c1461062e57806370a0823114610657578063715018a614610694576102c8565b8063379607f5146104be5780633a98ef39146104da5780633b2c3fb61461050557806342842e0e1461051c5780634b980d671461054557806352b2710c14610570576102c8565b806318160ddd1161024557806318160ddd146103c457806319165587146103ef5780631dfce5c61461041857806323b872dd14610455578063306242331461047e57806331b5b90714610495576102c8565b806301ffc9a7146102cd57806306fdde031461030a578063081812fc14610335578063095ea7b314610372578063147792261461039b576102c8565b366102c8577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102af610ac1565b346040516102be929190614e80565b60405180910390a1005b600080fd5b3480156102d957600080fd5b506102f460048036038101906102ef91906146e5565b610ac9565b6040516103019190614ecb565b60405180910390f35b34801561031657600080fd5b5061031f610bab565b60405161032c9190614ee6565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190614788565b610c3d565b6040516103699190614df0565b60405180910390f35b34801561037e57600080fd5b50610399600480360381019061039491906146a5565b610cc2565b005b3480156103a757600080fd5b506103c260048036038101906103bd9190614788565b610dda565b005b3480156103d057600080fd5b506103d96110f1565b6040516103e691906152a8565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190614522565b611102565b005b34801561042457600080fd5b5061043f600480360381019061043a91906144c8565b61136a565b60405161044c91906152a8565b60405180910390f35b34801561046157600080fd5b5061047c6004803603810190610477919061458f565b611382565b005b34801561048a57600080fd5b506104936113e2565b005b3480156104a157600080fd5b506104bc60048036038101906104b7919061473f565b61148a565b005b6104d860048036038101906104d39190614788565b611520565b005b3480156104e657600080fd5b506104ef61176b565b6040516104fc91906152a8565b60405180910390f35b34801561051157600080fd5b5061051a611775565b005b34801561052857600080fd5b50610543600480360381019061053e919061458f565b61181d565b005b34801561055157600080fd5b5061055a61183d565b60405161056791906152a8565b60405180910390f35b34801561057c57600080fd5b50610585611843565b6040516105929190614ea9565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190614788565b6118d1565b6040516105cf9190614df0565b60405180910390f35b3480156105e457600080fd5b506105ed611983565b6040516105fa91906152a8565b60405180910390f35b34801561060f57600080fd5b50610618611989565b6040516106259190614ee6565b60405180910390f35b34801561063a57600080fd5b50610655600480360381019061065091906147e2565b611a17565b005b34801561066357600080fd5b5061067e600480360381019061067991906144c8565b611cdf565b60405161068b91906152a8565b60405180910390f35b3480156106a057600080fd5b506106a9611d97565b005b3480156106b757600080fd5b506106c0611e1f565b6040516106cd91906152a8565b60405180910390f35b3480156106e257600080fd5b506106eb611e25565b005b3480156106f957600080fd5b50610714600480360381019061070f9190614788565b611f14565b6040516107219190614df0565b60405180910390f35b34801561073657600080fd5b5061073f611f5c565b60405161074c9190614df0565b60405180910390f35b34801561076157600080fd5b5061076a611f86565b6040516107779190614ecb565b60405180910390f35b34801561078c57600080fd5b50610795611f99565b6040516107a29190614ee6565b60405180910390f35b3480156107b757600080fd5b506107d260048036038101906107cd91906144c8565b61202b565b6040516107df91906152a8565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190614788565b612074565b60405161081c9190614df0565b60405180910390f35b34801561083157600080fd5b5061083a6120b3565b005b34801561084857600080fd5b50610863600480360381019061085e9190614665565b61215b565b005b34801561087157600080fd5b5061088c600480360381019061088791906145e2565b6122dc565b005b34801561089a57600080fd5b506108b560048036038101906108b09190614788565b61233e565b6040516108c29190614ee6565b60405180910390f35b3480156108d757600080fd5b506108f260048036038101906108ed91906144c8565b612441565b6040516108ff91906152a8565b60405180910390f35b34801561091457600080fd5b5061091d61248a565b60405161092a9190614ecb565b60405180910390f35b34801561093f57600080fd5b5061094861249d565b60405161095591906152a8565b60405180910390f35b34801561096a57600080fd5b50610985600480360381019061098091906147e2565b6124a7565b005b34801561099357600080fd5b506109ae60048036038101906109a9919061454f565b6126fc565b6040516109bb9190614ecb565b60405180910390f35b3480156109d057600080fd5b506109eb60048036038101906109e691906144c8565b612790565b6040516109f891906152a8565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614788565b6127a8565b005b348015610a3657600080fd5b50610a516004803603810190610a4c91906144c8565b612957565b005b348015610a5f57600080fd5b50610a7a6004803603810190610a759190614788565b612a4f565b005b348015610a8857600080fd5b50610aa36004803603810190610a9e9190614788565b612ad5565b005b610abf6004803603810190610aba9190614788565b612b5b565b005b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b9457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ba45750610ba382612d20565b5b9050919050565b606060008054610bba90615628565b80601f0160208091040260200160405190810160405280929190818152602001828054610be690615628565b8015610c335780601f10610c0857610100808354040283529160200191610c33565b820191906000526020600020905b815481529060010190602001808311610c1657829003601f168201915b5050505050905090565b6000610c4882612d8a565b610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e90615128565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ccd826118d1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3590615208565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d5d610ac1565b73ffffffffffffffffffffffffffffffffffffffff161480610d8c5750610d8b81610d86610ac1565b6126fc565b5b610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290615088565b60405180910390fd5b610dd58383612df6565b505050565b610de2610ac1565b73ffffffffffffffffffffffffffffffffffffffff16610e00611f5c565b73ffffffffffffffffffffffffffffffffffffffff1614610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90615148565b60405180910390fd5b6000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ec057600080fd5b505afa158015610ed4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef891906147b5565b90506018548211156110ed57600060185490505b818111158015610f1b57508281105b156110eb57600160186000828254610f3391906153d1565b92505081905550601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b8152600401610f9591906152a8565b60206040518083038186803b158015610fad57600080fd5b505afa925050508015610fde57506040513d601f19601f82011682018060405250810190610fdb91906144f5565b60015b610fe7576110d8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110d6576017819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110ce91906153d1565b925050819055505b505b80806110e39061568b565b915050610f0c565b505b5050565b60006110fd600c612eaf565b905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b90614f88565b60405180910390fd5b60006008544761119491906153d1565b90506000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600754600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484611226919061548f565b611230919061545e565b61123a91906154e9565b90506000811415611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790615048565b60405180910390fd5b80600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112cb91906153d1565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508060085461131c91906153d1565b60088190555061132c8382612ebd565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056838260405161135d929190614e0b565b60405180910390a1505050565b60156020528060005260406000206000915090505481565b61139361138d610ac1565b82612fb1565b6113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c990615248565b60405180910390fd5b6113dd83838361308f565b505050565b6113ea610ac1565b73ffffffffffffffffffffffffffffffffffffffff16611408611f5c565b73ffffffffffffffffffffffffffffffffffffffff161461145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590615148565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b611492610ac1565b73ffffffffffffffffffffffffffffffffffffffff166114b0611f5c565b73ffffffffffffffffffffffffffffffffffffffff1614611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90615148565b60405180910390fd5b806014908051906020019061151c92919061429d565b5050565b60011515600e60009054906101000a900460ff16151514611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d906151a8565b60405180910390fd5b600034905081601154611589919061548f565b81146115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190615068565b60405180910390fd5b6000821180156116195750601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211155b611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90614f08565b60405180910390fd5b6017339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461170a91906153d1565b9250508190555081601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461176091906154e9565b925050819055505050565b6000600754905090565b61177d610ac1565b73ffffffffffffffffffffffffffffffffffffffff1661179b611f5c565b73ffffffffffffffffffffffffffffffffffffffff16146117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890615148565b60405180910390fd5b600e60029054906101000a900460ff1615600e60026101000a81548160ff021916908315150217905550565b611838838383604051806020016040528060008152506122dc565b505050565b60195481565b606060178054806020026020016040519081016040528092919081815260200182805480156118c757602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831161187d575b5050505050905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611971906150c8565b60405180910390fd5b80915050919050565b60115481565b6014805461199690615628565b80601f01602080910402602001604051908101604052809291908181526020018280546119c290615628565b8015611a0f5780601f106119e457610100808354040283529160200191611a0f565b820191906000526020600020905b8154815290600101906020018083116119f257829003601f168201915b505050505081565b611a1f610ac1565b73ffffffffffffffffffffffffffffffffffffffff16611a3d611f5c565b73ffffffffffffffffffffffffffffffffffffffff1614611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a90615148565b60405180910390fd5b60008290505b8181108015611aac575060178054905081105b15611cda57600d54611abe600c612eaf565b10611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af590615268565b60405180910390fd5b60005b6016600060178481548110611b1957611b18615761565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811015611c43576000611b92600c612eaf565b9050611b9d81612d8a565b15611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490615168565b60405180910390fd5b611c2560178481548110611bf457611bf3615761565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826132eb565b611c2f600c613309565b508080611c3b9061568b565b915050611b01565b5060006016600060178481548110611c5e57611c5d615761565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611cd29061568b565b915050611a99565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d47906150a8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611d9f610ac1565b73ffffffffffffffffffffffffffffffffffffffff16611dbd611f5c565b73ffffffffffffffffffffffffffffffffffffffff1614611e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0a90615148565b60405180910390fd5b611e1d600061331f565b565b600d5481565b611e2d610ac1565b73ffffffffffffffffffffffffffffffffffffffff16611e4b611f5c565b73ffffffffffffffffffffffffffffffffffffffff1614611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890615148565b60405180910390fd5b60005b600f80549050811015611f11576000600f8281548110611ec757611ec6615761565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050611efd81611102565b508080611f099061568b565b915050611ea4565b50565b6000600b8281548110611f2a57611f29615761565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e60019054906101000a900460ff1681565b606060018054611fa890615628565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd490615628565b80156120215780601f10611ff657610100808354040283529160200191612021565b820191906000526020600020905b81548152906001019060200180831161200457829003601f168201915b5050505050905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6017818154811061208457600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6120bb610ac1565b73ffffffffffffffffffffffffffffffffffffffff166120d9611f5c565b73ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212690615148565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b612163610ac1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c890614fc8565b60405180910390fd5b80600560006121de610ac1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661228b610ac1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122d09190614ecb565b60405180910390a35050565b6122ed6122e7610ac1565b83612fb1565b61232c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232390615248565b60405180910390fd5b612338848484846133e5565b50505050565b606061234982612d8a565b612388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237f906151c8565b60405180910390fd5b6000612392613441565b9050600e60029054906101000a900460ff166123ef5760008151116123c657604051806020016040528060008152506123e7565b806040516020016123d79190614da0565b6040516020818303038152906040525b91505061243c565b600081511161240d5760405180602001604052806000815250612438565b80612417846134d3565b604051602001612428929190614db7565b6040516020818303038152906040525b9150505b919050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e60009054906101000a900460ff1681565b6000600854905090565b6124af610ac1565b73ffffffffffffffffffffffffffffffffffffffff166124cd611f5c565b73ffffffffffffffffffffffffffffffffffffffff1614612523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251a90615148565b60405180910390fd5b60008290505b818110156126f7576000805b816126e2576000612546848361365c565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146126c9576000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116126c457601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166367aedf71826040518263ffffffff1660e01b815260040161261e9190614df0565b60206040518083038186803b15801561263657600080fd5b505afa15801561264a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061266e91906147b5565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126bc91906153d1565b925050819055505b6126ce565b600192505b5080806126da9061568b565b915050612535565b505080806126ef9061568b565b915050612529565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60166020528060005260406000206000915090505481565b6127b0610ac1565b73ffffffffffffffffffffffffffffffffffffffff166127ce611f5c565b73ffffffffffffffffffffffffffffffffffffffff1614612824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281b90615148565b60405180910390fd5b600d5481612832600c612eaf565b61283c91906153d1565b1061287c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287390615108565b60405180910390fd5b60005b81811015612953576000612893600c612eaf565b905061289e81612d8a565b156128de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d590615168565b60405180910390fd5b600d546128eb600c612eaf565b1061292b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292290615268565b60405180910390fd5b61293533826132eb565b61293f600c613309565b50808061294b9061568b565b91505061287f565b5050565b61295f610ac1565b73ffffffffffffffffffffffffffffffffffffffff1661297d611f5c565b73ffffffffffffffffffffffffffffffffffffffff16146129d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ca90615148565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3a90614f48565b60405180910390fd5b612a4c8161331f565b50565b612a57610ac1565b73ffffffffffffffffffffffffffffffffffffffff16612a75611f5c565b73ffffffffffffffffffffffffffffffffffffffff1614612acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac290615148565b60405180910390fd5b8060118190555050565b612add610ac1565b73ffffffffffffffffffffffffffffffffffffffff16612afb611f5c565b73ffffffffffffffffffffffffffffffffffffffff1614612b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4890615148565b60405180910390fd5b80600d8190555050565b60011515600e60019054906101000a900460ff16151514612bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba890615228565b60405180910390fd5b601954811115612bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bed906151e8565b60405180910390fd5b80601154612c04919061548f565b3414612c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3c90615288565b60405180910390fd5b600d54612c52600c612eaf565b10612c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8990615268565b60405180910390fd5b60005b81811015612d1c576000612ca9600c612eaf565b9050612cb481612d8a565b15612cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ceb90615168565b60405180910390fd5b612cfe33826132eb565b612d08600c613309565b508080612d149061568b565b915050612c95565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e69836118d1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b80471015612f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef790615008565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612f2690614ddb565b60006040518083038185875af1925050503d8060008114612f63576040519150601f19603f3d011682016040523d82523d6000602084013e612f68565b606091505b5050905080612fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa390614fe8565b60405180910390fd5b505050565b6000612fbc82612d8a565b612ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff290615028565b60405180910390fd5b6000613006836118d1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061307557508373ffffffffffffffffffffffffffffffffffffffff1661305d84610c3d565b73ffffffffffffffffffffffffffffffffffffffff16145b80613086575061308581856126fc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166130af826118d1565b73ffffffffffffffffffffffffffffffffffffffff1614613105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fc90615188565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316c90614fa8565b60405180910390fd5b613180838383613ec5565b61318b600082612df6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131db91906154e9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461323291906153d1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b613305828260405180602001604052806000815250613eca565b5050565b6001816000016000828254019250508190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6133f084848461308f565b6133fc84848484613f25565b61343b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343290614f28565b60405180910390fd5b50505050565b60606014805461345090615628565b80601f016020809104026020016040519081016040528092919081815260200182805461347c90615628565b80156134c95780601f1061349e576101008083540402835291602001916134c9565b820191906000526020600020905b8154815290600101906020018083116134ac57829003601f168201915b5050505050905090565b6060600082141561351b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613657565b600082905060005b6000821461354d5780806135369061568b565b915050600a82613546919061545e565b9150613523565b60008167ffffffffffffffff81111561356957613568615790565b5b6040519080825280601f01601f19166020018201604052801561359b5781602001600182028036833780820191505090505b50905060008290505b6000861461364f576001816135b991906154e9565b90506000600a80886135cb919061545e565b6135d5919061548f565b876135e091906154e9565b60306135ec9190615427565b905060008160f81b90508084848151811061360a57613609615761565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88613646919061545e565b975050506135a4565b819450505050505b919050565b60008083141561372057601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a2c4b7a7836040518263ffffffff1660e01b81526004016136c191906152a8565b60206040518083038186803b1580156136d957600080fd5b505afa92505050801561370a57506040513d601f19601f8201168201806040525081019061370791906144f5565b60015b6137175760009050613ebf565b80915050613ebf565b60018314156137e357601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e3a51dcd836040518263ffffffff1660e01b815260040161378491906152a8565b60206040518083038186803b15801561379c57600080fd5b505afa9250505080156137cd57506040513d601f19601f820116820180604052508101906137ca91906144f5565b60015b6137da5760009050613ebf565b80915050613ebf565b60028314156138a657601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f6da2fb0836040518263ffffffff1660e01b815260040161384791906152a8565b60206040518083038186803b15801561385f57600080fd5b505afa92505050801561389057506040513d601f19601f8201168201806040525081019061388d91906144f5565b60015b61389d5760009050613ebf565b80915050613ebf565b600383141561396957601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d17a15d1836040518263ffffffff1660e01b815260040161390a91906152a8565b60206040518083038186803b15801561392257600080fd5b505afa92505050801561395357506040513d601f19601f8201168201806040525081019061395091906144f5565b60015b6139605760009050613ebf565b80915050613ebf565b6004831415613a2c57601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632c507190836040518263ffffffff1660e01b81526004016139cd91906152a8565b60206040518083038186803b1580156139e557600080fd5b505afa925050508015613a1657506040513d601f19601f82011682018060405250810190613a1391906144f5565b60015b613a235760009050613ebf565b80915050613ebf565b6005831415613aef57601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663119167f3836040518263ffffffff1660e01b8152600401613a9091906152a8565b60206040518083038186803b158015613aa857600080fd5b505afa925050508015613ad957506040513d601f19601f82011682018060405250810190613ad691906144f5565b60015b613ae65760009050613ebf565b80915050613ebf565b6006831415613bb257601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbdbec74836040518263ffffffff1660e01b8152600401613b5391906152a8565b60206040518083038186803b158015613b6b57600080fd5b505afa925050508015613b9c57506040513d601f19601f82011682018060405250810190613b9991906144f5565b60015b613ba95760009050613ebf565b80915050613ebf565b6007831415613c7557601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c97191bc836040518263ffffffff1660e01b8152600401613c1691906152a8565b60206040518083038186803b158015613c2e57600080fd5b505afa925050508015613c5f57506040513d601f19601f82011682018060405250810190613c5c91906144f5565b60015b613c6c5760009050613ebf565b80915050613ebf565b6008831415613d3857601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166304078072836040518263ffffffff1660e01b8152600401613cd991906152a8565b60206040518083038186803b158015613cf157600080fd5b505afa925050508015613d2257506040513d601f19601f82011682018060405250810190613d1f91906144f5565b60015b613d2f5760009050613ebf565b80915050613ebf565b6009831415613dfb57601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166378ec7fed836040518263ffffffff1660e01b8152600401613d9c91906152a8565b60206040518083038186803b158015613db457600080fd5b505afa925050508015613de557506040513d601f19601f82011682018060405250810190613de291906144f5565b60015b613df25760009050613ebf565b80915050613ebf565b600a831415613ebe57601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d5c27f20836040518263ffffffff1660e01b8152600401613e5f91906152a8565b60206040518083038186803b158015613e7757600080fd5b505afa925050508015613ea857506040513d601f19601f82011682018060405250810190613ea591906144f5565b60015b613eb55760009050613ebf565b80915050613ebf565b5b92915050565b505050565b613ed483836140bc565b613ee16000848484613f25565b613f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f1790614f28565b60405180910390fd5b505050565b6000613f468473ffffffffffffffffffffffffffffffffffffffff1661428a565b156140af578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613f6f610ac1565b8786866040518563ffffffff1660e01b8152600401613f919493929190614e34565b602060405180830381600087803b158015613fab57600080fd5b505af1925050508015613fdc57506040513d601f19601f82011682018060405250810190613fd99190614712565b60015b61405f573d806000811461400c576040519150601f19603f3d011682016040523d82523d6000602084013e614011565b606091505b50600081511415614057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161404e90614f28565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506140b4565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561412c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614123906150e8565b60405180910390fd5b61413581612d8a565b15614175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161416c90614f68565b60405180910390fd5b61418160008383613ec5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546141d191906153d1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546142a990615628565b90600052602060002090601f0160209004810192826142cb5760008555614312565b82601f106142e457805160ff1916838001178555614312565b82800160010185558215614312579182015b828111156143115782518255916020019190600101906142f6565b5b50905061431f9190614323565b5090565b5b8082111561433c576000816000905550600101614324565b5090565b600061435361434e846152e8565b6152c3565b90508281526020810184848401111561436f5761436e6157c4565b5b61437a8482856155e6565b509392505050565b600061439561439084615319565b6152c3565b9050828152602081018484840111156143b1576143b06157c4565b5b6143bc8482856155e6565b509392505050565b6000813590506143d381615eec565b92915050565b6000815190506143e881615eec565b92915050565b6000813590506143fd81615f03565b92915050565b60008135905061441281615f1a565b92915050565b60008135905061442781615f31565b92915050565b60008151905061443c81615f31565b92915050565b600082601f830112614457576144566157bf565b5b8135614467848260208601614340565b91505092915050565b600082601f830112614485576144846157bf565b5b8135614495848260208601614382565b91505092915050565b6000813590506144ad81615f48565b92915050565b6000815190506144c281615f48565b92915050565b6000602082840312156144de576144dd6157ce565b5b60006144ec848285016143c4565b91505092915050565b60006020828403121561450b5761450a6157ce565b5b6000614519848285016143d9565b91505092915050565b600060208284031215614538576145376157ce565b5b6000614546848285016143ee565b91505092915050565b60008060408385031215614566576145656157ce565b5b6000614574858286016143c4565b9250506020614585858286016143c4565b9150509250929050565b6000806000606084860312156145a8576145a76157ce565b5b60006145b6868287016143c4565b93505060206145c7868287016143c4565b92505060406145d88682870161449e565b9150509250925092565b600080600080608085870312156145fc576145fb6157ce565b5b600061460a878288016143c4565b945050602061461b878288016143c4565b935050604061462c8782880161449e565b925050606085013567ffffffffffffffff81111561464d5761464c6157c9565b5b61465987828801614442565b91505092959194509250565b6000806040838503121561467c5761467b6157ce565b5b600061468a858286016143c4565b925050602061469b85828601614403565b9150509250929050565b600080604083850312156146bc576146bb6157ce565b5b60006146ca858286016143c4565b92505060206146db8582860161449e565b9150509250929050565b6000602082840312156146fb576146fa6157ce565b5b600061470984828501614418565b91505092915050565b600060208284031215614728576147276157ce565b5b60006147368482850161442d565b91505092915050565b600060208284031215614755576147546157ce565b5b600082013567ffffffffffffffff811115614773576147726157c9565b5b61477f84828501614470565b91505092915050565b60006020828403121561479e5761479d6157ce565b5b60006147ac8482850161449e565b91505092915050565b6000602082840312156147cb576147ca6157ce565b5b60006147d9848285016144b3565b91505092915050565b600080604083850312156147f9576147f86157ce565b5b60006148078582860161449e565b92505060206148188582860161449e565b9150509250929050565b600061482e8383614849565b60208301905092915050565b614843816155b0565b82525050565b6148528161551d565b82525050565b6148618161551d565b82525050565b60006148728261535a565b61487c8185615388565b93506148878361534a565b8060005b838110156148b857815161489f8882614822565b97506148aa8361537b565b92505060018101905061488b565b5085935050505092915050565b6148ce81615541565b82525050565b60006148df82615365565b6148e98185615399565b93506148f98185602086016155f5565b614902816157d3565b840191505092915050565b600061491882615370565b61492281856153b5565b93506149328185602086016155f5565b61493b816157d3565b840191505092915050565b600061495182615370565b61495b81856153c6565b935061496b8185602086016155f5565b80840191505092915050565b6000614984602e836153b5565b915061498f826157e4565b604082019050919050565b60006149a76032836153b5565b91506149b282615833565b604082019050919050565b60006149ca6026836153b5565b91506149d582615882565b604082019050919050565b60006149ed601c836153b5565b91506149f8826158d1565b602082019050919050565b6000614a106026836153b5565b9150614a1b826158fa565b604082019050919050565b6000614a336024836153b5565b9150614a3e82615949565b604082019050919050565b6000614a566019836153b5565b9150614a6182615998565b602082019050919050565b6000614a79603a836153b5565b9150614a84826159c1565b604082019050919050565b6000614a9c601d836153b5565b9150614aa782615a10565b602082019050919050565b6000614abf602c836153b5565b9150614aca82615a39565b604082019050919050565b6000614ae2602b836153b5565b9150614aed82615a88565b604082019050919050565b6000614b056019836153b5565b9150614b1082615ad7565b602082019050919050565b6000614b286038836153b5565b9150614b3382615b00565b604082019050919050565b6000614b4b602a836153b5565b9150614b5682615b4f565b604082019050919050565b6000614b6e6029836153b5565b9150614b7982615b9e565b604082019050919050565b6000614b916020836153b5565b9150614b9c82615bed565b602082019050919050565b6000614bb46012836153b5565b9150614bbf82615c16565b602082019050919050565b6000614bd7602c836153b5565b9150614be282615c3f565b604082019050919050565b6000614bfa6020836153b5565b9150614c0582615c8e565b602082019050919050565b6000614c1d600f836153b5565b9150614c2882615cb7565b602082019050919050565b6000614c406029836153b5565b9150614c4b82615ce0565b604082019050919050565b6000614c636013836153b5565b9150614c6e82615d2f565b602082019050919050565b6000614c86602f836153b5565b9150614c9182615d58565b604082019050919050565b6000614ca96016836153b5565b9150614cb482615da7565b602082019050919050565b6000614ccc6021836153b5565b9150614cd782615dd0565b604082019050919050565b6000614cef6016836153b5565b9150614cfa82615e1f565b602082019050919050565b6000614d126000836153aa565b9150614d1d82615e48565b600082019050919050565b6000614d356031836153b5565b9150614d4082615e4b565b604082019050919050565b6000614d58600d836153b5565b9150614d6382615e9a565b602082019050919050565b6000614d7b6017836153b5565b9150614d8682615ec3565b602082019050919050565b614d9a81615599565b82525050565b6000614dac8284614946565b915081905092915050565b6000614dc38285614946565b9150614dcf8284614946565b91508190509392505050565b6000614de682614d05565b9150819050919050565b6000602082019050614e056000830184614858565b92915050565b6000604082019050614e20600083018561483a565b614e2d6020830184614d91565b9392505050565b6000608082019050614e496000830187614858565b614e566020830186614858565b614e636040830185614d91565b8181036060830152614e7581846148d4565b905095945050505050565b6000604082019050614e956000830185614858565b614ea26020830184614d91565b9392505050565b60006020820190508181036000830152614ec38184614867565b905092915050565b6000602082019050614ee060008301846148c5565b92915050565b60006020820190508181036000830152614f00818461490d565b905092915050565b60006020820190508181036000830152614f2181614977565b9050919050565b60006020820190508181036000830152614f418161499a565b9050919050565b60006020820190508181036000830152614f61816149bd565b9050919050565b60006020820190508181036000830152614f81816149e0565b9050919050565b60006020820190508181036000830152614fa181614a03565b9050919050565b60006020820190508181036000830152614fc181614a26565b9050919050565b60006020820190508181036000830152614fe181614a49565b9050919050565b6000602082019050818103600083015261500181614a6c565b9050919050565b6000602082019050818103600083015261502181614a8f565b9050919050565b6000602082019050818103600083015261504181614ab2565b9050919050565b6000602082019050818103600083015261506181614ad5565b9050919050565b6000602082019050818103600083015261508181614af8565b9050919050565b600060208201905081810360008301526150a181614b1b565b9050919050565b600060208201905081810360008301526150c181614b3e565b9050919050565b600060208201905081810360008301526150e181614b61565b9050919050565b6000602082019050818103600083015261510181614b84565b9050919050565b6000602082019050818103600083015261512181614ba7565b9050919050565b6000602082019050818103600083015261514181614bca565b9050919050565b6000602082019050818103600083015261516181614bed565b9050919050565b6000602082019050818103600083015261518181614c10565b9050919050565b600060208201905081810360008301526151a181614c33565b9050919050565b600060208201905081810360008301526151c181614c56565b9050919050565b600060208201905081810360008301526151e181614c79565b9050919050565b6000602082019050818103600083015261520181614c9c565b9050919050565b6000602082019050818103600083015261522181614cbf565b9050919050565b6000602082019050818103600083015261524181614ce2565b9050919050565b6000602082019050818103600083015261526181614d28565b9050919050565b6000602082019050818103600083015261528181614d4b565b9050919050565b600060208201905081810360008301526152a181614d6e565b9050919050565b60006020820190506152bd6000830184614d91565b92915050565b60006152cd6152de565b90506152d9828261565a565b919050565b6000604051905090565b600067ffffffffffffffff82111561530357615302615790565b5b61530c826157d3565b9050602081019050919050565b600067ffffffffffffffff82111561533457615333615790565b5b61533d826157d3565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006153dc82615599565b91506153e783615599565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561541c5761541b6156d4565b5b828201905092915050565b6000615432826155a3565b915061543d836155a3565b92508260ff03821115615453576154526156d4565b5b828201905092915050565b600061546982615599565b915061547483615599565b92508261548457615483615703565b5b828204905092915050565b600061549a82615599565b91506154a583615599565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156154de576154dd6156d4565b5b828202905092915050565b60006154f482615599565b91506154ff83615599565b925082821015615512576155116156d4565b5b828203905092915050565b600061552882615579565b9050919050565b600061553a82615579565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006155bb826155c2565b9050919050565b60006155cd826155d4565b9050919050565b60006155df82615579565b9050919050565b82818337600083830152505050565b60005b838110156156135780820151818401526020810190506155f8565b83811115615622576000848401525b50505050565b6000600282049050600182168061564057607f821691505b6020821081141561565457615653615732565b5b50919050565b615663826157d3565b810181811067ffffffffffffffff8211171561568257615681615790565b5b80604052505050565b600061569682615599565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156156c9576156c86156d4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f7520617265206e6f7420656c696769626c6520746f20636c61696d20746860008201527f6973206d616e7920746f6b656e73000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f446964206e6f742073656e642072657175697265642065746800000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f544f4f204d414e59204d4f4f4e20424f595a0000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e204944204578697374730000000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f436c61696d696e67204e6f742041637469766500000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4f766572206d61785065725472616e73616374696f6e00000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f726d616c2053616c65204e6f742041637469766500000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4174204d617820537570706c7900000000000000000000000000000000000000600082015250565b7f496e737566666369656e7420416d6f756e742053656e74000000000000000000600082015250565b615ef58161551d565b8114615f0057600080fd5b50565b615f0c8161552f565b8114615f1757600080fd5b50565b615f2381615541565b8114615f2e57600080fd5b50565b615f3a8161554d565b8114615f4557600080fd5b50565b615f5181615599565b8114615f5c57600080fd5b5056fea2646970667358221220046547834d2f497f4fa5c4494a7a812b53986ea0c953befa9713aafb26b269d164736f6c63430008070033

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

000000000000000000000000000000000000000000000000016345785d8a00000000000000000000000000008d17ca37bb689e7c9ae74397eb9c57c69f2447ff

-----Decoded View---------------
Arg [0] : _mintPrice (uint256): 100000000000000000
Arg [1] : _oldContract (address): 0x8D17CA37bb689E7C9Ae74397eB9C57C69F2447Ff

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000016345785d8a0000
Arg [1] : 0000000000000000000000008d17ca37bb689e7c9ae74397eb9c57c69f2447ff


Deployed Bytecode Sourcemap

1349:9744:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2610:40:13;2626:12;:10;:12::i;:::-;2640:9;2610:40;;;;;;;:::i;:::-;;;;;;;;1349:9744:11;;;;;1431:300:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2349:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3860:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3398:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9157:556:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9718:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3774:600:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2321:49:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4724:330:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9832:93:11;;;;;;;;;;;;;:::i;:::-;;3379:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3606:579;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2735:89:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9935:78:11;;;;;;;;;;;;;:::i;:::-;;5120:179:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2494:34:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10442:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2052:235:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2168:21:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2289;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4195:708;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1790:205:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1598:92:12;;;;;;;;;;;;;:::i;:::-;;1572:40:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10235:197;;;;;;;;;;;;;:::i;:::-;;3482:98:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;966:85:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1662:31:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2511:102:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3289:107:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2429:25:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10023:87;;;;;;;;;;;;;:::i;:::-;;4144:290:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5365:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2812:441:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3092:103:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1623:33:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2913:93:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8574:573:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4500:162:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2376:47:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5561:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1839:189:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10125:100:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3491:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4913:643;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;586:96:1;639:7;665:10;658:17;;586:96;:::o;1431:300:4:-;1533:4;1583:25;1568:40;;;:11;:40;;;;:104;;;;1639:33;1624:48;;;:11;:48;;;;1568:104;:156;;;;1688:36;1712:11;1688:23;:36::i;:::-;1568:156;1549:175;;1431:300;;;:::o;2349:98::-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;3963:16;3971:7;3963;:16::i;:::-;3955:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4046:15;:24;4062:7;4046:24;;;;;;;;;;;;;;;;;;;;;4039:31;;3860:217;;;:::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;3535:11;;:2;:11;;;;3527:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3632:5;3616:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3641:37;3658:5;3665:12;:10;:12::i;:::-;3641:16;:37::i;:::-;3616:62;3595:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3468:331;3398:401;;:::o;9157:556:11:-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9221:19:11::1;9243:11;;;;;;;;;;;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9221:47;;9287:6;;9281:3;:12;9278:429;;;9312:6;9321;;9312:15;;9308:389;9334:14;9329:1;:19;;:30;;;;;9356:3;9352:1;:7;9329:30;9308:389;;;9393:1;9383:6;;:11;;;;;;;:::i;:::-;;;;;;;;9416;;;;;;;;;;;:19;;;9436:1;9416:22;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;9412:271;;;;;9511:1;9491:22;;:8;:22;;;9488:151;;9540:8;9554;9540:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9615:1;9589:12;:22;9602:8;9589:22;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;9488:151;9439:218;9412:271;9361:3;;;;;:::i;:::-;;;;9308:389;;;;9278:429;9211:502;9157:556:::0;:::o;9718:104::-;9764:7;9790:25;:15;:23;:25::i;:::-;9783:32;;9718:104;:::o;3774:600:13:-;3868:1;3849:7;:16;3857:7;3849:16;;;;;;;;;;;;;;;;:20;3841:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;3923:21;3971:14;;3947:21;:38;;;;:::i;:::-;3923:62;;3995:15;4065:9;:18;4075:7;4065:18;;;;;;;;;;;;;;;;4050:12;;4030:7;:16;4038:7;4030:16;;;;;;;;;;;;;;;;4014:13;:32;;;;:::i;:::-;4013:49;;;;:::i;:::-;:70;;;;:::i;:::-;3995:88;;4113:1;4102:7;:12;;4094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4215:7;4194:9;:18;4204:7;4194:18;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;4173:9;:18;4183:7;4173:18;;;;;;;;;;;;;;;:49;;;;4266:7;4249:14;;:24;;;;:::i;:::-;4232:14;:41;;;;4284:35;4302:7;4311;4284:17;:35::i;:::-;4334:33;4350:7;4359;4334:33;;;;;;;:::i;:::-;;;;;;;;3831:543;;3774:600;:::o;2321:49:11:-;;;;;;;;;;;;;;;;;:::o;4724:330:4:-;4913:41;4932:12;:10;:12::i;:::-;4946:7;4913:18;:41::i;:::-;4905:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;:::-;4724:330;;;:::o;9832:93:11:-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9905:13:11::1;;;;;;;;;;;9904:14;9888:13;;:30;;;;;;;;;;;;;;;;;;9832:93::o:0;3379:103::-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3464:11:11::1;3454:7;:21;;;;;;;;;;;;:::i;:::-;;3379:103:::0;:::o;3606:579::-;3689:4;3672:21;;:13;;;;;;;;;;;:21;;;3664:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;3727:9;3739;3727:21;;3786:11;3774:9;;:23;;;;:::i;:::-;3766:4;:31;3758:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;3859:1;3845:11;:15;:60;;;;;3879:14;:26;3894:10;3879:26;;;;;;;;;;;;;;;;3864:11;:41;;3845:60;3837:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;3994:8;4008:10;3994:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4084:11;4056:12;:24;4069:10;4056:24;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;4167:11;4137:14;:26;4152:10;4137:26;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;3654:531;3606:579;:::o;2735:89:13:-;2779:7;2805:12;;2798:19;;2735:89;:::o;9935:78:11:-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9998:8:11::1;;;;;;;;;;;9997:9;9986:8;;:20;;;;;;;;;;;;;;;;;;9935:78::o:0;5120:179:4:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;:::-;5120:179;;;:::o;2494:34:11:-;;;;:::o;10442:92::-;10485:16;10519:8;10512:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10442:92;:::o;2052:235:4:-;2124:7;2143:13;2159:7;:16;2167:7;2159:16;;;;;;;;;;;;;;;;;;;;;2143:32;;2210:1;2193:19;;:5;:19;;;;2185:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2275:5;2268:12;;;2052:235;;;:::o;2168:21:11:-;;;;:::o;2289:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4195:708::-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4265:6:11::1;4274:5;4265:14;;4261:636;4285:3;4281:1;:7;:30;;;;;4296:8;:15;;;;4292:1;:19;4281:30;4261:636;;;4367:17;;4339:25;:15;:23;:25::i;:::-;:45;4331:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;4433:6;4429:415;4449:12;:25;4462:8;4471:1;4462:11;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4449:25;;;;;;;;;;;;;;;;4445:1;:29;4429:415;;;4498:16;4517:25;:15;:23;:25::i;:::-;4498:44;;4631:23;4645:8;4631:13;:23::i;:::-;4630:24;4622:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;4752:32;4762:8;4771:1;4762:11;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4775:8;4752:9;:32::i;:::-;4802:27;:15;:25;:27::i;:::-;4480:364;4476:3;;;;;:::i;:::-;;;;4429:415;;;;4885:1;4857:12;:25;4870:8;4879:1;4870:11;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4857:25;;;;;;;;;;;;;;;:29;;;;4313:3;;;;;:::i;:::-;;;;4261:636;;;;4195:708:::0;;:::o;1790:205:4:-;1862:7;1906:1;1889:19;;:5;:19;;;;1881:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1972:9;:16;1982:5;1972:16;;;;;;;;;;;;;;;;1965:23;;1790:205;;;:::o;1598:92:12:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;1572:40:11:-;;;;:::o;10235:197::-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10292:9:11::1;10287:139;10311:5;:12;;;;10307:1;:16;10287:139;;;10344:22;10377:5;10383:1;10377:8;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10344:42;;10400:15;10408:6;10400:7;:15::i;:::-;10330:96;10325:3;;;;;:::i;:::-;;;;10287:139;;;;10235:197::o:0;3482:98:13:-;3533:7;3559;3567:5;3559:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3552:21;;3482:98;;;:::o;966:85:12:-;1012:7;1038:6;;;;;;;;;;;1031:13;;966:85;:::o;1662:31:11:-;;;;;;;;;;;;;:::o;2511:102:4:-;2567:13;2599:7;2592:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2511:102;:::o;3289:107:13:-;3345:7;3371:9;:18;3381:7;3371:18;;;;;;;;;;;;;;;;3364:25;;3289:107;;;:::o;2429:25:11:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10023:87::-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10092:11:11::1;;;;;;;;;;;10091:12;10077:11;;:26;;;;;;;;;;;;;;;;;;10023:87::o:0;4144:290:4:-;4258:12;:10;:12::i;:::-;4246:24;;:8;:24;;;;4238:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4356:8;4311:18;:32;4330:12;:10;:12::i;:::-;4311:32;;;;;;;;;;;;;;;:42;4344:8;4311:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4408:8;4379:48;;4394:12;:10;:12::i;:::-;4379:48;;;4418:8;4379:48;;;;;;:::i;:::-;;;;;;;;4144:290;;:::o;5365:320::-;5534:41;5553:12;:10;:12::i;:::-;5567:7;5534:18;:41::i;:::-;5526:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;2812:441:11:-;2885:13;2918:16;2926:7;2918;:16::i;:::-;2910:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;3005:18;3026:10;:8;:10::i;:::-;3005:31;;3050:8;;;;;;;;;;;3046:105;;3101:1;3086:4;3080:18;:22;:60;;;;;;;;;;;;;;;;;3129:4;3112:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;3080:60;3073:67;;;;;3046:105;3188:1;3173:4;3167:18;:22;:79;;;;;;;;;;;;;;;;;3216:4;3222:17;3231:7;3222:8;:17::i;:::-;3199:41;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3167:79;3160:86;;;2812:441;;;;:::o;3092:103:13:-;3146:7;3172;:16;3180:7;3172:16;;;;;;;;;;;;;;;;3165:23;;3092:103;;;:::o;1623:33:11:-;;;;;;;;;;;;;:::o;2913:93:13:-;2959:7;2985:14;;2978:21;;2913:93;:::o;8574:573:11:-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8654:6:11::1;8663:5;8654:14;;8650:491;8674:3;8670:1;:7;8650:491;;;8697:8;8731:6:::0;8727:404:::1;8744:3;8727:404;;8771:18;8792:23;8811:1;8813;8792:18;:23::i;:::-;8771:44;;8858:1;8836:24;;:10;:24;;;8833:284;;8916:1;8886:14;:26;8901:10;8886:26;;;;;;;;;;;;;;;;:31;8883:159;;8974:11;;;;;;;;;;;:33;;;9008:10;8974:45;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8944:14;:26;8959:10;8944:26;;;;;;;;;;;;;;;;:75;;;;;;;:::i;:::-;;;;;;;;8883:159;8833:284;;;9094:4;9088:10;;8833:284;8753:378;8749:3;;;;;:::i;:::-;;;;8727:404;;;;8683:458;8679:3;;;;;:::i;:::-;;;;8650:491;;;;8574:573:::0;;:::o;4500:162:4:-;4597:4;4620:18;:25;4639:5;4620:25;;;;;;;;;;;;;;;:35;4646:8;4620:35;;;;;;;;;;;;;;;;;;;;;;;;;4613:42;;4500:162;;;;:::o;2376:47:11:-;;;;;;;;;;;;;;;;;:::o;5561:497::-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5664:17:11::1;;5655:6;5627:25;:15;:23;:25::i;:::-;:34;;;;:::i;:::-;:54;5619:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;5718:6;5714:338;5734:6;5730:1;:10;5714:338;;;5760:16;5779:25;:15;:23;:25::i;:::-;5760:44;;5827:23;5841:8;5827:13;:23::i;:::-;5826:24;5818:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;5920:17;;5892:25;:15;:23;:25::i;:::-;:45;5884:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5969:31;5979:10;5991:8;5969:9;:31::i;:::-;6014:27;:15;:25;:27::i;:::-;5746:306;5742:3;;;;;:::i;:::-;;;;5714:338;;;;5561:497:::0;:::o;1839:189:12:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1947:1:::1;1927:22;;:8;:22;;;;1919:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;10125:100:11:-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10208:10:11::1;10196:9;:22;;;;10125:100:::0;:::o;3491:106::-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3579:12:11::1;3559:17;:32;;;;3491:106:::0;:::o;4913:643::-;4999:4;4984:19;;:11;;;;;;;;;;;:19;;;4976:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;5058:17;;5048:6;:27;;5040:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;5145:6;5133:9;;:18;;;;:::i;:::-;5120:9;:31;5112:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;5234:17;;5206:25;:15;:23;:25::i;:::-;:45;5198:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5301:6;5297:253;5317:6;5313:1;:10;5297:253;;;5343:16;5362:25;:15;:23;:25::i;:::-;5343:44;;5410:23;5424:8;5410:13;:23::i;:::-;5409:24;5401:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;5467:31;5477:10;5489:8;5467:9;:31::i;:::-;5512:27;:15;:25;:27::i;:::-;5329:221;5325:3;;;;;:::i;:::-;;;;5297:253;;;;4913:643;:::o;763:155:3:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;7157:125:4:-;7222:4;7273:1;7245:30;;:7;:16;7253:7;7245:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7238:37;;7157:125;;;:::o;11008:171::-;11109:2;11082:15;:24;11098:7;11082:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11164:7;11160:2;11126:46;;11135:23;11150:7;11135:14;:23::i;:::-;11126:46;;;;;;;;;;;;11008:171;;:::o;773:112:2:-;838:7;864;:14;;;857:21;;773:112;;;:::o;2012:312:0:-;2126:6;2101:21;:31;;2093:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2178:12;2196:9;:14;;2218:6;2196:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2177:52;;;2247:7;2239:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2083:241;2012:312;;:::o;7440:344:4:-;7533:4;7557:16;7565:7;7557;:16::i;:::-;7549:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;7689:16;;:7;:16;;;:51;;;;7733:7;7709:31;;:20;7721:7;7709:11;:20::i;:::-;:31;;;7689:51;:87;;;;7744:32;7761:5;7768:7;7744:16;:32::i;:::-;7689:87;7681:96;;;7440:344;;;;:::o;10337:560::-;10491:4;10464:31;;:23;10479:7;10464:14;:23::i;:::-;:31;;;10456:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10573:1;10559:16;;:2;:16;;;;10551:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;10787:1;10768:9;:15;10778:4;10768:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10815:1;10798:9;:13;10808:2;10798:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10845:2;10826:7;:16;10834:7;10826:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10882:7;10878:2;10863:27;;10872:4;10863:27;;;;;;;;;;;;10337:560;;;:::o;8114:108::-;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;:::-;8114:108;;:::o;891:123:2:-;996:1;978:7;:14;;;:19;;;;;;;;;;;891:123;:::o;2034:169:12:-;2089:16;2108:6;;;;;;;;;;;2089:25;;2133:8;2124:6;;:17;;;;;;;;;;;;;;;;;;2187:8;2156:40;;2177:8;2156:40;;;;;;;;;;;;2079:124;2034:169;:::o;6547:307:4:-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6547:307;;;;:::o;3263:106:11:-;3323:13;3355:7;3348:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3263:106;:::o;10539:552::-;10588:27;10637:1;10631:2;:7;10627:48;;;10654:10;;;;;;;;;;;;;;;;;;;;;10627:48;10684:6;10693:2;10684:11;;10705:8;10723:66;10735:1;10730;:6;10723:66;;10752:5;;;;;:::i;:::-;;;;10776:2;10771:7;;;;;:::i;:::-;;;10723:66;;;10798:17;10828:3;10818:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10798:34;;10842:6;10851:3;10842:12;;10864:192;10877:1;10871:2;:7;10864:192;;10900:1;10898;:3;;;;:::i;:::-;10894:7;;10915:10;10955:2;10950;10945;:7;;;;:::i;:::-;:12;;;;:::i;:::-;10940:2;:17;;;;:::i;:::-;10929:2;:29;;;;:::i;:::-;10915:44;;10973:9;10992:4;10985:12;;10973:24;;11021:2;11011:4;11016:1;11011:7;;;;;;;;:::i;:::-;;;;;:12;;;;;;;;;;;11043:2;11037:8;;;;;:::i;:::-;;;10880:176;;10864:192;;;11079:4;11065:19;;;;;;10539:552;;;;:::o;6063:2496::-;6132:16;6169:1;6162:5;:8;6159:2384;;;6189:11;;;;;;;;;;;:24;;;6214:1;6189:27;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;6185:166;;6333:1;6318:18;;;;6185:166;6269:8;6262:16;;;;;6159:2384;6385:1;6378:5;:8;6375:2168;;;6405:11;;;;;;;;;;;:24;;;6430:1;6405:27;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;6401:166;;6549:1;6534:18;;;;6401:166;6485:8;6478:16;;;;;6375:2168;6603:1;6596:5;:8;6592:1951;;;6623:11;;;;;;;;;;;:26;;;6650:1;6623:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;6619:168;;6769:1;6754:18;;;;6619:168;6705:8;6698:16;;;;;6592:1951;6830:1;6823:5;:8;6820:1723;;;6850:11;;;;;;;;;;;:25;;;6876:1;6850:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;6846:166;;6994:1;6979:18;;;;6846:166;6930:8;6923:16;;;;;6820:1723;7047:1;7040:5;:8;7037:1506;;;7067:11;;;;;;;;;;;:25;;;7093:1;7067:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;7063:166;;7211:1;7196:18;;;;7063:166;7147:8;7140:16;;;;;7037:1506;7265:1;7258:5;:8;7254:1289;;;7285:11;;;;;;;;;;;:24;;;7310:1;7285:27;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;7281:165;;7428:1;7413:18;;;;7281:165;7364:8;7357:16;;;;;7254:1289;7480:1;7473:5;:8;7470:1073;;;7500:11;;;;;;;;;;;:26;;;7527:1;7500:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;7496:167;;7645:1;7630:18;;;;7496:167;7581:8;7574:16;;;;;7470:1073;7697:1;7690:5;:8;7687:856;;;7717:11;;;;;;;;;;;:26;;;7744:1;7717:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;7713:167;;7862:1;7847:18;;;;7713:167;7798:8;7791:16;;;;;7687:856;7915:1;7908:5;:8;7905:638;;;7935:11;;;;;;;;;;;:25;;;7961:1;7935:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;7931:166;;8079:1;8064:18;;;;7931:166;8015:8;8008:16;;;;;7905:638;8133:1;8126:5;:8;8122:421;;;8153:11;;;;;;;;;;;:24;;;8178:1;8153:27;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;8149:165;;8296:1;8281:18;;;;8149:165;8232:8;8225:16;;;;;8122:421;8348:2;8341:5;:9;8338:205;;;8369:11;;;;;;;;;;;:27;;;8397:1;8369:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;8365:168;;8515:1;8500:18;;;;8365:168;8451:8;8444:16;;;;;8338:205;6063:2496;;;;;:::o;13070:122:4:-;;;;:::o;8443:311::-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8443:311;;;:::o;11732:782::-;11882:4;11902:15;:2;:13;;;:15::i;:::-;11898:610;;;11953:2;11937:36;;;11974:12;:10;:12::i;:::-;11988:4;11994:7;12003:5;11937:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11933:523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12197:1;12180:6;:13;:18;12176:266;;;12222:60;;;;;;;;;;:::i;:::-;;;;;;;;12176:266;12394:6;12388:13;12379:6;12375:2;12371:15;12364:38;11933:523;12069:45;;;12059:55;;;:6;:55;;;;12052:62;;;;;11898:610;12493:4;12486:11;;11732:782;;;;;;;:::o;9076:372::-;9169:1;9155:16;;:2;:16;;;;9147:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9227:16;9235:7;9227;:16::i;:::-;9226:17;9218:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;9360:1;9343:9;:13;9353:2;9343:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9390:2;9371:7;:16;9379:7;9371:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9433:7;9429:2;9408:33;;9425:1;9408:33;;;;;;;;;;;;9076:372;;:::o;718:377:0:-;778:4;981:12;1046:7;1034:20;1026:28;;1087:1;1080:4;:8;1073:15;;;718:377;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:16:-;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:143::-;1043:5;1074:6;1068:13;1059:22;;1090:33;1117:5;1090:33;:::i;:::-;986:143;;;;:::o;1135:155::-;1189:5;1227:6;1214:20;1205:29;;1243:41;1278:5;1243:41;:::i;:::-;1135:155;;;;:::o;1296:133::-;1339:5;1377:6;1364:20;1355:29;;1393:30;1417:5;1393:30;:::i;:::-;1296:133;;;;:::o;1435:137::-;1480:5;1518:6;1505:20;1496:29;;1534:32;1560:5;1534:32;:::i;:::-;1435:137;;;;:::o;1578:141::-;1634:5;1665:6;1659:13;1650:22;;1681:32;1707:5;1681:32;:::i;:::-;1578:141;;;;:::o;1738:338::-;1793:5;1842:3;1835:4;1827:6;1823:17;1819:27;1809:122;;1850:79;;:::i;:::-;1809:122;1967:6;1954:20;1992:78;2066:3;2058:6;2051:4;2043:6;2039:17;1992:78;:::i;:::-;1983:87;;1799:277;1738:338;;;;:::o;2096:340::-;2152:5;2201:3;2194:4;2186:6;2182:17;2178:27;2168:122;;2209:79;;:::i;:::-;2168:122;2326:6;2313:20;2351:79;2426:3;2418:6;2411:4;2403:6;2399:17;2351:79;:::i;:::-;2342:88;;2158:278;2096:340;;;;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:143::-;2644:5;2675:6;2669:13;2660:22;;2691:33;2718:5;2691:33;:::i;:::-;2587:143;;;;:::o;2736:329::-;2795:6;2844:2;2832:9;2823:7;2819:23;2815:32;2812:119;;;2850:79;;:::i;:::-;2812:119;2970:1;2995:53;3040:7;3031:6;3020:9;3016:22;2995:53;:::i;:::-;2985:63;;2941:117;2736:329;;;;:::o;3071:351::-;3141:6;3190:2;3178:9;3169:7;3165:23;3161:32;3158:119;;;3196:79;;:::i;:::-;3158:119;3316:1;3341:64;3397:7;3388:6;3377:9;3373:22;3341:64;:::i;:::-;3331:74;;3287:128;3071:351;;;;:::o;3428:345::-;3495:6;3544:2;3532:9;3523:7;3519:23;3515:32;3512:119;;;3550:79;;:::i;:::-;3512:119;3670:1;3695:61;3748:7;3739:6;3728:9;3724:22;3695:61;:::i;:::-;3685:71;;3641:125;3428:345;;;;:::o;3779:474::-;3847:6;3855;3904:2;3892:9;3883:7;3879:23;3875:32;3872:119;;;3910:79;;:::i;:::-;3872:119;4030:1;4055:53;4100:7;4091:6;4080:9;4076:22;4055:53;:::i;:::-;4045:63;;4001:117;4157:2;4183:53;4228:7;4219:6;4208:9;4204:22;4183:53;:::i;:::-;4173:63;;4128:118;3779:474;;;;;:::o;4259:619::-;4336:6;4344;4352;4401:2;4389:9;4380:7;4376:23;4372:32;4369:119;;;4407:79;;:::i;:::-;4369:119;4527:1;4552:53;4597:7;4588:6;4577:9;4573:22;4552:53;:::i;:::-;4542:63;;4498:117;4654:2;4680:53;4725:7;4716:6;4705:9;4701:22;4680:53;:::i;:::-;4670:63;;4625:118;4782:2;4808:53;4853:7;4844:6;4833:9;4829:22;4808:53;:::i;:::-;4798:63;;4753:118;4259:619;;;;;:::o;4884:943::-;4979:6;4987;4995;5003;5052:3;5040:9;5031:7;5027:23;5023:33;5020:120;;;5059:79;;:::i;:::-;5020:120;5179:1;5204:53;5249:7;5240:6;5229:9;5225:22;5204:53;:::i;:::-;5194:63;;5150:117;5306:2;5332:53;5377:7;5368:6;5357:9;5353:22;5332:53;:::i;:::-;5322:63;;5277:118;5434:2;5460:53;5505:7;5496:6;5485:9;5481:22;5460:53;:::i;:::-;5450:63;;5405:118;5590:2;5579:9;5575:18;5562:32;5621:18;5613:6;5610:30;5607:117;;;5643:79;;:::i;:::-;5607:117;5748:62;5802:7;5793:6;5782:9;5778:22;5748:62;:::i;:::-;5738:72;;5533:287;4884:943;;;;;;;:::o;5833:468::-;5898:6;5906;5955:2;5943:9;5934:7;5930:23;5926:32;5923:119;;;5961:79;;:::i;:::-;5923:119;6081:1;6106:53;6151:7;6142:6;6131:9;6127:22;6106:53;:::i;:::-;6096:63;;6052:117;6208:2;6234:50;6276:7;6267:6;6256:9;6252:22;6234:50;:::i;:::-;6224:60;;6179:115;5833:468;;;;;:::o;6307:474::-;6375:6;6383;6432:2;6420:9;6411:7;6407:23;6403:32;6400:119;;;6438:79;;:::i;:::-;6400:119;6558:1;6583:53;6628:7;6619:6;6608:9;6604:22;6583:53;:::i;:::-;6573:63;;6529:117;6685:2;6711:53;6756:7;6747:6;6736:9;6732:22;6711:53;:::i;:::-;6701:63;;6656:118;6307:474;;;;;:::o;6787:327::-;6845:6;6894:2;6882:9;6873:7;6869:23;6865:32;6862:119;;;6900:79;;:::i;:::-;6862:119;7020:1;7045:52;7089:7;7080:6;7069:9;7065:22;7045:52;:::i;:::-;7035:62;;6991:116;6787:327;;;;:::o;7120:349::-;7189:6;7238:2;7226:9;7217:7;7213:23;7209:32;7206:119;;;7244:79;;:::i;:::-;7206:119;7364:1;7389:63;7444:7;7435:6;7424:9;7420:22;7389:63;:::i;:::-;7379:73;;7335:127;7120:349;;;;:::o;7475:509::-;7544:6;7593:2;7581:9;7572:7;7568:23;7564:32;7561:119;;;7599:79;;:::i;:::-;7561:119;7747:1;7736:9;7732:17;7719:31;7777:18;7769:6;7766:30;7763:117;;;7799:79;;:::i;:::-;7763:117;7904:63;7959:7;7950:6;7939:9;7935:22;7904:63;:::i;:::-;7894:73;;7690:287;7475:509;;;;:::o;7990:329::-;8049:6;8098:2;8086:9;8077:7;8073:23;8069:32;8066:119;;;8104:79;;:::i;:::-;8066:119;8224:1;8249:53;8294:7;8285:6;8274:9;8270:22;8249:53;:::i;:::-;8239:63;;8195:117;7990:329;;;;:::o;8325:351::-;8395:6;8444:2;8432:9;8423:7;8419:23;8415:32;8412:119;;;8450:79;;:::i;:::-;8412:119;8570:1;8595:64;8651:7;8642:6;8631:9;8627:22;8595:64;:::i;:::-;8585:74;;8541:128;8325:351;;;;:::o;8682:474::-;8750:6;8758;8807:2;8795:9;8786:7;8782:23;8778:32;8775:119;;;8813:79;;:::i;:::-;8775:119;8933:1;8958:53;9003:7;8994:6;8983:9;8979:22;8958:53;:::i;:::-;8948:63;;8904:117;9060:2;9086:53;9131:7;9122:6;9111:9;9107:22;9086:53;:::i;:::-;9076:63;;9031:118;8682:474;;;;;:::o;9162:179::-;9231:10;9252:46;9294:3;9286:6;9252:46;:::i;:::-;9330:4;9325:3;9321:14;9307:28;;9162:179;;;;:::o;9347:147::-;9442:45;9481:5;9442:45;:::i;:::-;9437:3;9430:58;9347:147;;:::o;9500:108::-;9577:24;9595:5;9577:24;:::i;:::-;9572:3;9565:37;9500:108;;:::o;9614:118::-;9701:24;9719:5;9701:24;:::i;:::-;9696:3;9689:37;9614:118;;:::o;9768:732::-;9887:3;9916:54;9964:5;9916:54;:::i;:::-;9986:86;10065:6;10060:3;9986:86;:::i;:::-;9979:93;;10096:56;10146:5;10096:56;:::i;:::-;10175:7;10206:1;10191:284;10216:6;10213:1;10210:13;10191:284;;;10292:6;10286:13;10319:63;10378:3;10363:13;10319:63;:::i;:::-;10312:70;;10405:60;10458:6;10405:60;:::i;:::-;10395:70;;10251:224;10238:1;10235;10231:9;10226:14;;10191:284;;;10195:14;10491:3;10484:10;;9892:608;;;9768:732;;;;:::o;10506:109::-;10587:21;10602:5;10587:21;:::i;:::-;10582:3;10575:34;10506:109;;:::o;10621:360::-;10707:3;10735:38;10767:5;10735:38;:::i;:::-;10789:70;10852:6;10847:3;10789:70;:::i;:::-;10782:77;;10868:52;10913:6;10908:3;10901:4;10894:5;10890:16;10868:52;:::i;:::-;10945:29;10967:6;10945:29;:::i;:::-;10940:3;10936:39;10929:46;;10711:270;10621:360;;;;:::o;10987:364::-;11075:3;11103:39;11136:5;11103:39;:::i;:::-;11158:71;11222:6;11217:3;11158:71;:::i;:::-;11151:78;;11238:52;11283:6;11278:3;11271:4;11264:5;11260:16;11238:52;:::i;:::-;11315:29;11337:6;11315:29;:::i;:::-;11310:3;11306:39;11299:46;;11079:272;10987:364;;;;:::o;11357:377::-;11463:3;11491:39;11524:5;11491:39;:::i;:::-;11546:89;11628:6;11623:3;11546:89;:::i;:::-;11539:96;;11644:52;11689:6;11684:3;11677:4;11670:5;11666:16;11644:52;:::i;:::-;11721:6;11716:3;11712:16;11705:23;;11467:267;11357:377;;;;:::o;11740:366::-;11882:3;11903:67;11967:2;11962:3;11903:67;:::i;:::-;11896:74;;11979:93;12068:3;11979:93;:::i;:::-;12097:2;12092:3;12088:12;12081:19;;11740:366;;;:::o;12112:::-;12254:3;12275:67;12339:2;12334:3;12275:67;:::i;:::-;12268:74;;12351:93;12440:3;12351:93;:::i;:::-;12469:2;12464:3;12460:12;12453:19;;12112:366;;;:::o;12484:::-;12626:3;12647:67;12711:2;12706:3;12647:67;:::i;:::-;12640:74;;12723:93;12812:3;12723:93;:::i;:::-;12841:2;12836:3;12832:12;12825:19;;12484:366;;;:::o;12856:::-;12998:3;13019:67;13083:2;13078:3;13019:67;:::i;:::-;13012:74;;13095:93;13184:3;13095:93;:::i;:::-;13213:2;13208:3;13204:12;13197:19;;12856:366;;;:::o;13228:::-;13370:3;13391:67;13455:2;13450:3;13391:67;:::i;:::-;13384:74;;13467:93;13556:3;13467:93;:::i;:::-;13585:2;13580:3;13576:12;13569:19;;13228:366;;;:::o;13600:::-;13742:3;13763:67;13827:2;13822:3;13763:67;:::i;:::-;13756:74;;13839:93;13928:3;13839:93;:::i;:::-;13957:2;13952:3;13948:12;13941:19;;13600:366;;;:::o;13972:::-;14114:3;14135:67;14199:2;14194:3;14135:67;:::i;:::-;14128:74;;14211:93;14300:3;14211:93;:::i;:::-;14329:2;14324:3;14320:12;14313:19;;13972:366;;;:::o;14344:::-;14486:3;14507:67;14571:2;14566:3;14507:67;:::i;:::-;14500:74;;14583:93;14672:3;14583:93;:::i;:::-;14701:2;14696:3;14692:12;14685:19;;14344:366;;;:::o;14716:::-;14858:3;14879:67;14943:2;14938:3;14879:67;:::i;:::-;14872:74;;14955:93;15044:3;14955:93;:::i;:::-;15073:2;15068:3;15064:12;15057:19;;14716:366;;;:::o;15088:::-;15230:3;15251:67;15315:2;15310:3;15251:67;:::i;:::-;15244:74;;15327:93;15416:3;15327:93;:::i;:::-;15445:2;15440:3;15436:12;15429:19;;15088:366;;;:::o;15460:::-;15602:3;15623:67;15687:2;15682:3;15623:67;:::i;:::-;15616:74;;15699:93;15788:3;15699:93;:::i;:::-;15817:2;15812:3;15808:12;15801:19;;15460:366;;;:::o;15832:::-;15974:3;15995:67;16059:2;16054:3;15995:67;:::i;:::-;15988:74;;16071:93;16160:3;16071:93;:::i;:::-;16189:2;16184:3;16180:12;16173:19;;15832:366;;;:::o;16204:::-;16346:3;16367:67;16431:2;16426:3;16367:67;:::i;:::-;16360:74;;16443:93;16532:3;16443:93;:::i;:::-;16561:2;16556:3;16552:12;16545:19;;16204:366;;;:::o;16576:::-;16718:3;16739:67;16803:2;16798:3;16739:67;:::i;:::-;16732:74;;16815:93;16904:3;16815:93;:::i;:::-;16933:2;16928:3;16924:12;16917:19;;16576:366;;;:::o;16948:::-;17090:3;17111:67;17175:2;17170:3;17111:67;:::i;:::-;17104:74;;17187:93;17276:3;17187:93;:::i;:::-;17305:2;17300:3;17296:12;17289:19;;16948:366;;;:::o;17320:::-;17462:3;17483:67;17547:2;17542:3;17483:67;:::i;:::-;17476:74;;17559:93;17648:3;17559:93;:::i;:::-;17677:2;17672:3;17668:12;17661:19;;17320:366;;;:::o;17692:::-;17834:3;17855:67;17919:2;17914:3;17855:67;:::i;:::-;17848:74;;17931:93;18020:3;17931:93;:::i;:::-;18049:2;18044:3;18040:12;18033:19;;17692:366;;;:::o;18064:::-;18206:3;18227:67;18291:2;18286:3;18227:67;:::i;:::-;18220:74;;18303:93;18392:3;18303:93;:::i;:::-;18421:2;18416:3;18412:12;18405:19;;18064:366;;;:::o;18436:::-;18578:3;18599:67;18663:2;18658:3;18599:67;:::i;:::-;18592:74;;18675:93;18764:3;18675:93;:::i;:::-;18793:2;18788:3;18784:12;18777:19;;18436:366;;;:::o;18808:::-;18950:3;18971:67;19035:2;19030:3;18971:67;:::i;:::-;18964:74;;19047:93;19136:3;19047:93;:::i;:::-;19165:2;19160:3;19156:12;19149:19;;18808:366;;;:::o;19180:::-;19322:3;19343:67;19407:2;19402:3;19343:67;:::i;:::-;19336:74;;19419:93;19508:3;19419:93;:::i;:::-;19537:2;19532:3;19528:12;19521:19;;19180:366;;;:::o;19552:::-;19694:3;19715:67;19779:2;19774:3;19715:67;:::i;:::-;19708:74;;19791:93;19880:3;19791:93;:::i;:::-;19909:2;19904:3;19900:12;19893:19;;19552:366;;;:::o;19924:::-;20066:3;20087:67;20151:2;20146:3;20087:67;:::i;:::-;20080:74;;20163:93;20252:3;20163:93;:::i;:::-;20281:2;20276:3;20272:12;20265:19;;19924:366;;;:::o;20296:::-;20438:3;20459:67;20523:2;20518:3;20459:67;:::i;:::-;20452:74;;20535:93;20624:3;20535:93;:::i;:::-;20653:2;20648:3;20644:12;20637:19;;20296:366;;;:::o;20668:::-;20810:3;20831:67;20895:2;20890:3;20831:67;:::i;:::-;20824:74;;20907:93;20996:3;20907:93;:::i;:::-;21025:2;21020:3;21016:12;21009:19;;20668:366;;;:::o;21040:::-;21182:3;21203:67;21267:2;21262:3;21203:67;:::i;:::-;21196:74;;21279:93;21368:3;21279:93;:::i;:::-;21397:2;21392:3;21388:12;21381:19;;21040:366;;;:::o;21412:398::-;21571:3;21592:83;21673:1;21668:3;21592:83;:::i;:::-;21585:90;;21684:93;21773:3;21684:93;:::i;:::-;21802:1;21797:3;21793:11;21786:18;;21412:398;;;:::o;21816:366::-;21958:3;21979:67;22043:2;22038:3;21979:67;:::i;:::-;21972:74;;22055:93;22144:3;22055:93;:::i;:::-;22173:2;22168:3;22164:12;22157:19;;21816:366;;;:::o;22188:::-;22330:3;22351:67;22415:2;22410:3;22351:67;:::i;:::-;22344:74;;22427:93;22516:3;22427:93;:::i;:::-;22545:2;22540:3;22536:12;22529:19;;22188:366;;;:::o;22560:::-;22702:3;22723:67;22787:2;22782:3;22723:67;:::i;:::-;22716:74;;22799:93;22888:3;22799:93;:::i;:::-;22917:2;22912:3;22908:12;22901:19;;22560:366;;;:::o;22932:118::-;23019:24;23037:5;23019:24;:::i;:::-;23014:3;23007:37;22932:118;;:::o;23056:275::-;23188:3;23210:95;23301:3;23292:6;23210:95;:::i;:::-;23203:102;;23322:3;23315:10;;23056:275;;;;:::o;23337:435::-;23517:3;23539:95;23630:3;23621:6;23539:95;:::i;:::-;23532:102;;23651:95;23742:3;23733:6;23651:95;:::i;:::-;23644:102;;23763:3;23756:10;;23337:435;;;;;:::o;23778:379::-;23962:3;23984:147;24127:3;23984:147;:::i;:::-;23977:154;;24148:3;24141:10;;23778:379;;;:::o;24163:222::-;24256:4;24294:2;24283:9;24279:18;24271:26;;24307:71;24375:1;24364:9;24360:17;24351:6;24307:71;:::i;:::-;24163:222;;;;:::o;24391:348::-;24520:4;24558:2;24547:9;24543:18;24535:26;;24571:79;24647:1;24636:9;24632:17;24623:6;24571:79;:::i;:::-;24660:72;24728:2;24717:9;24713:18;24704:6;24660:72;:::i;:::-;24391:348;;;;;:::o;24745:640::-;24940:4;24978:3;24967:9;24963:19;24955:27;;24992:71;25060:1;25049:9;25045:17;25036:6;24992:71;:::i;:::-;25073:72;25141:2;25130:9;25126:18;25117:6;25073:72;:::i;:::-;25155;25223:2;25212:9;25208:18;25199:6;25155:72;:::i;:::-;25274:9;25268:4;25264:20;25259:2;25248:9;25244:18;25237:48;25302:76;25373:4;25364:6;25302:76;:::i;:::-;25294:84;;24745:640;;;;;;;:::o;25391:332::-;25512:4;25550:2;25539:9;25535:18;25527:26;;25563:71;25631:1;25620:9;25616:17;25607:6;25563:71;:::i;:::-;25644:72;25712:2;25701:9;25697:18;25688:6;25644:72;:::i;:::-;25391:332;;;;;:::o;25729:373::-;25872:4;25910:2;25899:9;25895:18;25887:26;;25959:9;25953:4;25949:20;25945:1;25934:9;25930:17;25923:47;25987:108;26090:4;26081:6;25987:108;:::i;:::-;25979:116;;25729:373;;;;:::o;26108:210::-;26195:4;26233:2;26222:9;26218:18;26210:26;;26246:65;26308:1;26297:9;26293:17;26284:6;26246:65;:::i;:::-;26108:210;;;;:::o;26324:313::-;26437:4;26475:2;26464:9;26460:18;26452:26;;26524:9;26518:4;26514:20;26510:1;26499:9;26495:17;26488:47;26552:78;26625:4;26616:6;26552:78;:::i;:::-;26544:86;;26324:313;;;;:::o;26643:419::-;26809:4;26847:2;26836:9;26832:18;26824:26;;26896:9;26890:4;26886:20;26882:1;26871:9;26867:17;26860:47;26924:131;27050:4;26924:131;:::i;:::-;26916:139;;26643:419;;;:::o;27068:::-;27234:4;27272:2;27261:9;27257:18;27249:26;;27321:9;27315:4;27311:20;27307:1;27296:9;27292:17;27285:47;27349:131;27475:4;27349:131;:::i;:::-;27341:139;;27068:419;;;:::o;27493:::-;27659:4;27697:2;27686:9;27682:18;27674:26;;27746:9;27740:4;27736:20;27732:1;27721:9;27717:17;27710:47;27774:131;27900:4;27774:131;:::i;:::-;27766:139;;27493:419;;;:::o;27918:::-;28084:4;28122:2;28111:9;28107:18;28099:26;;28171:9;28165:4;28161:20;28157:1;28146:9;28142:17;28135:47;28199:131;28325:4;28199:131;:::i;:::-;28191:139;;27918:419;;;:::o;28343:::-;28509:4;28547:2;28536:9;28532:18;28524:26;;28596:9;28590:4;28586:20;28582:1;28571:9;28567:17;28560:47;28624:131;28750:4;28624:131;:::i;:::-;28616:139;;28343:419;;;:::o;28768:::-;28934:4;28972:2;28961:9;28957:18;28949:26;;29021:9;29015:4;29011:20;29007:1;28996:9;28992:17;28985:47;29049:131;29175:4;29049:131;:::i;:::-;29041:139;;28768:419;;;:::o;29193:::-;29359:4;29397:2;29386:9;29382:18;29374:26;;29446:9;29440:4;29436:20;29432:1;29421:9;29417:17;29410:47;29474:131;29600:4;29474:131;:::i;:::-;29466:139;;29193:419;;;:::o;29618:::-;29784:4;29822:2;29811:9;29807:18;29799:26;;29871:9;29865:4;29861:20;29857:1;29846:9;29842:17;29835:47;29899:131;30025:4;29899:131;:::i;:::-;29891:139;;29618:419;;;:::o;30043:::-;30209:4;30247:2;30236:9;30232:18;30224:26;;30296:9;30290:4;30286:20;30282:1;30271:9;30267:17;30260:47;30324:131;30450:4;30324:131;:::i;:::-;30316:139;;30043:419;;;:::o;30468:::-;30634:4;30672:2;30661:9;30657:18;30649:26;;30721:9;30715:4;30711:20;30707:1;30696:9;30692:17;30685:47;30749:131;30875:4;30749:131;:::i;:::-;30741:139;;30468:419;;;:::o;30893:::-;31059:4;31097:2;31086:9;31082:18;31074:26;;31146:9;31140:4;31136:20;31132:1;31121:9;31117:17;31110:47;31174:131;31300:4;31174:131;:::i;:::-;31166:139;;30893:419;;;:::o;31318:::-;31484:4;31522:2;31511:9;31507:18;31499:26;;31571:9;31565:4;31561:20;31557:1;31546:9;31542:17;31535:47;31599:131;31725:4;31599:131;:::i;:::-;31591:139;;31318:419;;;:::o;31743:::-;31909:4;31947:2;31936:9;31932:18;31924:26;;31996:9;31990:4;31986:20;31982:1;31971:9;31967:17;31960:47;32024:131;32150:4;32024:131;:::i;:::-;32016:139;;31743:419;;;:::o;32168:::-;32334:4;32372:2;32361:9;32357:18;32349:26;;32421:9;32415:4;32411:20;32407:1;32396:9;32392:17;32385:47;32449:131;32575:4;32449:131;:::i;:::-;32441:139;;32168:419;;;:::o;32593:::-;32759:4;32797:2;32786:9;32782:18;32774:26;;32846:9;32840:4;32836:20;32832:1;32821:9;32817:17;32810:47;32874:131;33000:4;32874:131;:::i;:::-;32866:139;;32593:419;;;:::o;33018:::-;33184:4;33222:2;33211:9;33207:18;33199:26;;33271:9;33265:4;33261:20;33257:1;33246:9;33242:17;33235:47;33299:131;33425:4;33299:131;:::i;:::-;33291:139;;33018:419;;;:::o;33443:::-;33609:4;33647:2;33636:9;33632:18;33624:26;;33696:9;33690:4;33686:20;33682:1;33671:9;33667:17;33660:47;33724:131;33850:4;33724:131;:::i;:::-;33716:139;;33443:419;;;:::o;33868:::-;34034:4;34072:2;34061:9;34057:18;34049:26;;34121:9;34115:4;34111:20;34107:1;34096:9;34092:17;34085:47;34149:131;34275:4;34149:131;:::i;:::-;34141:139;;33868:419;;;:::o;34293:::-;34459:4;34497:2;34486:9;34482:18;34474:26;;34546:9;34540:4;34536:20;34532:1;34521:9;34517:17;34510:47;34574:131;34700:4;34574:131;:::i;:::-;34566:139;;34293:419;;;:::o;34718:::-;34884:4;34922:2;34911:9;34907:18;34899:26;;34971:9;34965:4;34961:20;34957:1;34946:9;34942:17;34935:47;34999:131;35125:4;34999:131;:::i;:::-;34991:139;;34718:419;;;:::o;35143:::-;35309:4;35347:2;35336:9;35332:18;35324:26;;35396:9;35390:4;35386:20;35382:1;35371:9;35367:17;35360:47;35424:131;35550:4;35424:131;:::i;:::-;35416:139;;35143:419;;;:::o;35568:::-;35734:4;35772:2;35761:9;35757:18;35749:26;;35821:9;35815:4;35811:20;35807:1;35796:9;35792:17;35785:47;35849:131;35975:4;35849:131;:::i;:::-;35841:139;;35568:419;;;:::o;35993:::-;36159:4;36197:2;36186:9;36182:18;36174:26;;36246:9;36240:4;36236:20;36232:1;36221:9;36217:17;36210:47;36274:131;36400:4;36274:131;:::i;:::-;36266:139;;35993:419;;;:::o;36418:::-;36584:4;36622:2;36611:9;36607:18;36599:26;;36671:9;36665:4;36661:20;36657:1;36646:9;36642:17;36635:47;36699:131;36825:4;36699:131;:::i;:::-;36691:139;;36418:419;;;:::o;36843:::-;37009:4;37047:2;37036:9;37032:18;37024:26;;37096:9;37090:4;37086:20;37082:1;37071:9;37067:17;37060:47;37124:131;37250:4;37124:131;:::i;:::-;37116:139;;36843:419;;;:::o;37268:::-;37434:4;37472:2;37461:9;37457:18;37449:26;;37521:9;37515:4;37511:20;37507:1;37496:9;37492:17;37485:47;37549:131;37675:4;37549:131;:::i;:::-;37541:139;;37268:419;;;:::o;37693:::-;37859:4;37897:2;37886:9;37882:18;37874:26;;37946:9;37940:4;37936:20;37932:1;37921:9;37917:17;37910:47;37974:131;38100:4;37974:131;:::i;:::-;37966:139;;37693:419;;;:::o;38118:::-;38284:4;38322:2;38311:9;38307:18;38299:26;;38371:9;38365:4;38361:20;38357:1;38346:9;38342:17;38335:47;38399:131;38525:4;38399:131;:::i;:::-;38391:139;;38118:419;;;:::o;38543:::-;38709:4;38747:2;38736:9;38732:18;38724:26;;38796:9;38790:4;38786:20;38782:1;38771:9;38767:17;38760:47;38824:131;38950:4;38824:131;:::i;:::-;38816:139;;38543:419;;;:::o;38968:222::-;39061:4;39099:2;39088:9;39084:18;39076:26;;39112:71;39180:1;39169:9;39165:17;39156:6;39112:71;:::i;:::-;38968:222;;;;:::o;39196:129::-;39230:6;39257:20;;:::i;:::-;39247:30;;39286:33;39314:4;39306:6;39286:33;:::i;:::-;39196:129;;;:::o;39331:75::-;39364:6;39397:2;39391:9;39381:19;;39331:75;:::o;39412:307::-;39473:4;39563:18;39555:6;39552:30;39549:56;;;39585:18;;:::i;:::-;39549:56;39623:29;39645:6;39623:29;:::i;:::-;39615:37;;39707:4;39701;39697:15;39689:23;;39412:307;;;:::o;39725:308::-;39787:4;39877:18;39869:6;39866:30;39863:56;;;39899:18;;:::i;:::-;39863:56;39937:29;39959:6;39937:29;:::i;:::-;39929:37;;40021:4;40015;40011:15;40003:23;;39725:308;;;:::o;40039:132::-;40106:4;40129:3;40121:11;;40159:4;40154:3;40150:14;40142:22;;40039:132;;;:::o;40177:114::-;40244:6;40278:5;40272:12;40262:22;;40177:114;;;:::o;40297:98::-;40348:6;40382:5;40376:12;40366:22;;40297:98;;;:::o;40401:99::-;40453:6;40487:5;40481:12;40471:22;;40401:99;;;:::o;40506:113::-;40576:4;40608;40603:3;40599:14;40591:22;;40506:113;;;:::o;40625:184::-;40724:11;40758:6;40753:3;40746:19;40798:4;40793:3;40789:14;40774:29;;40625:184;;;;:::o;40815:168::-;40898:11;40932:6;40927:3;40920:19;40972:4;40967:3;40963:14;40948:29;;40815:168;;;;:::o;40989:147::-;41090:11;41127:3;41112:18;;40989:147;;;;:::o;41142:169::-;41226:11;41260:6;41255:3;41248:19;41300:4;41295:3;41291:14;41276:29;;41142:169;;;;:::o;41317:148::-;41419:11;41456:3;41441:18;;41317:148;;;;:::o;41471:305::-;41511:3;41530:20;41548:1;41530:20;:::i;:::-;41525:25;;41564:20;41582:1;41564:20;:::i;:::-;41559:25;;41718:1;41650:66;41646:74;41643:1;41640:81;41637:107;;;41724:18;;:::i;:::-;41637:107;41768:1;41765;41761:9;41754:16;;41471:305;;;;:::o;41782:237::-;41820:3;41839:18;41855:1;41839:18;:::i;:::-;41834:23;;41871:18;41887:1;41871:18;:::i;:::-;41866:23;;41961:1;41955:4;41951:12;41948:1;41945:19;41942:45;;;41967:18;;:::i;:::-;41942:45;42011:1;42008;42004:9;41997:16;;41782:237;;;;:::o;42025:185::-;42065:1;42082:20;42100:1;42082:20;:::i;:::-;42077:25;;42116:20;42134:1;42116:20;:::i;:::-;42111:25;;42155:1;42145:35;;42160:18;;:::i;:::-;42145:35;42202:1;42199;42195:9;42190:14;;42025:185;;;;:::o;42216:348::-;42256:7;42279:20;42297:1;42279:20;:::i;:::-;42274:25;;42313:20;42331:1;42313:20;:::i;:::-;42308:25;;42501:1;42433:66;42429:74;42426:1;42423:81;42418:1;42411:9;42404:17;42400:105;42397:131;;;42508:18;;:::i;:::-;42397:131;42556:1;42553;42549:9;42538:20;;42216:348;;;;:::o;42570:191::-;42610:4;42630:20;42648:1;42630:20;:::i;:::-;42625:25;;42664:20;42682:1;42664:20;:::i;:::-;42659:25;;42703:1;42700;42697:8;42694:34;;;42708:18;;:::i;:::-;42694:34;42753:1;42750;42746:9;42738:17;;42570:191;;;;:::o;42767:96::-;42804:7;42833:24;42851:5;42833:24;:::i;:::-;42822:35;;42767:96;;;:::o;42869:104::-;42914:7;42943:24;42961:5;42943:24;:::i;:::-;42932:35;;42869:104;;;:::o;42979:90::-;43013:7;43056:5;43049:13;43042:21;43031:32;;42979:90;;;:::o;43075:149::-;43111:7;43151:66;43144:5;43140:78;43129:89;;43075:149;;;:::o;43230:126::-;43267:7;43307:42;43300:5;43296:54;43285:65;;43230:126;;;:::o;43362:77::-;43399:7;43428:5;43417:16;;43362:77;;;:::o;43445:86::-;43480:7;43520:4;43513:5;43509:16;43498:27;;43445:86;;;:::o;43537:134::-;43595:9;43628:37;43659:5;43628:37;:::i;:::-;43615:50;;43537:134;;;:::o;43677:126::-;43727:9;43760:37;43791:5;43760:37;:::i;:::-;43747:50;;43677:126;;;:::o;43809:113::-;43859:9;43892:24;43910:5;43892:24;:::i;:::-;43879:37;;43809:113;;;:::o;43928:154::-;44012:6;44007:3;44002;43989:30;44074:1;44065:6;44060:3;44056:16;44049:27;43928:154;;;:::o;44088:307::-;44156:1;44166:113;44180:6;44177:1;44174:13;44166:113;;;44265:1;44260:3;44256:11;44250:18;44246:1;44241:3;44237:11;44230:39;44202:2;44199:1;44195:10;44190:15;;44166:113;;;44297:6;44294:1;44291:13;44288:101;;;44377:1;44368:6;44363:3;44359:16;44352:27;44288:101;44137:258;44088:307;;;:::o;44401:320::-;44445:6;44482:1;44476:4;44472:12;44462:22;;44529:1;44523:4;44519:12;44550:18;44540:81;;44606:4;44598:6;44594:17;44584:27;;44540:81;44668:2;44660:6;44657:14;44637:18;44634:38;44631:84;;;44687:18;;:::i;:::-;44631:84;44452:269;44401:320;;;:::o;44727:281::-;44810:27;44832:4;44810:27;:::i;:::-;44802:6;44798:40;44940:6;44928:10;44925:22;44904:18;44892:10;44889:34;44886:62;44883:88;;;44951:18;;:::i;:::-;44883:88;44991:10;44987:2;44980:22;44770:238;44727:281;;:::o;45014:233::-;45053:3;45076:24;45094:5;45076:24;:::i;:::-;45067:33;;45122:66;45115:5;45112:77;45109:103;;;45192:18;;:::i;:::-;45109:103;45239:1;45232:5;45228:13;45221:20;;45014:233;;;:::o;45253:180::-;45301:77;45298:1;45291:88;45398:4;45395:1;45388:15;45422:4;45419:1;45412:15;45439:180;45487:77;45484:1;45477:88;45584:4;45581:1;45574:15;45608:4;45605:1;45598:15;45625:180;45673:77;45670:1;45663:88;45770:4;45767:1;45760:15;45794:4;45791:1;45784:15;45811:180;45859:77;45856:1;45849:88;45956:4;45953:1;45946:15;45980:4;45977:1;45970:15;45997:180;46045:77;46042:1;46035:88;46142:4;46139:1;46132:15;46166:4;46163:1;46156:15;46183:117;46292:1;46289;46282:12;46306:117;46415:1;46412;46405:12;46429:117;46538:1;46535;46528:12;46552:117;46661:1;46658;46651:12;46675:102;46716:6;46767:2;46763:7;46758:2;46751:5;46747:14;46743:28;46733:38;;46675:102;;;:::o;46783:233::-;46923:34;46919:1;46911:6;46907:14;46900:58;46992:16;46987:2;46979:6;46975:15;46968:41;46783:233;:::o;47022:237::-;47162:34;47158:1;47150:6;47146:14;47139:58;47231:20;47226:2;47218:6;47214:15;47207:45;47022:237;:::o;47265:225::-;47405:34;47401:1;47393:6;47389:14;47382:58;47474:8;47469:2;47461:6;47457:15;47450:33;47265:225;:::o;47496:178::-;47636:30;47632:1;47624:6;47620:14;47613:54;47496:178;:::o;47680:225::-;47820:34;47816:1;47808:6;47804:14;47797:58;47889:8;47884:2;47876:6;47872:15;47865:33;47680:225;:::o;47911:223::-;48051:34;48047:1;48039:6;48035:14;48028:58;48120:6;48115:2;48107:6;48103:15;48096:31;47911:223;:::o;48140:175::-;48280:27;48276:1;48268:6;48264:14;48257:51;48140:175;:::o;48321:245::-;48461:34;48457:1;48449:6;48445:14;48438:58;48530:28;48525:2;48517:6;48513:15;48506:53;48321:245;:::o;48572:179::-;48712:31;48708:1;48700:6;48696:14;48689:55;48572:179;:::o;48757:231::-;48897:34;48893:1;48885:6;48881:14;48874:58;48966:14;48961:2;48953:6;48949:15;48942:39;48757:231;:::o;48994:230::-;49134:34;49130:1;49122:6;49118:14;49111:58;49203:13;49198:2;49190:6;49186:15;49179:38;48994:230;:::o;49230:175::-;49370:27;49366:1;49358:6;49354:14;49347:51;49230:175;:::o;49411:243::-;49551:34;49547:1;49539:6;49535:14;49528:58;49620:26;49615:2;49607:6;49603:15;49596:51;49411:243;:::o;49660:229::-;49800:34;49796:1;49788:6;49784:14;49777:58;49869:12;49864:2;49856:6;49852:15;49845:37;49660:229;:::o;49895:228::-;50035:34;50031:1;50023:6;50019:14;50012:58;50104:11;50099:2;50091:6;50087:15;50080:36;49895:228;:::o;50129:182::-;50269:34;50265:1;50257:6;50253:14;50246:58;50129:182;:::o;50317:168::-;50457:20;50453:1;50445:6;50441:14;50434:44;50317:168;:::o;50491:231::-;50631:34;50627:1;50619:6;50615:14;50608:58;50700:14;50695:2;50687:6;50683:15;50676:39;50491:231;:::o;50728:182::-;50868:34;50864:1;50856:6;50852:14;50845:58;50728:182;:::o;50916:165::-;51056:17;51052:1;51044:6;51040:14;51033:41;50916:165;:::o;51087:228::-;51227:34;51223:1;51215:6;51211:14;51204:58;51296:11;51291:2;51283:6;51279:15;51272:36;51087:228;:::o;51321:169::-;51461:21;51457:1;51449:6;51445:14;51438:45;51321:169;:::o;51496:234::-;51636:34;51632:1;51624:6;51620:14;51613:58;51705:17;51700:2;51692:6;51688:15;51681:42;51496:234;:::o;51736:172::-;51876:24;51872:1;51864:6;51860:14;51853:48;51736:172;:::o;51914:220::-;52054:34;52050:1;52042:6;52038:14;52031:58;52123:3;52118:2;52110:6;52106:15;52099:28;51914:220;:::o;52140:172::-;52280:24;52276:1;52268:6;52264:14;52257:48;52140:172;:::o;52318:114::-;;:::o;52438:236::-;52578:34;52574:1;52566:6;52562:14;52555:58;52647:19;52642:2;52634:6;52630:15;52623:44;52438:236;:::o;52680:163::-;52820:15;52816:1;52808:6;52804:14;52797:39;52680:163;:::o;52849:173::-;52989:25;52985:1;52977:6;52973:14;52966:49;52849:173;:::o;53028:122::-;53101:24;53119:5;53101:24;:::i;:::-;53094:5;53091:35;53081:63;;53140:1;53137;53130:12;53081:63;53028:122;:::o;53156:138::-;53237:32;53263:5;53237:32;:::i;:::-;53230:5;53227:43;53217:71;;53284:1;53281;53274:12;53217:71;53156:138;:::o;53300:116::-;53370:21;53385:5;53370:21;:::i;:::-;53363:5;53360:32;53350:60;;53406:1;53403;53396:12;53350:60;53300:116;:::o;53422:120::-;53494:23;53511:5;53494:23;:::i;:::-;53487:5;53484:34;53474:62;;53532:1;53529;53522:12;53474:62;53422:120;:::o;53548:122::-;53621:24;53639:5;53621:24;:::i;:::-;53614:5;53611:35;53601:63;;53660:1;53657;53650:12;53601:63;53548:122;:::o

Swarm Source

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