ETH Price: $2,890.92 (-10.80%)
Gas: 40 Gwei

Token

KawaiiRobot (KAWAIIROBOT)
 

Overview

Max Total Supply

999 KAWAIIROBOT

Holders

470

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 KAWAIIROBOT
0xd3b408d8cbdd710bb2b57086f0edc3b6c5ebb2e1
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
KawaiiRobot

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-25
*/

// File: code-sample/KawaiiRobot/interfaces/IToken.sol



/// @title IToken interface

pragma solidity ^0.8.6;

interface IToken {
    function mintAdmin(uint256 quantity, address to) external;
}
// File: code-sample/KawaiiRobot/interfaces/IDescriptor.sol



/// @title IDescriptor interface

pragma solidity ^0.8.6;

interface IDescriptor {
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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


// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (utils/Strings.sol)

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/finance/PaymentSplitter.sol


// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;




/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned. The distribution of shares is set at the
 * time of contract deployment and can't be updated thereafter.
 *
 * `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.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, 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;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @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 total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @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 amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

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

    /**
     * @dev Getter for the amount of payee's releasable Ether.
     */
    function releasable(address account) public view returns (uint256) {
        uint256 totalReceived = address(this).balance + totalReleased();
        return _pendingPayment(account, totalReceived, released(account));
    }

    /**
     * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an
     * IERC20 contract.
     */
    function releasable(IERC20 token, address account) public view returns (uint256) {
        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        return _pendingPayment(account, totalReceived, released(token, account));
    }

    /**
     * @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 payment = releasable(account);

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

        // _totalReleased is the sum of all values in _released.
        // If "_totalReleased += payment" does not overflow, then "_released[account] += payment" cannot overflow.
        _totalReleased += payment;
        unchecked {
            _released[account] += payment;
        }

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

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

        uint256 payment = releasable(token, account);

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

        // _erc20TotalReleased[token] is the sum of all values in _erc20Released[token].
        // If "_erc20TotalReleased[token] += payment" does not overflow, then "_erc20Released[token][account] += payment"
        // cannot overflow.
        _erc20TotalReleased[token] += payment;
        unchecked {
            _erc20Released[token][account] += payment;
        }

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @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: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

        _afterTokenTransfer(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 from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

    /**
     * @dev Hook that is called before any (single) token transfer. This includes minting and burning.
     * See {_beforeConsecutiveTokenTransfer}.
     *
     * 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 {}

    /**
     * @dev Hook that is called after any (single) transfer of tokens. This includes minting and burning.
     * See {_afterConsecutiveTokenTransfer}.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called before consecutive token transfers.
     * Calling conditions are similar to {_beforeTokenTransfer}.
     *
     * The default implementation include balances updates that extensions such as {ERC721Consecutive} cannot perform
     * directly.
     */
    function _beforeConsecutiveTokenTransfer(
        address from,
        address to,
        uint256, /*first*/
        uint96 size
    ) internal virtual {
        if (from != address(0)) {
            _balances[from] -= size;
        }
        if (to != address(0)) {
            _balances[to] += size;
        }
    }

    /**
     * @dev Hook that is called after consecutive token transfers.
     * Calling conditions are similar to {_afterTokenTransfer}.
     */
    function _afterConsecutiveTokenTransfer(
        address, /*from*/
        address, /*to*/
        uint256, /*first*/
        uint96 /*size*/
    ) internal virtual {}
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: code-sample/KawaiiRobot/KawaiiRobot.sol



pragma solidity ^0.8.6;







contract KawaiiRobot is Ownable, ERC721, PaymentSplitter,IToken  {
    using Strings for uint256;

    // Sale details
    uint256 public maxTokens = 999; // presale amount
    uint256 public maxMintsPerTx = 2;
    uint256 public price = .005 ether; // presale price
    bool public saleActive;

    // When set, diverts tokenURI calls to external contract
    address public descriptor;
    // Only used when `descriptor` is 0x0
    string public baseURI;

    uint256 private nextTokenId;

    // Admin access for privileged contracts
    mapping(address => bool) public admins;

    /**
     * @notice Caller must be owner or privileged admin contract.
     */
    modifier onlyAdmin() {
        require(owner() == _msgSender() || admins[msg.sender], "Not admin");
        _;
    }

    constructor(address[] memory payees, uint256[] memory shares)
      ERC721("KawaiiRobot", "KAWAIIROBOT")
      PaymentSplitter(payees, shares)
    {}

    /**
     * @dev Public mint.
     */
    function mint(uint256 quantity) external payable {
        require(saleActive, "Sale inactive");
        require(quantity <= maxMintsPerTx, "Too many mints per txn");
        require(nextTokenId + quantity <= maxTokens, "Exceeds max supply");
        require(msg.value >= price * quantity, "Not enough ether");
        require(msg.sender == tx.origin, "No contract mints");

        for (uint256 i = 0; i < quantity; i++) {
            _safeMint(msg.sender, nextTokenId++);
        }
    }

    /**
     * @dev Return tokenURI directly or via alternative `descriptor` contract
     */
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "URI query for nonexistent token");

        if (descriptor == address(0)) {
            return string(abi.encodePacked(baseURI, tokenId.toString()));
        } else {
            return IDescriptor(descriptor).tokenURI(tokenId);
        }
        
    }

    /**
     * @dev Simplified version of ERC721Enumberable's `totalSupply`
     */
    function totalSupply() external view returns (uint256) {
        return nextTokenId;
    }

    /**
     * @dev Set `descriptor` contract address to route `tokenURI`
     */
    function setDescriptor(address _descriptor) external onlyOwner {
        descriptor = _descriptor;
    }

    /**
     * @dev Set the `baseURI` used to construct `tokenURI`.
     */
    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    /**
     * @dev Enable adjusting max mints per transaction.
     */
    function setMaxMintsPerTxn(uint256 newMax) external onlyOwner {
        maxMintsPerTx = newMax;
    }

    /**
     * @dev Enable adjusting price.
     */
    function setPrice(uint256 newPriceWei) external onlyOwner {
        price = newPriceWei;
    }

    /**
     * @dev Toggle sale status.
     */
    function toggleSale() external onlyOwner {
        saleActive = !saleActive;
    }

    /**
     * @dev Toggle admin status for an address.
     */
    function setAdmin(address _address) external onlyOwner {
        admins[_address] = !admins[_address];
    }

    /**
     * @dev Admin mint. To be used in future expansions. New admin contract
     * must enforce mint mechanics.
     */
    function mintAdmin(uint256 quantity, address to) external override onlyAdmin {
        for (uint256 i = 0; i < quantity; i++) {
            _safeMint(to, nextTokenId++);
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares","type":"uint256[]"}],"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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":"address","name":"","type":"address"}],"name":"admins","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"descriptor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"mintAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_descriptor","type":"address"}],"name":"setDescriptor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMintsPerTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPriceWei","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","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"},{"stateMutability":"payable","type":"receive"}]

60806040526103e7600e556002600f556611c37937e080006010553480156200002757600080fd5b5060405162005fdd38038062005fdd83398181016040528101906200004d91906200080d565b81816040518060400160405280600b81526020017f4b6177616969526f626f740000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f4b4157414949524f424f54000000000000000000000000000000000000000000815250620000db620000cf6200020960201b60201c565b6200021160201b60201c565b8160019081620000ec919062000ad3565b508060029081620000fe919062000ad3565b505050805182511462000148576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200013f9062000c41565b60405180910390fd5b60008251116200018f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001869062000cb3565b60405180910390fd5b60005b8251811015620001fe57620001e8838281518110620001b657620001b562000cd5565b5b6020026020010151838381518110620001d457620001d362000cd5565b5b6020026020010151620002d560201b60201c565b8080620001f59062000d33565b91505062000192565b505050505062000fac565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033e9062000df6565b60405180910390fd5b600081116200038d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003849062000e68565b60405180910390fd5b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000412576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004099062000f00565b60405180910390fd5b600b829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600754620004c9919062000f22565b6007819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac82826040516200050292919062000f7f565b60405180910390a15050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005728262000527565b810181811067ffffffffffffffff8211171562000594576200059362000538565b5b80604052505050565b6000620005a96200050e565b9050620005b7828262000567565b919050565b600067ffffffffffffffff821115620005da57620005d962000538565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200061d82620005f0565b9050919050565b6200062f8162000610565b81146200063b57600080fd5b50565b6000815190506200064f8162000624565b92915050565b60006200066c6200066684620005bc565b6200059d565b90508083825260208201905060208402830185811115620006925762000691620005eb565b5b835b81811015620006bf5780620006aa88826200063e565b84526020840193505060208101905062000694565b5050509392505050565b600082601f830112620006e157620006e062000522565b5b8151620006f384826020860162000655565b91505092915050565b600067ffffffffffffffff8211156200071a576200071962000538565b5b602082029050602081019050919050565b6000819050919050565b62000740816200072b565b81146200074c57600080fd5b50565b600081519050620007608162000735565b92915050565b60006200077d6200077784620006fc565b6200059d565b90508083825260208201905060208402830185811115620007a357620007a2620005eb565b5b835b81811015620007d05780620007bb88826200074f565b845260208401935050602081019050620007a5565b5050509392505050565b600082601f830112620007f257620007f162000522565b5b81516200080484826020860162000766565b91505092915050565b6000806040838503121562000827576200082662000518565b5b600083015167ffffffffffffffff8111156200084857620008476200051d565b5b6200085685828601620006c9565b925050602083015167ffffffffffffffff8111156200087a57620008796200051d565b5b6200088885828601620007da565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008e557607f821691505b602082108103620008fb57620008fa6200089d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009657fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000926565b62000971868362000926565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009b4620009ae620009a8846200072b565b62000989565b6200072b565b9050919050565b6000819050919050565b620009d08362000993565b620009e8620009df82620009bb565b84845462000933565b825550505050565b600090565b620009ff620009f0565b62000a0c818484620009c5565b505050565b5b8181101562000a345762000a28600082620009f5565b60018101905062000a12565b5050565b601f82111562000a835762000a4d8162000901565b62000a588462000916565b8101602085101562000a68578190505b62000a8062000a778562000916565b83018262000a11565b50505b505050565b600082821c905092915050565b600062000aa86000198460080262000a88565b1980831691505092915050565b600062000ac3838362000a95565b9150826002028217905092915050565b62000ade8262000892565b67ffffffffffffffff81111562000afa5762000af962000538565b5b62000b068254620008cc565b62000b1382828562000a38565b600060209050601f83116001811462000b4b576000841562000b36578287015190505b62000b42858262000ab5565b86555062000bb2565b601f19841662000b5b8662000901565b60005b8281101562000b855784890151825560018201915060208501945060208101905062000b5e565b8683101562000ba5578489015162000ba1601f89168262000a95565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b600062000c2960328362000bba565b915062000c368262000bcb565b604082019050919050565b6000602082019050818103600083015262000c5c8162000c1a565b9050919050565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b600062000c9b601a8362000bba565b915062000ca88262000c63565b602082019050919050565b6000602082019050818103600083015262000cce8162000c8c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d40826200072b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000d755762000d7462000d04565b5b600182019050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b600062000dde602c8362000bba565b915062000deb8262000d80565b604082019050919050565b6000602082019050818103600083015262000e118162000dcf565b9050919050565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b600062000e50601d8362000bba565b915062000e5d8262000e18565b602082019050919050565b6000602082019050818103600083015262000e838162000e41565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b600062000ee8602b8362000bba565b915062000ef58262000e8a565b604082019050919050565b6000602082019050818103600083015262000f1b8162000ed9565b9050919050565b600062000f2f826200072b565b915062000f3c836200072b565b925082820190508082111562000f575762000f5662000d04565b5b92915050565b62000f688162000610565b82525050565b62000f79816200072b565b82525050565b600060408201905062000f96600083018562000f5d565b62000fa5602083018462000f6e565b9392505050565b6150218062000fbc6000396000f3fe6080604052600436106102605760003560e01c80637d8966e411610144578063b88d4fde116100b6578063dc30158b1161007a578063dc30158b1461097e578063e33b7de3146109a9578063e8315742146109d4578063e985e9c5146109ff578063f2fde38b14610a3c578063f7c64f9e14610a65576102a7565b8063b88d4fde14610861578063c45ac0501461088a578063c87b56dd146108c7578063ce7c2ac214610904578063d79779b214610941576102a7565b80639852595c116101085780639852595c1461074e5780639d034fe91461078b578063a035b1fe146107b4578063a0712d68146107df578063a22cb465146107fb578063a3f8eace14610824576102a7565b80637d8966e41461067b5780638b83209b146106925780638da5cb5b146106cf57806391b7f5ed146106fa57806395d89b4114610723576102a7565b8063406072a9116101dd5780636352211e116101a15780636352211e1461056b57806368428a1b146105a85780636c0360eb146105d3578063704b6c02146105fe57806370a0823114610627578063715018a614610664576102a7565b8063406072a91461047657806342842e0e146104b3578063429b62e5146104dc57806348b750441461051957806355f804b314610542576102a7565b806318160ddd1161022457806318160ddd146103a357806319165587146103ce57806323b872dd146103f7578063303e74df146104205780633a98ef391461044b576102a7565b806301b9a397146102ac57806301ffc9a7146102d557806306fdde0314610312578063081812fc1461033d578063095ea7b31461037a576102a7565b366102a7577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77061028e610a8e565b3460405161029d929190613233565b60405180910390a1005b600080fd5b3480156102b857600080fd5b506102d360048036038101906102ce919061329c565b610a96565b005b3480156102e157600080fd5b506102fc60048036038101906102f79190613321565b610ae2565b6040516103099190613369565b60405180910390f35b34801561031e57600080fd5b50610327610bc4565b6040516103349190613414565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190613462565b610c56565b604051610371919061348f565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c91906134aa565b610c9c565b005b3480156103af57600080fd5b506103b8610db3565b6040516103c591906134ea565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190613543565b610dbd565b005b34801561040357600080fd5b5061041e60048036038101906104199190613570565b610f3c565b005b34801561042c57600080fd5b50610435610f9c565b604051610442919061348f565b60405180910390f35b34801561045757600080fd5b50610460610fc2565b60405161046d91906134ea565b60405180910390f35b34801561048257600080fd5b5061049d60048036038101906104989190613601565b610fcc565b6040516104aa91906134ea565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190613570565b611053565b005b3480156104e857600080fd5b5061050360048036038101906104fe919061329c565b611073565b6040516105109190613369565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b9190613601565b611093565b005b34801561054e57600080fd5b5061056960048036038101906105649190613776565b6112a6565b005b34801561057757600080fd5b50610592600480360381019061058d9190613462565b6112c1565b60405161059f919061348f565b60405180910390f35b3480156105b457600080fd5b506105bd611347565b6040516105ca9190613369565b60405180910390f35b3480156105df57600080fd5b506105e861135a565b6040516105f59190613414565b60405180910390f35b34801561060a57600080fd5b506106256004803603810190610620919061329c565b6113e8565b005b34801561063357600080fd5b5061064e6004803603810190610649919061329c565b611497565b60405161065b91906134ea565b60405180910390f35b34801561067057600080fd5b5061067961154e565b005b34801561068757600080fd5b50610690611562565b005b34801561069e57600080fd5b506106b960048036038101906106b49190613462565b611596565b6040516106c6919061348f565b60405180910390f35b3480156106db57600080fd5b506106e46115de565b6040516106f1919061348f565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c9190613462565b611607565b005b34801561072f57600080fd5b50610738611619565b6040516107459190613414565b60405180910390f35b34801561075a57600080fd5b506107756004803603810190610770919061329c565b6116ab565b60405161078291906134ea565b60405180910390f35b34801561079757600080fd5b506107b260048036038101906107ad91906137bf565b6116f4565b005b3480156107c057600080fd5b506107c9611807565b6040516107d691906134ea565b60405180910390f35b6107f960048036038101906107f49190613462565b61180d565b005b34801561080757600080fd5b50610822600480360381019061081d919061382b565b6119f3565b005b34801561083057600080fd5b5061084b6004803603810190610846919061329c565b611a09565b60405161085891906134ea565b60405180910390f35b34801561086d57600080fd5b506108886004803603810190610883919061390c565b611a3c565b005b34801561089657600080fd5b506108b160048036038101906108ac9190613601565b611a9e565b6040516108be91906134ea565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e99190613462565b611b4d565b6040516108fb9190613414565b60405180910390f35b34801561091057600080fd5b5061092b6004803603810190610926919061329c565b611cc8565b60405161093891906134ea565b60405180910390f35b34801561094d57600080fd5b506109686004803603810190610963919061398f565b611d11565b60405161097591906134ea565b60405180910390f35b34801561098a57600080fd5b50610993611d5a565b6040516109a091906134ea565b60405180910390f35b3480156109b557600080fd5b506109be611d60565b6040516109cb91906134ea565b60405180910390f35b3480156109e057600080fd5b506109e9611d6a565b6040516109f691906134ea565b60405180910390f35b348015610a0b57600080fd5b50610a266004803603810190610a2191906139bc565b611d70565b604051610a339190613369565b60405180910390f35b348015610a4857600080fd5b50610a636004803603810190610a5e919061329c565b611e04565b005b348015610a7157600080fd5b50610a8c6004803603810190610a879190613462565b611e87565b005b600033905090565b610a9e611e99565b80601160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bad57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bbd5750610bbc82611f17565b5b9050919050565b606060018054610bd390613a2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610bff90613a2b565b8015610c4c5780601f10610c2157610100808354040283529160200191610c4c565b820191906000526020600020905b815481529060010190602001808311610c2f57829003601f168201915b5050505050905090565b6000610c6182611f81565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca7826112c1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90613ace565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d36610a8e565b73ffffffffffffffffffffffffffffffffffffffff161480610d655750610d6481610d5f610a8e565b611d70565b5b610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b90613b60565b60405180910390fd5b610dae8383611fcc565b505050565b6000601354905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690613bf2565b60405180910390fd5b6000610e4a82611a09565b905060008103610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690613c84565b60405180910390fd5b8060086000828254610ea19190613cd3565b9250508190555080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550610eff8282612085565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568282604051610f30929190613d66565b60405180910390a15050565b610f4d610f47610a8e565b82612179565b610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8390613e01565b60405180910390fd5b610f9783838361220e565b505050565b601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600754905090565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61106e83838360405180602001604052806000815250611a3c565b505050565b60146020528060005260406000206000915054906101000a900460ff1681565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110c90613bf2565b60405180910390fd5b60006111218383611a9e565b905060008103611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90613c84565b60405180910390fd5b80600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111b59190613cd3565b9250508190555080600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611251838383612503565b8273ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a8383604051611299929190613233565b60405180910390a2505050565b6112ae611e99565b80601290816112bd9190613fc3565b5050565b6000806112cd83612589565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361133e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611335906140e1565b60405180910390fd5b80915050919050565b601160009054906101000a900460ff1681565b6012805461136790613a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461139390613a2b565b80156113e05780601f106113b5576101008083540402835291602001916113e0565b820191906000526020600020905b8154815290600101906020018083116113c357829003601f168201915b505050505081565b6113f0611e99565b601460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe90614173565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611556611e99565b61156060006125c6565b565b61156a611e99565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600b82815481106115ac576115ab614193565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61160f611e99565b8060108190555050565b60606002805461162890613a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461165490613a2b565b80156116a15780601f10611676576101008083540402835291602001916116a1565b820191906000526020600020905b81548152906001019060200180831161168457829003601f168201915b5050505050905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116fc610a8e565b73ffffffffffffffffffffffffffffffffffffffff1661171a6115de565b73ffffffffffffffffffffffffffffffffffffffff1614806117855750601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb9061420e565b60405180910390fd5b60005b82811015611802576117ef82601360008154809291906117e69061422e565b9190505561268a565b80806117fa9061422e565b9150506117c7565b505050565b60105481565b601160009054906101000a900460ff1661185c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611853906142c2565b60405180910390fd5b600f548111156118a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118989061432e565b60405180910390fd5b600e54816013546118b29190613cd3565b11156118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea9061439a565b60405180910390fd5b8060105461190191906143ba565b341015611943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193a90614448565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a8906144b4565b60405180910390fd5b60005b818110156119ef576119dc33601360008154809291906119d39061422e565b9190505561268a565b80806119e79061422e565b9150506119b4565b5050565b611a056119fe610a8e565b83836126a8565b5050565b600080611a14611d60565b47611a1f9190613cd3565b9050611a348382611a2f866116ab565b612814565b915050919050565b611a4d611a47610a8e565b83612179565b611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8390613e01565b60405180910390fd5b611a9884848484612882565b50505050565b600080611aaa84611d11565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611ae3919061348f565b602060405180830381865afa158015611b00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2491906144e9565b611b2e9190613cd3565b9050611b448382611b3f8787610fcc565b612814565b91505092915050565b6060611b58826128de565b611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e90614562565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611c1f576012611bf88361291f565b604051602001611c09929190614641565b6040516020818303038152906040529050611cc3565b601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b8152600401611c7a91906134ea565b600060405180830381865afa158015611c97573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611cc091906146d5565b90505b919050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600f5481565b6000600854905090565b600e5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e0c611e99565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7290614790565b60405180910390fd5b611e84816125c6565b50565b611e8f611e99565b80600f8190555050565b611ea1610a8e565b73ffffffffffffffffffffffffffffffffffffffff16611ebf6115de565b73ffffffffffffffffffffffffffffffffffffffff1614611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c906147fc565b60405180910390fd5b565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611f8a816128de565b611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc0906140e1565b60405180910390fd5b50565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661203f836112c1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156120c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bf90614868565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516120ee906148b9565b60006040518083038185875af1925050503d806000811461212b576040519150601f19603f3d011682016040523d82523d6000602084013e612130565b606091505b5050905080612174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216b90614940565b60405180910390fd5b505050565b600080612185836112c1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121c757506121c68185611d70565b5b8061220557508373ffffffffffffffffffffffffffffffffffffffff166121ed84610c56565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661222e826112c1565b73ffffffffffffffffffffffffffffffffffffffff1614612284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227b906149d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ea90614a64565b60405180910390fd5b6122fe8383836129ed565b8273ffffffffffffffffffffffffffffffffffffffff1661231e826112c1565b73ffffffffffffffffffffffffffffffffffffffff1614612374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236b906149d2565b60405180910390fd5b6005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124fe8383836129f2565b505050565b6125848363a9059cbb60e01b8484604051602401612522929190613233565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506129f7565b505050565b60006003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126a4828260405180602001604052806000815250612abe565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270d90614ad0565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128079190613369565b60405180910390a3505050565b600081600754600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548561286591906143ba565b61286f9190614b1f565b6128799190614b50565b90509392505050565b61288d84848461220e565b61289984848484612b19565b6128d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cf90614bf6565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661290083612589565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000600161292e84612ca0565b01905060008167ffffffffffffffff81111561294d5761294c61364b565b5b6040519080825280601f01601f19166020018201604052801561297f5781602001600182028036833780820191505090505b509050600082602001820190505b6001156129e2578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816129d6576129d5614af0565b5b0494506000850361298d575b819350505050919050565b505050565b505050565b6000612a59826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612df39092919063ffffffff16565b9050600081511115612ab95780806020019051810190612a799190614c2b565b612ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaf90614cca565b60405180910390fd5b5b505050565b612ac88383612e0b565b612ad56000848484612b19565b612b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0b90614bf6565b60405180910390fd5b505050565b6000612b3a8473ffffffffffffffffffffffffffffffffffffffff16613024565b15612c93578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b63610a8e565b8786866040518563ffffffff1660e01b8152600401612b859493929190614d3f565b6020604051808303816000875af1925050508015612bc157506040513d601f19601f82011682018060405250810190612bbe9190614da0565b60015b612c43573d8060008114612bf1576040519150601f19603f3d011682016040523d82523d6000602084013e612bf6565b606091505b506000815103612c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3290614bf6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c98565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612cfe577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612cf457612cf3614af0565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612d3b576d04ee2d6d415b85acef81000000008381612d3157612d30614af0565b5b0492506020810190505b662386f26fc100008310612d6a57662386f26fc100008381612d6057612d5f614af0565b5b0492506010810190505b6305f5e1008310612d93576305f5e1008381612d8957612d88614af0565b5b0492506008810190505b6127108310612db8576127108381612dae57612dad614af0565b5b0492506004810190505b60648310612ddb5760648381612dd157612dd0614af0565b5b0492506002810190505b600a8310612dea576001810190505b80915050919050565b6060612e028484600085613047565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7190614e19565b60405180910390fd5b612e83816128de565b15612ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eba90614e85565b60405180910390fd5b612ecf600083836129ed565b612ed8816128de565b15612f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0f90614e85565b60405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613020600083836129f2565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608247101561308c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308390614f17565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516130b59190614f68565b60006040518083038185875af1925050503d80600081146130f2576040519150601f19603f3d011682016040523d82523d6000602084013e6130f7565b606091505b509150915061310887838387613114565b92505050949350505050565b6060831561317657600083510361316e5761312e85613024565b61316d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316490614fcb565b60405180910390fd5b5b829050613181565b6131808383613189565b5b949350505050565b60008251111561319c5781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d09190613414565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613204826131d9565b9050919050565b613214816131f9565b82525050565b6000819050919050565b61322d8161321a565b82525050565b6000604082019050613248600083018561320b565b6132556020830184613224565b9392505050565b6000604051905090565b600080fd5b600080fd5b613279816131f9565b811461328457600080fd5b50565b60008135905061329681613270565b92915050565b6000602082840312156132b2576132b1613266565b5b60006132c084828501613287565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132fe816132c9565b811461330957600080fd5b50565b60008135905061331b816132f5565b92915050565b60006020828403121561333757613336613266565b5b60006133458482850161330c565b91505092915050565b60008115159050919050565b6133638161334e565b82525050565b600060208201905061337e600083018461335a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156133be5780820151818401526020810190506133a3565b60008484015250505050565b6000601f19601f8301169050919050565b60006133e682613384565b6133f0818561338f565b93506134008185602086016133a0565b613409816133ca565b840191505092915050565b6000602082019050818103600083015261342e81846133db565b905092915050565b61343f8161321a565b811461344a57600080fd5b50565b60008135905061345c81613436565b92915050565b60006020828403121561347857613477613266565b5b60006134868482850161344d565b91505092915050565b60006020820190506134a4600083018461320b565b92915050565b600080604083850312156134c1576134c0613266565b5b60006134cf85828601613287565b92505060206134e08582860161344d565b9150509250929050565b60006020820190506134ff6000830184613224565b92915050565b6000613510826131d9565b9050919050565b61352081613505565b811461352b57600080fd5b50565b60008135905061353d81613517565b92915050565b60006020828403121561355957613558613266565b5b60006135678482850161352e565b91505092915050565b60008060006060848603121561358957613588613266565b5b600061359786828701613287565b93505060206135a886828701613287565b92505060406135b98682870161344d565b9150509250925092565b60006135ce826131f9565b9050919050565b6135de816135c3565b81146135e957600080fd5b50565b6000813590506135fb816135d5565b92915050565b6000806040838503121561361857613617613266565b5b6000613626858286016135ec565b925050602061363785828601613287565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613683826133ca565b810181811067ffffffffffffffff821117156136a2576136a161364b565b5b80604052505050565b60006136b561325c565b90506136c1828261367a565b919050565b600067ffffffffffffffff8211156136e1576136e061364b565b5b6136ea826133ca565b9050602081019050919050565b82818337600083830152505050565b6000613719613714846136c6565b6136ab565b90508281526020810184848401111561373557613734613646565b5b6137408482856136f7565b509392505050565b600082601f83011261375d5761375c613641565b5b813561376d848260208601613706565b91505092915050565b60006020828403121561378c5761378b613266565b5b600082013567ffffffffffffffff8111156137aa576137a961326b565b5b6137b684828501613748565b91505092915050565b600080604083850312156137d6576137d5613266565b5b60006137e48582860161344d565b92505060206137f585828601613287565b9150509250929050565b6138088161334e565b811461381357600080fd5b50565b600081359050613825816137ff565b92915050565b6000806040838503121561384257613841613266565b5b600061385085828601613287565b925050602061386185828601613816565b9150509250929050565b600067ffffffffffffffff8211156138865761388561364b565b5b61388f826133ca565b9050602081019050919050565b60006138af6138aa8461386b565b6136ab565b9050828152602081018484840111156138cb576138ca613646565b5b6138d68482856136f7565b509392505050565b600082601f8301126138f3576138f2613641565b5b813561390384826020860161389c565b91505092915050565b6000806000806080858703121561392657613925613266565b5b600061393487828801613287565b945050602061394587828801613287565b93505060406139568782880161344d565b925050606085013567ffffffffffffffff8111156139775761397661326b565b5b613983878288016138de565b91505092959194509250565b6000602082840312156139a5576139a4613266565b5b60006139b3848285016135ec565b91505092915050565b600080604083850312156139d3576139d2613266565b5b60006139e185828601613287565b92505060206139f285828601613287565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a4357607f821691505b602082108103613a5657613a556139fc565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ab860218361338f565b9150613ac382613a5c565b604082019050919050565b60006020820190508181036000830152613ae781613aab565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000613b4a603d8361338f565b9150613b5582613aee565b604082019050919050565b60006020820190508181036000830152613b7981613b3d565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b6000613bdc60268361338f565b9150613be782613b80565b604082019050919050565b60006020820190508181036000830152613c0b81613bcf565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b6000613c6e602b8361338f565b9150613c7982613c12565b604082019050919050565b60006020820190508181036000830152613c9d81613c61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cde8261321a565b9150613ce98361321a565b9250828201905080821115613d0157613d00613ca4565b5b92915050565b6000819050919050565b6000613d2c613d27613d22846131d9565b613d07565b6131d9565b9050919050565b6000613d3e82613d11565b9050919050565b6000613d5082613d33565b9050919050565b613d6081613d45565b82525050565b6000604082019050613d7b6000830185613d57565b613d886020830184613224565b9392505050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613deb602d8361338f565b9150613df682613d8f565b604082019050919050565b60006020820190508181036000830152613e1a81613dde565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613e837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613e46565b613e8d8683613e46565b95508019841693508086168417925050509392505050565b6000613ec0613ebb613eb68461321a565b613d07565b61321a565b9050919050565b6000819050919050565b613eda83613ea5565b613eee613ee682613ec7565b848454613e53565b825550505050565b600090565b613f03613ef6565b613f0e818484613ed1565b505050565b5b81811015613f3257613f27600082613efb565b600181019050613f14565b5050565b601f821115613f7757613f4881613e21565b613f5184613e36565b81016020851015613f60578190505b613f74613f6c85613e36565b830182613f13565b50505b505050565b600082821c905092915050565b6000613f9a60001984600802613f7c565b1980831691505092915050565b6000613fb38383613f89565b9150826002028217905092915050565b613fcc82613384565b67ffffffffffffffff811115613fe557613fe461364b565b5b613fef8254613a2b565b613ffa828285613f36565b600060209050601f83116001811461402d576000841561401b578287015190505b6140258582613fa7565b86555061408d565b601f19841661403b86613e21565b60005b828110156140635784890151825560018201915060208501945060208101905061403e565b86831015614080578489015161407c601f891682613f89565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006140cb60188361338f565b91506140d682614095565b602082019050919050565b600060208201905081810360008301526140fa816140be565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061415d60298361338f565b915061416882614101565b604082019050919050565b6000602082019050818103600083015261418c81614150565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e6f742061646d696e0000000000000000000000000000000000000000000000600082015250565b60006141f860098361338f565b9150614203826141c2565b602082019050919050565b60006020820190508181036000830152614227816141eb565b9050919050565b60006142398261321a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361426b5761426a613ca4565b5b600182019050919050565b7f53616c6520696e61637469766500000000000000000000000000000000000000600082015250565b60006142ac600d8361338f565b91506142b782614276565b602082019050919050565b600060208201905081810360008301526142db8161429f565b9050919050565b7f546f6f206d616e79206d696e7473207065722074786e00000000000000000000600082015250565b600061431860168361338f565b9150614323826142e2565b602082019050919050565b600060208201905081810360008301526143478161430b565b9050919050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b600061438460128361338f565b915061438f8261434e565b602082019050919050565b600060208201905081810360008301526143b381614377565b9050919050565b60006143c58261321a565b91506143d08361321a565b92508282026143de8161321a565b915082820484148315176143f5576143f4613ca4565b5b5092915050565b7f4e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b600061443260108361338f565b915061443d826143fc565b602082019050919050565b6000602082019050818103600083015261446181614425565b9050919050565b7f4e6f20636f6e7472616374206d696e7473000000000000000000000000000000600082015250565b600061449e60118361338f565b91506144a982614468565b602082019050919050565b600060208201905081810360008301526144cd81614491565b9050919050565b6000815190506144e381613436565b92915050565b6000602082840312156144ff576144fe613266565b5b600061450d848285016144d4565b91505092915050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b600061454c601f8361338f565b915061455782614516565b602082019050919050565b6000602082019050818103600083015261457b8161453f565b9050919050565b600081905092915050565b6000815461459a81613a2b565b6145a48186614582565b945060018216600081146145bf57600181146145d457614607565b60ff1983168652811515820286019350614607565b6145dd85613e21565b60005b838110156145ff578154818901526001820191506020810190506145e0565b838801955050505b50505092915050565b600061461b82613384565b6146258185614582565b93506146358185602086016133a0565b80840191505092915050565b600061464d828561458d565b91506146598284614610565b91508190509392505050565b6000614678614673846136c6565b6136ab565b90508281526020810184848401111561469457614693613646565b5b61469f8482856133a0565b509392505050565b600082601f8301126146bc576146bb613641565b5b81516146cc848260208601614665565b91505092915050565b6000602082840312156146eb576146ea613266565b5b600082015167ffffffffffffffff8111156147095761470861326b565b5b614715848285016146a7565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061477a60268361338f565b91506147858261471e565b604082019050919050565b600060208201905081810360008301526147a98161476d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006147e660208361338f565b91506147f1826147b0565b602082019050919050565b60006020820190508181036000830152614815816147d9565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614852601d8361338f565b915061485d8261481c565b602082019050919050565b6000602082019050818103600083015261488181614845565b9050919050565b600081905092915050565b50565b60006148a3600083614888565b91506148ae82614893565b600082019050919050565b60006148c482614896565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061492a603a8361338f565b9150614935826148ce565b604082019050919050565b600060208201905081810360008301526149598161491d565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006149bc60258361338f565b91506149c782614960565b604082019050919050565b600060208201905081810360008301526149eb816149af565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a4e60248361338f565b9150614a59826149f2565b604082019050919050565b60006020820190508181036000830152614a7d81614a41565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614aba60198361338f565b9150614ac582614a84565b602082019050919050565b60006020820190508181036000830152614ae981614aad565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b2a8261321a565b9150614b358361321a565b925082614b4557614b44614af0565b5b828204905092915050565b6000614b5b8261321a565b9150614b668361321a565b9250828203905081811115614b7e57614b7d613ca4565b5b92915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614be060328361338f565b9150614beb82614b84565b604082019050919050565b60006020820190508181036000830152614c0f81614bd3565b9050919050565b600081519050614c25816137ff565b92915050565b600060208284031215614c4157614c40613266565b5b6000614c4f84828501614c16565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000614cb4602a8361338f565b9150614cbf82614c58565b604082019050919050565b60006020820190508181036000830152614ce381614ca7565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614d1182614cea565b614d1b8185614cf5565b9350614d2b8185602086016133a0565b614d34816133ca565b840191505092915050565b6000608082019050614d54600083018761320b565b614d61602083018661320b565b614d6e6040830185613224565b8181036060830152614d808184614d06565b905095945050505050565b600081519050614d9a816132f5565b92915050565b600060208284031215614db657614db5613266565b5b6000614dc484828501614d8b565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614e0360208361338f565b9150614e0e82614dcd565b602082019050919050565b60006020820190508181036000830152614e3281614df6565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614e6f601c8361338f565b9150614e7a82614e39565b602082019050919050565b60006020820190508181036000830152614e9e81614e62565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000614f0160268361338f565b9150614f0c82614ea5565b604082019050919050565b60006020820190508181036000830152614f3081614ef4565b9050919050565b6000614f4282614cea565b614f4c8185614888565b9350614f5c8185602086016133a0565b80840191505092915050565b6000614f748284614f37565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614fb5601d8361338f565b9150614fc082614f7f565b602082019050919050565b60006020820190508181036000830152614fe481614fa8565b905091905056fea2646970667358221220e79cd32306d5275dbe95a9cc423f94f1508e9bb407e3afb0fc6ae5bbc39162f664736f6c634300081100330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000010000000000000000000000006b0931954fc214956db815581d8b1af7928c4e6900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001

Deployed Bytecode

0x6080604052600436106102605760003560e01c80637d8966e411610144578063b88d4fde116100b6578063dc30158b1161007a578063dc30158b1461097e578063e33b7de3146109a9578063e8315742146109d4578063e985e9c5146109ff578063f2fde38b14610a3c578063f7c64f9e14610a65576102a7565b8063b88d4fde14610861578063c45ac0501461088a578063c87b56dd146108c7578063ce7c2ac214610904578063d79779b214610941576102a7565b80639852595c116101085780639852595c1461074e5780639d034fe91461078b578063a035b1fe146107b4578063a0712d68146107df578063a22cb465146107fb578063a3f8eace14610824576102a7565b80637d8966e41461067b5780638b83209b146106925780638da5cb5b146106cf57806391b7f5ed146106fa57806395d89b4114610723576102a7565b8063406072a9116101dd5780636352211e116101a15780636352211e1461056b57806368428a1b146105a85780636c0360eb146105d3578063704b6c02146105fe57806370a0823114610627578063715018a614610664576102a7565b8063406072a91461047657806342842e0e146104b3578063429b62e5146104dc57806348b750441461051957806355f804b314610542576102a7565b806318160ddd1161022457806318160ddd146103a357806319165587146103ce57806323b872dd146103f7578063303e74df146104205780633a98ef391461044b576102a7565b806301b9a397146102ac57806301ffc9a7146102d557806306fdde0314610312578063081812fc1461033d578063095ea7b31461037a576102a7565b366102a7577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77061028e610a8e565b3460405161029d929190613233565b60405180910390a1005b600080fd5b3480156102b857600080fd5b506102d360048036038101906102ce919061329c565b610a96565b005b3480156102e157600080fd5b506102fc60048036038101906102f79190613321565b610ae2565b6040516103099190613369565b60405180910390f35b34801561031e57600080fd5b50610327610bc4565b6040516103349190613414565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190613462565b610c56565b604051610371919061348f565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c91906134aa565b610c9c565b005b3480156103af57600080fd5b506103b8610db3565b6040516103c591906134ea565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190613543565b610dbd565b005b34801561040357600080fd5b5061041e60048036038101906104199190613570565b610f3c565b005b34801561042c57600080fd5b50610435610f9c565b604051610442919061348f565b60405180910390f35b34801561045757600080fd5b50610460610fc2565b60405161046d91906134ea565b60405180910390f35b34801561048257600080fd5b5061049d60048036038101906104989190613601565b610fcc565b6040516104aa91906134ea565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190613570565b611053565b005b3480156104e857600080fd5b5061050360048036038101906104fe919061329c565b611073565b6040516105109190613369565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b9190613601565b611093565b005b34801561054e57600080fd5b5061056960048036038101906105649190613776565b6112a6565b005b34801561057757600080fd5b50610592600480360381019061058d9190613462565b6112c1565b60405161059f919061348f565b60405180910390f35b3480156105b457600080fd5b506105bd611347565b6040516105ca9190613369565b60405180910390f35b3480156105df57600080fd5b506105e861135a565b6040516105f59190613414565b60405180910390f35b34801561060a57600080fd5b506106256004803603810190610620919061329c565b6113e8565b005b34801561063357600080fd5b5061064e6004803603810190610649919061329c565b611497565b60405161065b91906134ea565b60405180910390f35b34801561067057600080fd5b5061067961154e565b005b34801561068757600080fd5b50610690611562565b005b34801561069e57600080fd5b506106b960048036038101906106b49190613462565b611596565b6040516106c6919061348f565b60405180910390f35b3480156106db57600080fd5b506106e46115de565b6040516106f1919061348f565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c9190613462565b611607565b005b34801561072f57600080fd5b50610738611619565b6040516107459190613414565b60405180910390f35b34801561075a57600080fd5b506107756004803603810190610770919061329c565b6116ab565b60405161078291906134ea565b60405180910390f35b34801561079757600080fd5b506107b260048036038101906107ad91906137bf565b6116f4565b005b3480156107c057600080fd5b506107c9611807565b6040516107d691906134ea565b60405180910390f35b6107f960048036038101906107f49190613462565b61180d565b005b34801561080757600080fd5b50610822600480360381019061081d919061382b565b6119f3565b005b34801561083057600080fd5b5061084b6004803603810190610846919061329c565b611a09565b60405161085891906134ea565b60405180910390f35b34801561086d57600080fd5b506108886004803603810190610883919061390c565b611a3c565b005b34801561089657600080fd5b506108b160048036038101906108ac9190613601565b611a9e565b6040516108be91906134ea565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e99190613462565b611b4d565b6040516108fb9190613414565b60405180910390f35b34801561091057600080fd5b5061092b6004803603810190610926919061329c565b611cc8565b60405161093891906134ea565b60405180910390f35b34801561094d57600080fd5b506109686004803603810190610963919061398f565b611d11565b60405161097591906134ea565b60405180910390f35b34801561098a57600080fd5b50610993611d5a565b6040516109a091906134ea565b60405180910390f35b3480156109b557600080fd5b506109be611d60565b6040516109cb91906134ea565b60405180910390f35b3480156109e057600080fd5b506109e9611d6a565b6040516109f691906134ea565b60405180910390f35b348015610a0b57600080fd5b50610a266004803603810190610a2191906139bc565b611d70565b604051610a339190613369565b60405180910390f35b348015610a4857600080fd5b50610a636004803603810190610a5e919061329c565b611e04565b005b348015610a7157600080fd5b50610a8c6004803603810190610a879190613462565b611e87565b005b600033905090565b610a9e611e99565b80601160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bad57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bbd5750610bbc82611f17565b5b9050919050565b606060018054610bd390613a2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610bff90613a2b565b8015610c4c5780601f10610c2157610100808354040283529160200191610c4c565b820191906000526020600020905b815481529060010190602001808311610c2f57829003601f168201915b5050505050905090565b6000610c6182611f81565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca7826112c1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90613ace565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d36610a8e565b73ffffffffffffffffffffffffffffffffffffffff161480610d655750610d6481610d5f610a8e565b611d70565b5b610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b90613b60565b60405180910390fd5b610dae8383611fcc565b505050565b6000601354905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690613bf2565b60405180910390fd5b6000610e4a82611a09565b905060008103610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690613c84565b60405180910390fd5b8060086000828254610ea19190613cd3565b9250508190555080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550610eff8282612085565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568282604051610f30929190613d66565b60405180910390a15050565b610f4d610f47610a8e565b82612179565b610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8390613e01565b60405180910390fd5b610f9783838361220e565b505050565b601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600754905090565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61106e83838360405180602001604052806000815250611a3c565b505050565b60146020528060005260406000206000915054906101000a900460ff1681565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110c90613bf2565b60405180910390fd5b60006111218383611a9e565b905060008103611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90613c84565b60405180910390fd5b80600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111b59190613cd3565b9250508190555080600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611251838383612503565b8273ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a8383604051611299929190613233565b60405180910390a2505050565b6112ae611e99565b80601290816112bd9190613fc3565b5050565b6000806112cd83612589565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361133e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611335906140e1565b60405180910390fd5b80915050919050565b601160009054906101000a900460ff1681565b6012805461136790613a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461139390613a2b565b80156113e05780601f106113b5576101008083540402835291602001916113e0565b820191906000526020600020905b8154815290600101906020018083116113c357829003601f168201915b505050505081565b6113f0611e99565b601460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe90614173565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611556611e99565b61156060006125c6565b565b61156a611e99565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600b82815481106115ac576115ab614193565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61160f611e99565b8060108190555050565b60606002805461162890613a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461165490613a2b565b80156116a15780601f10611676576101008083540402835291602001916116a1565b820191906000526020600020905b81548152906001019060200180831161168457829003601f168201915b5050505050905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116fc610a8e565b73ffffffffffffffffffffffffffffffffffffffff1661171a6115de565b73ffffffffffffffffffffffffffffffffffffffff1614806117855750601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb9061420e565b60405180910390fd5b60005b82811015611802576117ef82601360008154809291906117e69061422e565b9190505561268a565b80806117fa9061422e565b9150506117c7565b505050565b60105481565b601160009054906101000a900460ff1661185c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611853906142c2565b60405180910390fd5b600f548111156118a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118989061432e565b60405180910390fd5b600e54816013546118b29190613cd3565b11156118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea9061439a565b60405180910390fd5b8060105461190191906143ba565b341015611943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193a90614448565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a8906144b4565b60405180910390fd5b60005b818110156119ef576119dc33601360008154809291906119d39061422e565b9190505561268a565b80806119e79061422e565b9150506119b4565b5050565b611a056119fe610a8e565b83836126a8565b5050565b600080611a14611d60565b47611a1f9190613cd3565b9050611a348382611a2f866116ab565b612814565b915050919050565b611a4d611a47610a8e565b83612179565b611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8390613e01565b60405180910390fd5b611a9884848484612882565b50505050565b600080611aaa84611d11565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611ae3919061348f565b602060405180830381865afa158015611b00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2491906144e9565b611b2e9190613cd3565b9050611b448382611b3f8787610fcc565b612814565b91505092915050565b6060611b58826128de565b611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e90614562565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611c1f576012611bf88361291f565b604051602001611c09929190614641565b6040516020818303038152906040529050611cc3565b601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b8152600401611c7a91906134ea565b600060405180830381865afa158015611c97573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611cc091906146d5565b90505b919050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600f5481565b6000600854905090565b600e5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e0c611e99565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7290614790565b60405180910390fd5b611e84816125c6565b50565b611e8f611e99565b80600f8190555050565b611ea1610a8e565b73ffffffffffffffffffffffffffffffffffffffff16611ebf6115de565b73ffffffffffffffffffffffffffffffffffffffff1614611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c906147fc565b60405180910390fd5b565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611f8a816128de565b611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc0906140e1565b60405180910390fd5b50565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661203f836112c1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156120c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bf90614868565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516120ee906148b9565b60006040518083038185875af1925050503d806000811461212b576040519150601f19603f3d011682016040523d82523d6000602084013e612130565b606091505b5050905080612174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216b90614940565b60405180910390fd5b505050565b600080612185836112c1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121c757506121c68185611d70565b5b8061220557508373ffffffffffffffffffffffffffffffffffffffff166121ed84610c56565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661222e826112c1565b73ffffffffffffffffffffffffffffffffffffffff1614612284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227b906149d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ea90614a64565b60405180910390fd5b6122fe8383836129ed565b8273ffffffffffffffffffffffffffffffffffffffff1661231e826112c1565b73ffffffffffffffffffffffffffffffffffffffff1614612374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236b906149d2565b60405180910390fd5b6005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124fe8383836129f2565b505050565b6125848363a9059cbb60e01b8484604051602401612522929190613233565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506129f7565b505050565b60006003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126a4828260405180602001604052806000815250612abe565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270d90614ad0565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128079190613369565b60405180910390a3505050565b600081600754600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548561286591906143ba565b61286f9190614b1f565b6128799190614b50565b90509392505050565b61288d84848461220e565b61289984848484612b19565b6128d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cf90614bf6565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661290083612589565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000600161292e84612ca0565b01905060008167ffffffffffffffff81111561294d5761294c61364b565b5b6040519080825280601f01601f19166020018201604052801561297f5781602001600182028036833780820191505090505b509050600082602001820190505b6001156129e2578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816129d6576129d5614af0565b5b0494506000850361298d575b819350505050919050565b505050565b505050565b6000612a59826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612df39092919063ffffffff16565b9050600081511115612ab95780806020019051810190612a799190614c2b565b612ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaf90614cca565b60405180910390fd5b5b505050565b612ac88383612e0b565b612ad56000848484612b19565b612b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0b90614bf6565b60405180910390fd5b505050565b6000612b3a8473ffffffffffffffffffffffffffffffffffffffff16613024565b15612c93578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b63610a8e565b8786866040518563ffffffff1660e01b8152600401612b859493929190614d3f565b6020604051808303816000875af1925050508015612bc157506040513d601f19601f82011682018060405250810190612bbe9190614da0565b60015b612c43573d8060008114612bf1576040519150601f19603f3d011682016040523d82523d6000602084013e612bf6565b606091505b506000815103612c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3290614bf6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c98565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612cfe577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612cf457612cf3614af0565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612d3b576d04ee2d6d415b85acef81000000008381612d3157612d30614af0565b5b0492506020810190505b662386f26fc100008310612d6a57662386f26fc100008381612d6057612d5f614af0565b5b0492506010810190505b6305f5e1008310612d93576305f5e1008381612d8957612d88614af0565b5b0492506008810190505b6127108310612db8576127108381612dae57612dad614af0565b5b0492506004810190505b60648310612ddb5760648381612dd157612dd0614af0565b5b0492506002810190505b600a8310612dea576001810190505b80915050919050565b6060612e028484600085613047565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7190614e19565b60405180910390fd5b612e83816128de565b15612ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eba90614e85565b60405180910390fd5b612ecf600083836129ed565b612ed8816128de565b15612f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0f90614e85565b60405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613020600083836129f2565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608247101561308c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308390614f17565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516130b59190614f68565b60006040518083038185875af1925050503d80600081146130f2576040519150601f19603f3d011682016040523d82523d6000602084013e6130f7565b606091505b509150915061310887838387613114565b92505050949350505050565b6060831561317657600083510361316e5761312e85613024565b61316d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316490614fcb565b60405180910390fd5b5b829050613181565b6131808383613189565b5b949350505050565b60008251111561319c5781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d09190613414565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613204826131d9565b9050919050565b613214816131f9565b82525050565b6000819050919050565b61322d8161321a565b82525050565b6000604082019050613248600083018561320b565b6132556020830184613224565b9392505050565b6000604051905090565b600080fd5b600080fd5b613279816131f9565b811461328457600080fd5b50565b60008135905061329681613270565b92915050565b6000602082840312156132b2576132b1613266565b5b60006132c084828501613287565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132fe816132c9565b811461330957600080fd5b50565b60008135905061331b816132f5565b92915050565b60006020828403121561333757613336613266565b5b60006133458482850161330c565b91505092915050565b60008115159050919050565b6133638161334e565b82525050565b600060208201905061337e600083018461335a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156133be5780820151818401526020810190506133a3565b60008484015250505050565b6000601f19601f8301169050919050565b60006133e682613384565b6133f0818561338f565b93506134008185602086016133a0565b613409816133ca565b840191505092915050565b6000602082019050818103600083015261342e81846133db565b905092915050565b61343f8161321a565b811461344a57600080fd5b50565b60008135905061345c81613436565b92915050565b60006020828403121561347857613477613266565b5b60006134868482850161344d565b91505092915050565b60006020820190506134a4600083018461320b565b92915050565b600080604083850312156134c1576134c0613266565b5b60006134cf85828601613287565b92505060206134e08582860161344d565b9150509250929050565b60006020820190506134ff6000830184613224565b92915050565b6000613510826131d9565b9050919050565b61352081613505565b811461352b57600080fd5b50565b60008135905061353d81613517565b92915050565b60006020828403121561355957613558613266565b5b60006135678482850161352e565b91505092915050565b60008060006060848603121561358957613588613266565b5b600061359786828701613287565b93505060206135a886828701613287565b92505060406135b98682870161344d565b9150509250925092565b60006135ce826131f9565b9050919050565b6135de816135c3565b81146135e957600080fd5b50565b6000813590506135fb816135d5565b92915050565b6000806040838503121561361857613617613266565b5b6000613626858286016135ec565b925050602061363785828601613287565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613683826133ca565b810181811067ffffffffffffffff821117156136a2576136a161364b565b5b80604052505050565b60006136b561325c565b90506136c1828261367a565b919050565b600067ffffffffffffffff8211156136e1576136e061364b565b5b6136ea826133ca565b9050602081019050919050565b82818337600083830152505050565b6000613719613714846136c6565b6136ab565b90508281526020810184848401111561373557613734613646565b5b6137408482856136f7565b509392505050565b600082601f83011261375d5761375c613641565b5b813561376d848260208601613706565b91505092915050565b60006020828403121561378c5761378b613266565b5b600082013567ffffffffffffffff8111156137aa576137a961326b565b5b6137b684828501613748565b91505092915050565b600080604083850312156137d6576137d5613266565b5b60006137e48582860161344d565b92505060206137f585828601613287565b9150509250929050565b6138088161334e565b811461381357600080fd5b50565b600081359050613825816137ff565b92915050565b6000806040838503121561384257613841613266565b5b600061385085828601613287565b925050602061386185828601613816565b9150509250929050565b600067ffffffffffffffff8211156138865761388561364b565b5b61388f826133ca565b9050602081019050919050565b60006138af6138aa8461386b565b6136ab565b9050828152602081018484840111156138cb576138ca613646565b5b6138d68482856136f7565b509392505050565b600082601f8301126138f3576138f2613641565b5b813561390384826020860161389c565b91505092915050565b6000806000806080858703121561392657613925613266565b5b600061393487828801613287565b945050602061394587828801613287565b93505060406139568782880161344d565b925050606085013567ffffffffffffffff8111156139775761397661326b565b5b613983878288016138de565b91505092959194509250565b6000602082840312156139a5576139a4613266565b5b60006139b3848285016135ec565b91505092915050565b600080604083850312156139d3576139d2613266565b5b60006139e185828601613287565b92505060206139f285828601613287565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a4357607f821691505b602082108103613a5657613a556139fc565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ab860218361338f565b9150613ac382613a5c565b604082019050919050565b60006020820190508181036000830152613ae781613aab565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000613b4a603d8361338f565b9150613b5582613aee565b604082019050919050565b60006020820190508181036000830152613b7981613b3d565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b6000613bdc60268361338f565b9150613be782613b80565b604082019050919050565b60006020820190508181036000830152613c0b81613bcf565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b6000613c6e602b8361338f565b9150613c7982613c12565b604082019050919050565b60006020820190508181036000830152613c9d81613c61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cde8261321a565b9150613ce98361321a565b9250828201905080821115613d0157613d00613ca4565b5b92915050565b6000819050919050565b6000613d2c613d27613d22846131d9565b613d07565b6131d9565b9050919050565b6000613d3e82613d11565b9050919050565b6000613d5082613d33565b9050919050565b613d6081613d45565b82525050565b6000604082019050613d7b6000830185613d57565b613d886020830184613224565b9392505050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613deb602d8361338f565b9150613df682613d8f565b604082019050919050565b60006020820190508181036000830152613e1a81613dde565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613e837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613e46565b613e8d8683613e46565b95508019841693508086168417925050509392505050565b6000613ec0613ebb613eb68461321a565b613d07565b61321a565b9050919050565b6000819050919050565b613eda83613ea5565b613eee613ee682613ec7565b848454613e53565b825550505050565b600090565b613f03613ef6565b613f0e818484613ed1565b505050565b5b81811015613f3257613f27600082613efb565b600181019050613f14565b5050565b601f821115613f7757613f4881613e21565b613f5184613e36565b81016020851015613f60578190505b613f74613f6c85613e36565b830182613f13565b50505b505050565b600082821c905092915050565b6000613f9a60001984600802613f7c565b1980831691505092915050565b6000613fb38383613f89565b9150826002028217905092915050565b613fcc82613384565b67ffffffffffffffff811115613fe557613fe461364b565b5b613fef8254613a2b565b613ffa828285613f36565b600060209050601f83116001811461402d576000841561401b578287015190505b6140258582613fa7565b86555061408d565b601f19841661403b86613e21565b60005b828110156140635784890151825560018201915060208501945060208101905061403e565b86831015614080578489015161407c601f891682613f89565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006140cb60188361338f565b91506140d682614095565b602082019050919050565b600060208201905081810360008301526140fa816140be565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061415d60298361338f565b915061416882614101565b604082019050919050565b6000602082019050818103600083015261418c81614150565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e6f742061646d696e0000000000000000000000000000000000000000000000600082015250565b60006141f860098361338f565b9150614203826141c2565b602082019050919050565b60006020820190508181036000830152614227816141eb565b9050919050565b60006142398261321a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361426b5761426a613ca4565b5b600182019050919050565b7f53616c6520696e61637469766500000000000000000000000000000000000000600082015250565b60006142ac600d8361338f565b91506142b782614276565b602082019050919050565b600060208201905081810360008301526142db8161429f565b9050919050565b7f546f6f206d616e79206d696e7473207065722074786e00000000000000000000600082015250565b600061431860168361338f565b9150614323826142e2565b602082019050919050565b600060208201905081810360008301526143478161430b565b9050919050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b600061438460128361338f565b915061438f8261434e565b602082019050919050565b600060208201905081810360008301526143b381614377565b9050919050565b60006143c58261321a565b91506143d08361321a565b92508282026143de8161321a565b915082820484148315176143f5576143f4613ca4565b5b5092915050565b7f4e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b600061443260108361338f565b915061443d826143fc565b602082019050919050565b6000602082019050818103600083015261446181614425565b9050919050565b7f4e6f20636f6e7472616374206d696e7473000000000000000000000000000000600082015250565b600061449e60118361338f565b91506144a982614468565b602082019050919050565b600060208201905081810360008301526144cd81614491565b9050919050565b6000815190506144e381613436565b92915050565b6000602082840312156144ff576144fe613266565b5b600061450d848285016144d4565b91505092915050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b600061454c601f8361338f565b915061455782614516565b602082019050919050565b6000602082019050818103600083015261457b8161453f565b9050919050565b600081905092915050565b6000815461459a81613a2b565b6145a48186614582565b945060018216600081146145bf57600181146145d457614607565b60ff1983168652811515820286019350614607565b6145dd85613e21565b60005b838110156145ff578154818901526001820191506020810190506145e0565b838801955050505b50505092915050565b600061461b82613384565b6146258185614582565b93506146358185602086016133a0565b80840191505092915050565b600061464d828561458d565b91506146598284614610565b91508190509392505050565b6000614678614673846136c6565b6136ab565b90508281526020810184848401111561469457614693613646565b5b61469f8482856133a0565b509392505050565b600082601f8301126146bc576146bb613641565b5b81516146cc848260208601614665565b91505092915050565b6000602082840312156146eb576146ea613266565b5b600082015167ffffffffffffffff8111156147095761470861326b565b5b614715848285016146a7565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061477a60268361338f565b91506147858261471e565b604082019050919050565b600060208201905081810360008301526147a98161476d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006147e660208361338f565b91506147f1826147b0565b602082019050919050565b60006020820190508181036000830152614815816147d9565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614852601d8361338f565b915061485d8261481c565b602082019050919050565b6000602082019050818103600083015261488181614845565b9050919050565b600081905092915050565b50565b60006148a3600083614888565b91506148ae82614893565b600082019050919050565b60006148c482614896565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061492a603a8361338f565b9150614935826148ce565b604082019050919050565b600060208201905081810360008301526149598161491d565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006149bc60258361338f565b91506149c782614960565b604082019050919050565b600060208201905081810360008301526149eb816149af565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a4e60248361338f565b9150614a59826149f2565b604082019050919050565b60006020820190508181036000830152614a7d81614a41565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614aba60198361338f565b9150614ac582614a84565b602082019050919050565b60006020820190508181036000830152614ae981614aad565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b2a8261321a565b9150614b358361321a565b925082614b4557614b44614af0565b5b828204905092915050565b6000614b5b8261321a565b9150614b668361321a565b9250828203905081811115614b7e57614b7d613ca4565b5b92915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614be060328361338f565b9150614beb82614b84565b604082019050919050565b60006020820190508181036000830152614c0f81614bd3565b9050919050565b600081519050614c25816137ff565b92915050565b600060208284031215614c4157614c40613266565b5b6000614c4f84828501614c16565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000614cb4602a8361338f565b9150614cbf82614c58565b604082019050919050565b60006020820190508181036000830152614ce381614ca7565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614d1182614cea565b614d1b8185614cf5565b9350614d2b8185602086016133a0565b614d34816133ca565b840191505092915050565b6000608082019050614d54600083018761320b565b614d61602083018661320b565b614d6e6040830185613224565b8181036060830152614d808184614d06565b905095945050505050565b600081519050614d9a816132f5565b92915050565b600060208284031215614db657614db5613266565b5b6000614dc484828501614d8b565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614e0360208361338f565b9150614e0e82614dcd565b602082019050919050565b60006020820190508181036000830152614e3281614df6565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614e6f601c8361338f565b9150614e7a82614e39565b602082019050919050565b60006020820190508181036000830152614e9e81614e62565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000614f0160268361338f565b9150614f0c82614ea5565b604082019050919050565b60006020820190508181036000830152614f3081614ef4565b9050919050565b6000614f4282614cea565b614f4c8185614888565b9350614f5c8185602086016133a0565b80840191505092915050565b6000614f748284614f37565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614fb5601d8361338f565b9150614fc082614f7f565b602082019050919050565b60006020820190508181036000830152614fe481614fa8565b905091905056fea2646970667358221220e79cd32306d5275dbe95a9cc423f94f1508e9bb407e3afb0fc6ae5bbc39162f664736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000010000000000000000000000006b0931954fc214956db815581d8b1af7928c4e6900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001

-----Decoded View---------------
Arg [0] : payees (address[]): 0x6b0931954FC214956Db815581D8B1Af7928c4E69
Arg [1] : shares (uint256[]): 1

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 0000000000000000000000006b0931954fc214956db815581d8b1af7928c4e69
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001


Deployed Bytecode Sourcemap

73647:3584:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48019:40;48035:12;:10;:12::i;:::-;48049:9;48019:40;;;;;;;:::i;:::-;;;;;;;;73647:3584;;;;;75931:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54781:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55709:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57221:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56739:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75746:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50540:671;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57921:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74018:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48150:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49279:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58327:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74205:38;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51479:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76124:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55419:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73925:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74093:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76787:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55150:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72735:103;;;;;;;;;;;;;:::i;:::-;;76628:84;;;;;;;;;;;;;:::i;:::-;;49505:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72087:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76473:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55878:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49001:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77037:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73868:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74668:499;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57464:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49695:225;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58583:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50080:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75272:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48797:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48587:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73829:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48335:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73774:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57690:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72993:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76307:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44435:98;44488:7;44515:10;44508:17;;44435:98;:::o;75931:106::-;71973:13;:11;:13::i;:::-;76018:11:::1;76005:10;;:24;;;;;;;;;;;;;;;;;;75931:106:::0;:::o;54781:305::-;54883:4;54935:25;54920:40;;;:11;:40;;;;:105;;;;54992:33;54977:48;;;:11;:48;;;;54920:105;:158;;;;55042:36;55066:11;55042:23;:36::i;:::-;54920:158;54900:178;;54781:305;;;:::o;55709:100::-;55763:13;55796:5;55789:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55709:100;:::o;57221:171::-;57297:7;57317:23;57332:7;57317:14;:23::i;:::-;57360:15;:24;57376:7;57360:24;;;;;;;;;;;;;;;;;;;;;57353:31;;57221:171;;;:::o;56739:416::-;56820:13;56836:23;56851:7;56836:14;:23::i;:::-;56820:39;;56884:5;56878:11;;:2;:11;;;56870:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;56978:5;56962:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;56987:37;57004:5;57011:12;:10;:12::i;:::-;56987:16;:37::i;:::-;56962:62;56940:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;57126:21;57135:2;57139:7;57126:8;:21::i;:::-;56809:346;56739:416;;:::o;75746:92::-;75792:7;75819:11;;75812:18;;75746:92;:::o;50540:671::-;50635:1;50616:7;:16;50624:7;50616:16;;;;;;;;;;;;;;;;:20;50608:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;50692:15;50710:19;50721:7;50710:10;:19::i;:::-;50692:37;;50761:1;50750:7;:12;50742:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51023:7;51005:14;;:25;;;;;;;:::i;:::-;;;;;;;;51088:7;51066:9;:18;51076:7;51066:18;;;;;;;;;;;;;;;;:29;;;;;;;;;;;51119:35;51137:7;51146;51119:17;:35::i;:::-;51170:33;51186:7;51195;51170:33;;;;;;;:::i;:::-;;;;;;;;50597:614;50540:671;:::o;57921:335::-;58116:41;58135:12;:10;:12::i;:::-;58149:7;58116:18;:41::i;:::-;58108:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;58220:28;58230:4;58236:2;58240:7;58220:9;:28::i;:::-;57921:335;;;:::o;74018:25::-;;;;;;;;;;;;;:::o;48150:91::-;48194:7;48221:12;;48214:19;;48150:91;:::o;49279:135::-;49349:7;49376:14;:21;49391:5;49376:21;;;;;;;;;;;;;;;:30;49398:7;49376:30;;;;;;;;;;;;;;;;49369:37;;49279:135;;;;:::o;58327:185::-;58465:39;58482:4;58488:2;58492:7;58465:39;;;;;;;;;;;;:16;:39::i;:::-;58327:185;;;:::o;74205:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;51479:792::-;51580:1;51561:7;:16;51569:7;51561:16;;;;;;;;;;;;;;;;:20;51553:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;51637:15;51655:26;51666:5;51673:7;51655:10;:26::i;:::-;51637:44;;51713:1;51702:7;:12;51694:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52047:7;52017:19;:26;52037:5;52017:26;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;52124:7;52090:14;:21;52105:5;52090:21;;;;;;;;;;;;;;;:30;52112:7;52090:30;;;;;;;;;;;;;;;;:41;;;;;;;;;;;52155:47;52178:5;52185:7;52194;52155:22;:47::i;:::-;52239:5;52218:45;;;52246:7;52255;52218:45;;;;;;;:::i;:::-;;;;;;;;51542:729;51479:792;;:::o;76124:100::-;71973:13;:11;:13::i;:::-;76208:8:::1;76198:7;:18;;;;;;:::i;:::-;;76124:100:::0;:::o;55419:223::-;55491:7;55511:13;55527:17;55536:7;55527:8;:17::i;:::-;55511:33;;55580:1;55563:19;;:5;:19;;;55555:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;55629:5;55622:12;;;55419:223;;;:::o;73925:22::-;;;;;;;;;;;;;:::o;74093:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;76787:110::-;71973:13;:11;:13::i;:::-;76873:6:::1;:16;76880:8;76873:16;;;;;;;;;;;;;;;;;;;;;;;;;76872:17;76853:6;:16;76860:8;76853:16;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;76787:110:::0;:::o;55150:207::-;55222:7;55267:1;55250:19;;:5;:19;;;55242:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;55333:9;:16;55343:5;55333:16;;;;;;;;;;;;;;;;55326:23;;55150:207;;;:::o;72735:103::-;71973:13;:11;:13::i;:::-;72800:30:::1;72827:1;72800:18;:30::i;:::-;72735:103::o:0;76628:84::-;71973:13;:11;:13::i;:::-;76694:10:::1;;;;;;;;;;;76693:11;76680:10;;:24;;;;;;;;;;;;;;;;;;76628:84::o:0;49505:100::-;49556:7;49583;49591:5;49583:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49576:21;;49505:100;;;:::o;72087:87::-;72133:7;72160:6;;;;;;;;;;;72153:13;;72087:87;:::o;76473:96::-;71973:13;:11;:13::i;:::-;76550:11:::1;76542:5;:19;;;;76473:96:::0;:::o;55878:104::-;55934:13;55967:7;55960:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55878:104;:::o;49001:109::-;49057:7;49084:9;:18;49094:7;49084:18;;;;;;;;;;;;;;;;49077:25;;49001:109;;;:::o;77037:189::-;74388:12;:10;:12::i;:::-;74377:23;;:7;:5;:7::i;:::-;:23;;;:45;;;;74404:6;:18;74411:10;74404:18;;;;;;;;;;;;;;;;;;;;;;;;;74377:45;74369:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;77130:9:::1;77125:94;77149:8;77145:1;:12;77125:94;;;77179:28;77189:2;77193:11;;:13;;;;;;;;;:::i;:::-;;;;;77179:9;:28::i;:::-;77159:3;;;;;:::i;:::-;;;;77125:94;;;;77037:189:::0;;:::o;73868:33::-;;;;:::o;74668:499::-;74736:10;;;;;;;;;;;74728:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;74795:13;;74783:8;:25;;74775:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;74880:9;;74868:8;74854:11;;:22;;;;:::i;:::-;:35;;74846:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;74952:8;74944:5;;:16;;;;:::i;:::-;74931:9;:29;;74923:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;75014:9;75000:23;;:10;:23;;;74992:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;75063:9;75058:102;75082:8;75078:1;:12;75058:102;;;75112:36;75122:10;75134:11;;:13;;;;;;;;;:::i;:::-;;;;;75112:9;:36::i;:::-;75092:3;;;;;:::i;:::-;;;;75058:102;;;;74668:499;:::o;57464:155::-;57559:52;57578:12;:10;:12::i;:::-;57592:8;57602;57559:18;:52::i;:::-;57464:155;;:::o;49695:225::-;49753:7;49773:21;49821:15;:13;:15::i;:::-;49797:21;:39;;;;:::i;:::-;49773:63;;49854:58;49870:7;49879:13;49894:17;49903:7;49894:8;:17::i;:::-;49854:15;:58::i;:::-;49847:65;;;49695:225;;;:::o;58583:322::-;58757:41;58776:12;:10;:12::i;:::-;58790:7;58757:18;:41::i;:::-;58749:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;58859:38;58873:4;58879:2;58883:7;58892:4;58859:13;:38::i;:::-;58583:322;;;;:::o;50080:260::-;50152:7;50172:21;50229:20;50243:5;50229:13;:20::i;:::-;50196:5;:15;;;50220:4;50196:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;50172:77;;50267:65;50283:7;50292:13;50307:24;50316:5;50323:7;50307:8;:24::i;:::-;50267:15;:65::i;:::-;50260:72;;;50080:260;;;;:::o;75272:379::-;75337:13;75371:16;75379:7;75371;:16::i;:::-;75363:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;75462:1;75440:24;;:10;;;;;;;;;;;:24;;;75436:198;;75512:7;75521:18;:7;:16;:18::i;:::-;75495:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75481:60;;;;75436:198;75593:10;;;;;;;;;;;75581:32;;;75614:7;75581:41;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;75574:48;;75272:379;;;;:::o;48797:105::-;48851:7;48878;:16;48886:7;48878:16;;;;;;;;;;;;;;;;48871:23;;48797:105;;;:::o;48587:119::-;48645:7;48672:19;:26;48692:5;48672:26;;;;;;;;;;;;;;;;48665:33;;48587:119;;;:::o;73829:32::-;;;;:::o;48335:95::-;48381:7;48408:14;;48401:21;;48335:95;:::o;73774:30::-;;;;:::o;57690:164::-;57787:4;57811:18;:25;57830:5;57811:25;;;;;;;;;;;;;;;:35;57837:8;57811:35;;;;;;;;;;;;;;;;;;;;;;;;;57804:42;;57690:164;;;;:::o;72993:201::-;71973:13;:11;:13::i;:::-;73102:1:::1;73082:22;;:8;:22;;::::0;73074:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;73158:28;73177:8;73158:18;:28::i;:::-;72993:201:::0;:::o;76307:103::-;71973:13;:11;:13::i;:::-;76396:6:::1;76380:13;:22;;;;76307:103:::0;:::o;72252:132::-;72327:12;:10;:12::i;:::-;72316:23;;:7;:5;:7::i;:::-;:23;;;72308:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72252:132::o;37670:157::-;37755:4;37794:25;37779:40;;;:11;:40;;;;37772:47;;37670:157;;;:::o;67022:135::-;67104:16;67112:7;67104;:16::i;:::-;67096:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;67022:135;:::o;66301:174::-;66403:2;66376:15;:24;66392:7;66376:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;66459:7;66455:2;66421:46;;66430:23;66445:7;66430:14;:23::i;:::-;66421:46;;;;;;;;;;;;66301:174;;:::o;23396:317::-;23511:6;23486:21;:31;;23478:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23565:12;23583:9;:14;;23605:6;23583:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23564:52;;;23635:7;23627:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;23467:246;23396:317;;:::o;60938:264::-;61031:4;61048:13;61064:23;61079:7;61064:14;:23::i;:::-;61048:39;;61117:5;61106:16;;:7;:16;;;:52;;;;61126:32;61143:5;61150:7;61126:16;:32::i;:::-;61106:52;:87;;;;61186:7;61162:31;;:20;61174:7;61162:11;:20::i;:::-;:31;;;61106:87;61098:96;;;60938:264;;;;:::o;64925:1257::-;65084:4;65057:31;;:23;65072:7;65057:14;:23::i;:::-;:31;;;65049:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;65163:1;65149:16;;:2;:16;;;65141:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;65219:39;65240:4;65246:2;65250:7;65219:20;:39::i;:::-;65388:4;65361:31;;:23;65376:7;65361:14;:23::i;:::-;:31;;;65353:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;65506:15;:24;65522:7;65506:24;;;;;;;;;;;;65499:31;;;;;;;;;;;66001:1;65982:9;:15;65992:4;65982:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;66034:1;66017:9;:13;66027:2;66017:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;66076:2;66057:7;:16;66065:7;66057:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;66115:7;66111:2;66096:27;;66105:4;66096:27;;;;;;;;;;;;66136:38;66156:4;66162:2;66166:7;66136:19;:38::i;:::-;64925:1257;;;:::o;31044:211::-;31161:86;31181:5;31211:23;;;31236:2;31240:5;31188:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31161:19;:86::i;:::-;31044:211;;;:::o;60213:117::-;60279:7;60306;:16;60314:7;60306:16;;;;;;;;;;;;;;;;;;;;;60299:23;;60213:117;;;:::o;73354:191::-;73428:16;73447:6;;;;;;;;;;;73428:25;;73473:8;73464:6;;:17;;;;;;;;;;;;;;;;;;73528:8;73497:40;;73518:8;73497:40;;;;;;;;;;;;73417:128;73354:191;:::o;61544:110::-;61620:26;61630:2;61634:7;61620:26;;;;;;;;;;;;:9;:26::i;:::-;61544:110;;:::o;66618:315::-;66773:8;66764:17;;:5;:17;;;66756:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;66860:8;66822:18;:25;66841:5;66822:25;;;;;;;;;;;;;;;:35;66848:8;66822:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;66906:8;66884:41;;66899:5;66884:41;;;66916:8;66884:41;;;;;;:::i;:::-;;;;;;;;66618:315;;;:::o;52449:248::-;52595:7;52674:15;52659:12;;52639:7;:16;52647:7;52639:16;;;;;;;;;;;;;;;;52623:13;:32;;;;:::i;:::-;52622:49;;;;:::i;:::-;:67;;;;:::i;:::-;52615:74;;52449:248;;;;;:::o;59786:313::-;59942:28;59952:4;59958:2;59962:7;59942:9;:28::i;:::-;59989:47;60012:4;60018:2;60022:7;60031:4;59989:22;:47::i;:::-;59981:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;59786:313;;;;:::o;60643:128::-;60708:4;60761:1;60732:31;;:17;60741:7;60732:8;:17::i;:::-;:31;;;;60725:38;;60643:128;;;:::o;19003:716::-;19059:13;19110:14;19147:1;19127:17;19138:5;19127:10;:17::i;:::-;:21;19110:38;;19163:20;19197:6;19186:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19163:41;;19219:11;19348:6;19344:2;19340:15;19332:6;19328:28;19321:35;;19385:288;19392:4;19385:288;;;19417:5;;;;;;;;19559:8;19554:2;19547:5;19543:14;19538:30;19533:3;19525:44;19615:2;19606:11;;;;;;:::i;:::-;;;;;19649:1;19640:5;:10;19385:288;19636:21;19385:288;19694:6;19687:13;;;;;19003:716;;;:::o;69194:126::-;;;;:::o;69752:125::-;;;;:::o;34111:716::-;34535:23;34561:69;34589:4;34561:69;;;;;;;;;;;;;;;;;34569:5;34561:27;;;;:69;;;;;:::i;:::-;34535:95;;34665:1;34645:10;:17;:21;34641:179;;;34742:10;34731:30;;;;;;;;;;;;:::i;:::-;34723:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34641:179;34181:646;34111:716;;:::o;61881:319::-;62010:18;62016:2;62020:7;62010:5;:18::i;:::-;62061:53;62092:1;62096:2;62100:7;62109:4;62061:22;:53::i;:::-;62039:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;61881:319;;;:::o;67721:853::-;67875:4;67896:15;:2;:13;;;:15::i;:::-;67892:675;;;67948:2;67932:36;;;67969:12;:10;:12::i;:::-;67983:4;67989:7;67998:4;67932:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;67928:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68190:1;68173:6;:13;:18;68169:328;;68216:60;;;;;;;;;;:::i;:::-;;;;;;;;68169:328;68447:6;68441:13;68432:6;68428:2;68424:15;68417:38;67928:584;68064:41;;;68054:51;;;:6;:51;;;;68047:58;;;;;67892:675;68551:4;68544:11;;67721:853;;;;;;;:::o;15864:922::-;15917:7;15937:14;15954:1;15937:18;;16004:6;15995:5;:15;15991:102;;16040:6;16031:15;;;;;;:::i;:::-;;;;;16075:2;16065:12;;;;15991:102;16120:6;16111:5;:15;16107:102;;16156:6;16147:15;;;;;;:::i;:::-;;;;;16191:2;16181:12;;;;16107:102;16236:6;16227:5;:15;16223:102;;16272:6;16263:15;;;;;;:::i;:::-;;;;;16307:2;16297:12;;;;16223:102;16352:5;16343;:14;16339:99;;16387:5;16378:14;;;;;;:::i;:::-;;;;;16421:1;16411:11;;;;16339:99;16465:5;16456;:14;16452:99;;16500:5;16491:14;;;;;;:::i;:::-;;;;;16534:1;16524:11;;;;16452:99;16578:5;16569;:14;16565:99;;16613:5;16604:14;;;;;;:::i;:::-;;;;;16647:1;16637:11;;;;16565:99;16691:5;16682;:14;16678:66;;16727:1;16717:11;;;;16678:66;16772:6;16765:13;;;15864:922;;;:::o;24892:229::-;25029:12;25061:52;25083:6;25091:4;25097:1;25100:12;25061:21;:52::i;:::-;25054:59;;24892:229;;;;;:::o;62536:936::-;62630:1;62616:16;;:2;:16;;;62608:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;62689:16;62697:7;62689;:16::i;:::-;62688:17;62680:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;62751:45;62780:1;62784:2;62788:7;62751:20;:45::i;:::-;62895:16;62903:7;62895;:16::i;:::-;62894:17;62886:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;63310:1;63293:9;:13;63303:2;63293:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;63354:2;63335:7;:16;63343:7;63335:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;63399:7;63395:2;63374:33;;63391:1;63374:33;;;;;;;;;;;;63420:44;63448:1;63452:2;63456:7;63420:19;:44::i;:::-;62536:936;;:::o;22135:326::-;22195:4;22452:1;22430:7;:19;;;:23;22423:30;;22135:326;;;:::o;26012:455::-;26182:12;26240:5;26215:21;:30;;26207:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;26300:12;26314:23;26341:6;:11;;26360:5;26367:4;26341:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26299:73;;;;26390:69;26417:6;26425:7;26434:10;26446:12;26390:26;:69::i;:::-;26383:76;;;;26012:455;;;;;;:::o;28585:644::-;28770:12;28799:7;28795:427;;;28848:1;28827:10;:17;:22;28823:290;;29045:18;29056:6;29045:10;:18::i;:::-;29037:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;28823:290;29134:10;29127:17;;;;28795:427;29177:33;29185:10;29197:12;29177:7;:33::i;:::-;28585:644;;;;;;;:::o;29771:552::-;29952:1;29932:10;:17;:21;29928:388;;;30164:10;30158:17;30221:15;30208:10;30204:2;30200:19;30193:44;29928:388;30291:12;30284:20;;;;;;;;;;;:::i;:::-;;;;;;;;7:126:1;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:77::-;402:7;431:5;420:16;;365:77;;;:::o;448:118::-;535:24;553:5;535:24;:::i;:::-;530:3;523:37;448:118;;:::o;572:332::-;693:4;731:2;720:9;716:18;708:26;;744:71;812:1;801:9;797:17;788:6;744:71;:::i;:::-;825:72;893:2;882:9;878:18;869:6;825:72;:::i;:::-;572:332;;;;;:::o;910:75::-;943:6;976:2;970:9;960:19;;910:75;:::o;991:117::-;1100:1;1097;1090:12;1114:117;1223:1;1220;1213:12;1237:122;1310:24;1328:5;1310:24;:::i;:::-;1303:5;1300:35;1290:63;;1349:1;1346;1339:12;1290:63;1237:122;:::o;1365:139::-;1411:5;1449:6;1436:20;1427:29;;1465:33;1492:5;1465:33;:::i;:::-;1365:139;;;;:::o;1510:329::-;1569:6;1618:2;1606:9;1597:7;1593:23;1589:32;1586:119;;;1624:79;;:::i;:::-;1586:119;1744:1;1769:53;1814:7;1805:6;1794:9;1790:22;1769:53;:::i;:::-;1759:63;;1715:117;1510:329;;;;:::o;1845:149::-;1881:7;1921:66;1914:5;1910:78;1899:89;;1845:149;;;:::o;2000:120::-;2072:23;2089:5;2072:23;:::i;:::-;2065:5;2062:34;2052:62;;2110:1;2107;2100:12;2052:62;2000:120;:::o;2126:137::-;2171:5;2209:6;2196:20;2187:29;;2225:32;2251:5;2225:32;:::i;:::-;2126:137;;;;:::o;2269:327::-;2327:6;2376:2;2364:9;2355:7;2351:23;2347:32;2344:119;;;2382:79;;:::i;:::-;2344:119;2502:1;2527:52;2571:7;2562:6;2551:9;2547:22;2527:52;:::i;:::-;2517:62;;2473:116;2269:327;;;;:::o;2602:90::-;2636:7;2679:5;2672:13;2665:21;2654:32;;2602:90;;;:::o;2698:109::-;2779:21;2794:5;2779:21;:::i;:::-;2774:3;2767:34;2698:109;;:::o;2813:210::-;2900:4;2938:2;2927:9;2923:18;2915:26;;2951:65;3013:1;3002:9;2998:17;2989:6;2951:65;:::i;:::-;2813:210;;;;:::o;3029:99::-;3081:6;3115:5;3109:12;3099:22;;3029:99;;;:::o;3134:169::-;3218:11;3252:6;3247:3;3240:19;3292:4;3287:3;3283:14;3268:29;;3134:169;;;;:::o;3309:246::-;3390:1;3400:113;3414:6;3411:1;3408:13;3400:113;;;3499:1;3494:3;3490:11;3484:18;3480:1;3475:3;3471:11;3464:39;3436:2;3433:1;3429:10;3424:15;;3400:113;;;3547:1;3538:6;3533:3;3529:16;3522:27;3371:184;3309:246;;;:::o;3561:102::-;3602:6;3653:2;3649:7;3644:2;3637:5;3633:14;3629:28;3619:38;;3561:102;;;:::o;3669:377::-;3757:3;3785:39;3818:5;3785:39;:::i;:::-;3840:71;3904:6;3899:3;3840:71;:::i;:::-;3833:78;;3920:65;3978:6;3973:3;3966:4;3959:5;3955:16;3920:65;:::i;:::-;4010:29;4032:6;4010:29;:::i;:::-;4005:3;4001:39;3994:46;;3761:285;3669:377;;;;:::o;4052:313::-;4165:4;4203:2;4192:9;4188:18;4180:26;;4252:9;4246:4;4242:20;4238:1;4227:9;4223:17;4216:47;4280:78;4353:4;4344:6;4280:78;:::i;:::-;4272:86;;4052:313;;;;:::o;4371:122::-;4444:24;4462:5;4444:24;:::i;:::-;4437:5;4434:35;4424:63;;4483:1;4480;4473:12;4424:63;4371:122;:::o;4499:139::-;4545:5;4583:6;4570:20;4561:29;;4599:33;4626:5;4599:33;:::i;:::-;4499:139;;;;:::o;4644:329::-;4703:6;4752:2;4740:9;4731:7;4727:23;4723:32;4720:119;;;4758:79;;:::i;:::-;4720:119;4878:1;4903:53;4948:7;4939:6;4928:9;4924:22;4903:53;:::i;:::-;4893:63;;4849:117;4644:329;;;;:::o;4979:222::-;5072:4;5110:2;5099:9;5095:18;5087:26;;5123:71;5191:1;5180:9;5176:17;5167:6;5123:71;:::i;:::-;4979:222;;;;:::o;5207:474::-;5275:6;5283;5332:2;5320:9;5311:7;5307:23;5303:32;5300:119;;;5338:79;;:::i;:::-;5300:119;5458:1;5483:53;5528:7;5519:6;5508:9;5504:22;5483:53;:::i;:::-;5473:63;;5429:117;5585:2;5611:53;5656:7;5647:6;5636:9;5632:22;5611:53;:::i;:::-;5601:63;;5556:118;5207:474;;;;;:::o;5687:222::-;5780:4;5818:2;5807:9;5803:18;5795:26;;5831:71;5899:1;5888:9;5884:17;5875:6;5831:71;:::i;:::-;5687:222;;;;:::o;5915:104::-;5960:7;5989:24;6007:5;5989:24;:::i;:::-;5978:35;;5915:104;;;:::o;6025:138::-;6106:32;6132:5;6106:32;:::i;:::-;6099:5;6096:43;6086:71;;6153:1;6150;6143:12;6086:71;6025:138;:::o;6169:155::-;6223:5;6261:6;6248:20;6239:29;;6277:41;6312:5;6277:41;:::i;:::-;6169:155;;;;:::o;6330:345::-;6397:6;6446:2;6434:9;6425:7;6421:23;6417:32;6414:119;;;6452:79;;:::i;:::-;6414:119;6572:1;6597:61;6650:7;6641:6;6630:9;6626:22;6597:61;:::i;:::-;6587:71;;6543:125;6330:345;;;;:::o;6681:619::-;6758:6;6766;6774;6823:2;6811:9;6802:7;6798:23;6794:32;6791:119;;;6829:79;;:::i;:::-;6791:119;6949:1;6974:53;7019:7;7010:6;6999:9;6995:22;6974:53;:::i;:::-;6964:63;;6920:117;7076:2;7102:53;7147:7;7138:6;7127:9;7123:22;7102:53;:::i;:::-;7092:63;;7047:118;7204:2;7230:53;7275:7;7266:6;7255:9;7251:22;7230:53;:::i;:::-;7220:63;;7175:118;6681:619;;;;;:::o;7306:110::-;7357:7;7386:24;7404:5;7386:24;:::i;:::-;7375:35;;7306:110;;;:::o;7422:150::-;7509:38;7541:5;7509:38;:::i;:::-;7502:5;7499:49;7489:77;;7562:1;7559;7552:12;7489:77;7422:150;:::o;7578:167::-;7638:5;7676:6;7663:20;7654:29;;7692:47;7733:5;7692:47;:::i;:::-;7578:167;;;;:::o;7751:502::-;7833:6;7841;7890:2;7878:9;7869:7;7865:23;7861:32;7858:119;;;7896:79;;:::i;:::-;7858:119;8016:1;8041:67;8100:7;8091:6;8080:9;8076:22;8041:67;:::i;:::-;8031:77;;7987:131;8157:2;8183:53;8228:7;8219:6;8208:9;8204:22;8183:53;:::i;:::-;8173:63;;8128:118;7751:502;;;;;:::o;8259:117::-;8368:1;8365;8358:12;8382:117;8491:1;8488;8481:12;8505:180;8553:77;8550:1;8543:88;8650:4;8647:1;8640:15;8674:4;8671:1;8664:15;8691:281;8774:27;8796:4;8774:27;:::i;:::-;8766:6;8762:40;8904:6;8892:10;8889:22;8868:18;8856:10;8853:34;8850:62;8847:88;;;8915:18;;:::i;:::-;8847:88;8955:10;8951:2;8944:22;8734:238;8691:281;;:::o;8978:129::-;9012:6;9039:20;;:::i;:::-;9029:30;;9068:33;9096:4;9088:6;9068:33;:::i;:::-;8978:129;;;:::o;9113:308::-;9175:4;9265:18;9257:6;9254:30;9251:56;;;9287:18;;:::i;:::-;9251:56;9325:29;9347:6;9325:29;:::i;:::-;9317:37;;9409:4;9403;9399:15;9391:23;;9113:308;;;:::o;9427:146::-;9524:6;9519:3;9514;9501:30;9565:1;9556:6;9551:3;9547:16;9540:27;9427:146;;;:::o;9579:425::-;9657:5;9682:66;9698:49;9740:6;9698:49;:::i;:::-;9682:66;:::i;:::-;9673:75;;9771:6;9764:5;9757:21;9809:4;9802:5;9798:16;9847:3;9838:6;9833:3;9829:16;9826:25;9823:112;;;9854:79;;:::i;:::-;9823:112;9944:54;9991:6;9986:3;9981;9944:54;:::i;:::-;9663:341;9579:425;;;;;:::o;10024:340::-;10080:5;10129:3;10122:4;10114:6;10110:17;10106:27;10096:122;;10137:79;;:::i;:::-;10096:122;10254:6;10241:20;10279:79;10354:3;10346:6;10339:4;10331:6;10327:17;10279:79;:::i;:::-;10270:88;;10086:278;10024:340;;;;:::o;10370:509::-;10439:6;10488:2;10476:9;10467:7;10463:23;10459:32;10456:119;;;10494:79;;:::i;:::-;10456:119;10642:1;10631:9;10627:17;10614:31;10672:18;10664:6;10661:30;10658:117;;;10694:79;;:::i;:::-;10658:117;10799:63;10854:7;10845:6;10834:9;10830:22;10799:63;:::i;:::-;10789:73;;10585:287;10370:509;;;;:::o;10885:474::-;10953:6;10961;11010:2;10998:9;10989:7;10985:23;10981:32;10978:119;;;11016:79;;:::i;:::-;10978:119;11136:1;11161:53;11206:7;11197:6;11186:9;11182:22;11161:53;:::i;:::-;11151:63;;11107:117;11263:2;11289:53;11334:7;11325:6;11314:9;11310:22;11289:53;:::i;:::-;11279:63;;11234:118;10885:474;;;;;:::o;11365:116::-;11435:21;11450:5;11435:21;:::i;:::-;11428:5;11425:32;11415:60;;11471:1;11468;11461:12;11415:60;11365:116;:::o;11487:133::-;11530:5;11568:6;11555:20;11546:29;;11584:30;11608:5;11584:30;:::i;:::-;11487:133;;;;:::o;11626:468::-;11691:6;11699;11748:2;11736:9;11727:7;11723:23;11719:32;11716:119;;;11754:79;;:::i;:::-;11716:119;11874:1;11899:53;11944:7;11935:6;11924:9;11920:22;11899:53;:::i;:::-;11889:63;;11845:117;12001:2;12027:50;12069:7;12060:6;12049:9;12045:22;12027:50;:::i;:::-;12017:60;;11972:115;11626:468;;;;;:::o;12100:307::-;12161:4;12251:18;12243:6;12240:30;12237:56;;;12273:18;;:::i;:::-;12237:56;12311:29;12333:6;12311:29;:::i;:::-;12303:37;;12395:4;12389;12385:15;12377:23;;12100:307;;;:::o;12413:423::-;12490:5;12515:65;12531:48;12572:6;12531:48;:::i;:::-;12515:65;:::i;:::-;12506:74;;12603:6;12596:5;12589:21;12641:4;12634:5;12630:16;12679:3;12670:6;12665:3;12661:16;12658:25;12655:112;;;12686:79;;:::i;:::-;12655:112;12776:54;12823:6;12818:3;12813;12776:54;:::i;:::-;12496:340;12413:423;;;;;:::o;12855:338::-;12910:5;12959:3;12952:4;12944:6;12940:17;12936:27;12926:122;;12967:79;;:::i;:::-;12926:122;13084:6;13071:20;13109:78;13183:3;13175:6;13168:4;13160:6;13156:17;13109:78;:::i;:::-;13100:87;;12916:277;12855:338;;;;:::o;13199:943::-;13294:6;13302;13310;13318;13367:3;13355:9;13346:7;13342:23;13338:33;13335:120;;;13374:79;;:::i;:::-;13335:120;13494:1;13519:53;13564:7;13555:6;13544:9;13540:22;13519:53;:::i;:::-;13509:63;;13465:117;13621:2;13647:53;13692:7;13683:6;13672:9;13668:22;13647:53;:::i;:::-;13637:63;;13592:118;13749:2;13775:53;13820:7;13811:6;13800:9;13796:22;13775:53;:::i;:::-;13765:63;;13720:118;13905:2;13894:9;13890:18;13877:32;13936:18;13928:6;13925:30;13922:117;;;13958:79;;:::i;:::-;13922:117;14063:62;14117:7;14108:6;14097:9;14093:22;14063:62;:::i;:::-;14053:72;;13848:287;13199:943;;;;;;;:::o;14148:357::-;14221:6;14270:2;14258:9;14249:7;14245:23;14241:32;14238:119;;;14276:79;;:::i;:::-;14238:119;14396:1;14421:67;14480:7;14471:6;14460:9;14456:22;14421:67;:::i;:::-;14411:77;;14367:131;14148:357;;;;:::o;14511:474::-;14579:6;14587;14636:2;14624:9;14615:7;14611:23;14607:32;14604:119;;;14642:79;;:::i;:::-;14604:119;14762:1;14787:53;14832:7;14823:6;14812:9;14808:22;14787:53;:::i;:::-;14777:63;;14733:117;14889:2;14915:53;14960:7;14951:6;14940:9;14936:22;14915:53;:::i;:::-;14905:63;;14860:118;14511:474;;;;;:::o;14991:180::-;15039:77;15036:1;15029:88;15136:4;15133:1;15126:15;15160:4;15157:1;15150:15;15177:320;15221:6;15258:1;15252:4;15248:12;15238:22;;15305:1;15299:4;15295:12;15326:18;15316:81;;15382:4;15374:6;15370:17;15360:27;;15316:81;15444:2;15436:6;15433:14;15413:18;15410:38;15407:84;;15463:18;;:::i;:::-;15407:84;15228:269;15177:320;;;:::o;15503:220::-;15643:34;15639:1;15631:6;15627:14;15620:58;15712:3;15707:2;15699:6;15695:15;15688:28;15503:220;:::o;15729:366::-;15871:3;15892:67;15956:2;15951:3;15892:67;:::i;:::-;15885:74;;15968:93;16057:3;15968:93;:::i;:::-;16086:2;16081:3;16077:12;16070:19;;15729:366;;;:::o;16101:419::-;16267:4;16305:2;16294:9;16290:18;16282:26;;16354:9;16348:4;16344:20;16340:1;16329:9;16325:17;16318:47;16382:131;16508:4;16382:131;:::i;:::-;16374:139;;16101:419;;;:::o;16526:248::-;16666:34;16662:1;16654:6;16650:14;16643:58;16735:31;16730:2;16722:6;16718:15;16711:56;16526:248;:::o;16780:366::-;16922:3;16943:67;17007:2;17002:3;16943:67;:::i;:::-;16936:74;;17019:93;17108:3;17019:93;:::i;:::-;17137:2;17132:3;17128:12;17121:19;;16780:366;;;:::o;17152:419::-;17318:4;17356:2;17345:9;17341:18;17333:26;;17405:9;17399:4;17395:20;17391:1;17380:9;17376:17;17369:47;17433:131;17559:4;17433:131;:::i;:::-;17425:139;;17152:419;;;:::o;17577:225::-;17717:34;17713:1;17705:6;17701:14;17694:58;17786:8;17781:2;17773:6;17769:15;17762:33;17577:225;:::o;17808:366::-;17950:3;17971:67;18035:2;18030:3;17971:67;:::i;:::-;17964:74;;18047:93;18136:3;18047:93;:::i;:::-;18165:2;18160:3;18156:12;18149:19;;17808:366;;;:::o;18180:419::-;18346:4;18384:2;18373:9;18369:18;18361:26;;18433:9;18427:4;18423:20;18419:1;18408:9;18404:17;18397:47;18461:131;18587:4;18461:131;:::i;:::-;18453:139;;18180:419;;;:::o;18605:230::-;18745:34;18741:1;18733:6;18729:14;18722:58;18814:13;18809:2;18801:6;18797:15;18790:38;18605:230;:::o;18841:366::-;18983:3;19004:67;19068:2;19063:3;19004:67;:::i;:::-;18997:74;;19080:93;19169:3;19080:93;:::i;:::-;19198:2;19193:3;19189:12;19182:19;;18841:366;;;:::o;19213:419::-;19379:4;19417:2;19406:9;19402:18;19394:26;;19466:9;19460:4;19456:20;19452:1;19441:9;19437:17;19430:47;19494:131;19620:4;19494:131;:::i;:::-;19486:139;;19213:419;;;:::o;19638:180::-;19686:77;19683:1;19676:88;19783:4;19780:1;19773:15;19807:4;19804:1;19797:15;19824:191;19864:3;19883:20;19901:1;19883:20;:::i;:::-;19878:25;;19917:20;19935:1;19917:20;:::i;:::-;19912:25;;19960:1;19957;19953:9;19946:16;;19981:3;19978:1;19975:10;19972:36;;;19988:18;;:::i;:::-;19972:36;19824:191;;;;:::o;20021:60::-;20049:3;20070:5;20063:12;;20021:60;;;:::o;20087:142::-;20137:9;20170:53;20188:34;20197:24;20215:5;20197:24;:::i;:::-;20188:34;:::i;:::-;20170:53;:::i;:::-;20157:66;;20087:142;;;:::o;20235:126::-;20285:9;20318:37;20349:5;20318:37;:::i;:::-;20305:50;;20235:126;;;:::o;20367:134::-;20425:9;20458:37;20489:5;20458:37;:::i;:::-;20445:50;;20367:134;;;:::o;20507:147::-;20602:45;20641:5;20602:45;:::i;:::-;20597:3;20590:58;20507:147;;:::o;20660:348::-;20789:4;20827:2;20816:9;20812:18;20804:26;;20840:79;20916:1;20905:9;20901:17;20892:6;20840:79;:::i;:::-;20929:72;20997:2;20986:9;20982:18;20973:6;20929:72;:::i;:::-;20660:348;;;;;:::o;21014:232::-;21154:34;21150:1;21142:6;21138:14;21131:58;21223:15;21218:2;21210:6;21206:15;21199:40;21014:232;:::o;21252:366::-;21394:3;21415:67;21479:2;21474:3;21415:67;:::i;:::-;21408:74;;21491:93;21580:3;21491:93;:::i;:::-;21609:2;21604:3;21600:12;21593:19;;21252:366;;;:::o;21624:419::-;21790:4;21828:2;21817:9;21813:18;21805:26;;21877:9;21871:4;21867:20;21863:1;21852:9;21848:17;21841:47;21905:131;22031:4;21905:131;:::i;:::-;21897:139;;21624:419;;;:::o;22049:141::-;22098:4;22121:3;22113:11;;22144:3;22141:1;22134:14;22178:4;22175:1;22165:18;22157:26;;22049:141;;;:::o;22196:93::-;22233:6;22280:2;22275;22268:5;22264:14;22260:23;22250:33;;22196:93;;;:::o;22295:107::-;22339:8;22389:5;22383:4;22379:16;22358:37;;22295:107;;;;:::o;22408:393::-;22477:6;22527:1;22515:10;22511:18;22550:97;22580:66;22569:9;22550:97;:::i;:::-;22668:39;22698:8;22687:9;22668:39;:::i;:::-;22656:51;;22740:4;22736:9;22729:5;22725:21;22716:30;;22789:4;22779:8;22775:19;22768:5;22765:30;22755:40;;22484:317;;22408:393;;;;;:::o;22807:142::-;22857:9;22890:53;22908:34;22917:24;22935:5;22917:24;:::i;:::-;22908:34;:::i;:::-;22890:53;:::i;:::-;22877:66;;22807:142;;;:::o;22955:75::-;22998:3;23019:5;23012:12;;22955:75;;;:::o;23036:269::-;23146:39;23177:7;23146:39;:::i;:::-;23207:91;23256:41;23280:16;23256:41;:::i;:::-;23248:6;23241:4;23235:11;23207:91;:::i;:::-;23201:4;23194:105;23112:193;23036:269;;;:::o;23311:73::-;23356:3;23311:73;:::o;23390:189::-;23467:32;;:::i;:::-;23508:65;23566:6;23558;23552:4;23508:65;:::i;:::-;23443:136;23390:189;;:::o;23585:186::-;23645:120;23662:3;23655:5;23652:14;23645:120;;;23716:39;23753:1;23746:5;23716:39;:::i;:::-;23689:1;23682:5;23678:13;23669:22;;23645:120;;;23585:186;;:::o;23777:543::-;23878:2;23873:3;23870:11;23867:446;;;23912:38;23944:5;23912:38;:::i;:::-;23996:29;24014:10;23996:29;:::i;:::-;23986:8;23982:44;24179:2;24167:10;24164:18;24161:49;;;24200:8;24185:23;;24161:49;24223:80;24279:22;24297:3;24279:22;:::i;:::-;24269:8;24265:37;24252:11;24223:80;:::i;:::-;23882:431;;23867:446;23777:543;;;:::o;24326:117::-;24380:8;24430:5;24424:4;24420:16;24399:37;;24326:117;;;;:::o;24449:169::-;24493:6;24526:51;24574:1;24570:6;24562:5;24559:1;24555:13;24526:51;:::i;:::-;24522:56;24607:4;24601;24597:15;24587:25;;24500:118;24449:169;;;;:::o;24623:295::-;24699:4;24845:29;24870:3;24864:4;24845:29;:::i;:::-;24837:37;;24907:3;24904:1;24900:11;24894:4;24891:21;24883:29;;24623:295;;;;:::o;24923:1395::-;25040:37;25073:3;25040:37;:::i;:::-;25142:18;25134:6;25131:30;25128:56;;;25164:18;;:::i;:::-;25128:56;25208:38;25240:4;25234:11;25208:38;:::i;:::-;25293:67;25353:6;25345;25339:4;25293:67;:::i;:::-;25387:1;25411:4;25398:17;;25443:2;25435:6;25432:14;25460:1;25455:618;;;;26117:1;26134:6;26131:77;;;26183:9;26178:3;26174:19;26168:26;26159:35;;26131:77;26234:67;26294:6;26287:5;26234:67;:::i;:::-;26228:4;26221:81;26090:222;25425:887;;25455:618;25507:4;25503:9;25495:6;25491:22;25541:37;25573:4;25541:37;:::i;:::-;25600:1;25614:208;25628:7;25625:1;25622:14;25614:208;;;25707:9;25702:3;25698:19;25692:26;25684:6;25677:42;25758:1;25750:6;25746:14;25736:24;;25805:2;25794:9;25790:18;25777:31;;25651:4;25648:1;25644:12;25639:17;;25614:208;;;25850:6;25841:7;25838:19;25835:179;;;25908:9;25903:3;25899:19;25893:26;25951:48;25993:4;25985:6;25981:17;25970:9;25951:48;:::i;:::-;25943:6;25936:64;25858:156;25835:179;26060:1;26056;26048:6;26044:14;26040:22;26034:4;26027:36;25462:611;;;25425:887;;25015:1303;;;24923:1395;;:::o;26324:174::-;26464:26;26460:1;26452:6;26448:14;26441:50;26324:174;:::o;26504:366::-;26646:3;26667:67;26731:2;26726:3;26667:67;:::i;:::-;26660:74;;26743:93;26832:3;26743:93;:::i;:::-;26861:2;26856:3;26852:12;26845:19;;26504:366;;;:::o;26876:419::-;27042:4;27080:2;27069:9;27065:18;27057:26;;27129:9;27123:4;27119:20;27115:1;27104:9;27100:17;27093:47;27157:131;27283:4;27157:131;:::i;:::-;27149:139;;26876:419;;;:::o;27301:228::-;27441:34;27437:1;27429:6;27425:14;27418:58;27510:11;27505:2;27497:6;27493:15;27486:36;27301:228;:::o;27535:366::-;27677:3;27698:67;27762:2;27757:3;27698:67;:::i;:::-;27691:74;;27774:93;27863:3;27774:93;:::i;:::-;27892:2;27887:3;27883:12;27876:19;;27535:366;;;:::o;27907:419::-;28073:4;28111:2;28100:9;28096:18;28088:26;;28160:9;28154:4;28150:20;28146:1;28135:9;28131:17;28124:47;28188:131;28314:4;28188:131;:::i;:::-;28180:139;;27907:419;;;:::o;28332:180::-;28380:77;28377:1;28370:88;28477:4;28474:1;28467:15;28501:4;28498:1;28491:15;28518:159;28658:11;28654:1;28646:6;28642:14;28635:35;28518:159;:::o;28683:365::-;28825:3;28846:66;28910:1;28905:3;28846:66;:::i;:::-;28839:73;;28921:93;29010:3;28921:93;:::i;:::-;29039:2;29034:3;29030:12;29023:19;;28683:365;;;:::o;29054:419::-;29220:4;29258:2;29247:9;29243:18;29235:26;;29307:9;29301:4;29297:20;29293:1;29282:9;29278:17;29271:47;29335:131;29461:4;29335:131;:::i;:::-;29327:139;;29054:419;;;:::o;29479:233::-;29518:3;29541:24;29559:5;29541:24;:::i;:::-;29532:33;;29587:66;29580:5;29577:77;29574:103;;29657:18;;:::i;:::-;29574:103;29704:1;29697:5;29693:13;29686:20;;29479:233;;;:::o;29718:163::-;29858:15;29854:1;29846:6;29842:14;29835:39;29718:163;:::o;29887:366::-;30029:3;30050:67;30114:2;30109:3;30050:67;:::i;:::-;30043:74;;30126:93;30215:3;30126:93;:::i;:::-;30244:2;30239:3;30235:12;30228:19;;29887:366;;;:::o;30259:419::-;30425:4;30463:2;30452:9;30448:18;30440:26;;30512:9;30506:4;30502:20;30498:1;30487:9;30483:17;30476:47;30540:131;30666:4;30540:131;:::i;:::-;30532:139;;30259:419;;;:::o;30684:172::-;30824:24;30820:1;30812:6;30808:14;30801:48;30684:172;:::o;30862:366::-;31004:3;31025:67;31089:2;31084:3;31025:67;:::i;:::-;31018:74;;31101:93;31190:3;31101:93;:::i;:::-;31219:2;31214:3;31210:12;31203:19;;30862:366;;;:::o;31234:419::-;31400:4;31438:2;31427:9;31423:18;31415:26;;31487:9;31481:4;31477:20;31473:1;31462:9;31458:17;31451:47;31515:131;31641:4;31515:131;:::i;:::-;31507:139;;31234:419;;;:::o;31659:168::-;31799:20;31795:1;31787:6;31783:14;31776:44;31659:168;:::o;31833:366::-;31975:3;31996:67;32060:2;32055:3;31996:67;:::i;:::-;31989:74;;32072:93;32161:3;32072:93;:::i;:::-;32190:2;32185:3;32181:12;32174:19;;31833:366;;;:::o;32205:419::-;32371:4;32409:2;32398:9;32394:18;32386:26;;32458:9;32452:4;32448:20;32444:1;32433:9;32429:17;32422:47;32486:131;32612:4;32486:131;:::i;:::-;32478:139;;32205:419;;;:::o;32630:410::-;32670:7;32693:20;32711:1;32693:20;:::i;:::-;32688:25;;32727:20;32745:1;32727:20;:::i;:::-;32722:25;;32782:1;32779;32775:9;32804:30;32822:11;32804:30;:::i;:::-;32793:41;;32983:1;32974:7;32970:15;32967:1;32964:22;32944:1;32937:9;32917:83;32894:139;;33013:18;;:::i;:::-;32894:139;32678:362;32630:410;;;;:::o;33046:166::-;33186:18;33182:1;33174:6;33170:14;33163:42;33046:166;:::o;33218:366::-;33360:3;33381:67;33445:2;33440:3;33381:67;:::i;:::-;33374:74;;33457:93;33546:3;33457:93;:::i;:::-;33575:2;33570:3;33566:12;33559:19;;33218:366;;;:::o;33590:419::-;33756:4;33794:2;33783:9;33779:18;33771:26;;33843:9;33837:4;33833:20;33829:1;33818:9;33814:17;33807:47;33871:131;33997:4;33871:131;:::i;:::-;33863:139;;33590:419;;;:::o;34015:167::-;34155:19;34151:1;34143:6;34139:14;34132:43;34015:167;:::o;34188:366::-;34330:3;34351:67;34415:2;34410:3;34351:67;:::i;:::-;34344:74;;34427:93;34516:3;34427:93;:::i;:::-;34545:2;34540:3;34536:12;34529:19;;34188:366;;;:::o;34560:419::-;34726:4;34764:2;34753:9;34749:18;34741:26;;34813:9;34807:4;34803:20;34799:1;34788:9;34784:17;34777:47;34841:131;34967:4;34841:131;:::i;:::-;34833:139;;34560:419;;;:::o;34985:143::-;35042:5;35073:6;35067:13;35058:22;;35089:33;35116:5;35089:33;:::i;:::-;34985:143;;;;:::o;35134:351::-;35204:6;35253:2;35241:9;35232:7;35228:23;35224:32;35221:119;;;35259:79;;:::i;:::-;35221:119;35379:1;35404:64;35460:7;35451:6;35440:9;35436:22;35404:64;:::i;:::-;35394:74;;35350:128;35134:351;;;;:::o;35491:181::-;35631:33;35627:1;35619:6;35615:14;35608:57;35491:181;:::o;35678:366::-;35820:3;35841:67;35905:2;35900:3;35841:67;:::i;:::-;35834:74;;35917:93;36006:3;35917:93;:::i;:::-;36035:2;36030:3;36026:12;36019:19;;35678:366;;;:::o;36050:419::-;36216:4;36254:2;36243:9;36239:18;36231:26;;36303:9;36297:4;36293:20;36289:1;36278:9;36274:17;36267:47;36331:131;36457:4;36331:131;:::i;:::-;36323:139;;36050:419;;;:::o;36475:148::-;36577:11;36614:3;36599:18;;36475:148;;;;:::o;36653:874::-;36756:3;36793:5;36787:12;36822:36;36848:9;36822:36;:::i;:::-;36874:89;36956:6;36951:3;36874:89;:::i;:::-;36867:96;;36994:1;36983:9;36979:17;37010:1;37005:166;;;;37185:1;37180:341;;;;36972:549;;37005:166;37089:4;37085:9;37074;37070:25;37065:3;37058:38;37151:6;37144:14;37137:22;37129:6;37125:35;37120:3;37116:45;37109:52;;37005:166;;37180:341;37247:38;37279:5;37247:38;:::i;:::-;37307:1;37321:154;37335:6;37332:1;37329:13;37321:154;;;37409:7;37403:14;37399:1;37394:3;37390:11;37383:35;37459:1;37450:7;37446:15;37435:26;;37357:4;37354:1;37350:12;37345:17;;37321:154;;;37504:6;37499:3;37495:16;37488:23;;37187:334;;36972:549;;36760:767;;36653:874;;;;:::o;37533:390::-;37639:3;37667:39;37700:5;37667:39;:::i;:::-;37722:89;37804:6;37799:3;37722:89;:::i;:::-;37715:96;;37820:65;37878:6;37873:3;37866:4;37859:5;37855:16;37820:65;:::i;:::-;37910:6;37905:3;37901:16;37894:23;;37643:280;37533:390;;;;:::o;37929:429::-;38106:3;38128:92;38216:3;38207:6;38128:92;:::i;:::-;38121:99;;38237:95;38328:3;38319:6;38237:95;:::i;:::-;38230:102;;38349:3;38342:10;;37929:429;;;;;:::o;38364:434::-;38453:5;38478:66;38494:49;38536:6;38494:49;:::i;:::-;38478:66;:::i;:::-;38469:75;;38567:6;38560:5;38553:21;38605:4;38598:5;38594:16;38643:3;38634:6;38629:3;38625:16;38622:25;38619:112;;;38650:79;;:::i;:::-;38619:112;38740:52;38785:6;38780:3;38775;38740:52;:::i;:::-;38459:339;38364:434;;;;;:::o;38818:355::-;38885:5;38934:3;38927:4;38919:6;38915:17;38911:27;38901:122;;38942:79;;:::i;:::-;38901:122;39052:6;39046:13;39077:90;39163:3;39155:6;39148:4;39140:6;39136:17;39077:90;:::i;:::-;39068:99;;38891:282;38818:355;;;;:::o;39179:524::-;39259:6;39308:2;39296:9;39287:7;39283:23;39279:32;39276:119;;;39314:79;;:::i;:::-;39276:119;39455:1;39444:9;39440:17;39434:24;39485:18;39477:6;39474:30;39471:117;;;39507:79;;:::i;:::-;39471:117;39612:74;39678:7;39669:6;39658:9;39654:22;39612:74;:::i;:::-;39602:84;;39405:291;39179:524;;;;:::o;39709:225::-;39849:34;39845:1;39837:6;39833:14;39826:58;39918:8;39913:2;39905:6;39901:15;39894:33;39709:225;:::o;39940:366::-;40082:3;40103:67;40167:2;40162:3;40103:67;:::i;:::-;40096:74;;40179:93;40268:3;40179:93;:::i;:::-;40297:2;40292:3;40288:12;40281:19;;39940:366;;;:::o;40312:419::-;40478:4;40516:2;40505:9;40501:18;40493:26;;40565:9;40559:4;40555:20;40551:1;40540:9;40536:17;40529:47;40593:131;40719:4;40593:131;:::i;:::-;40585:139;;40312:419;;;:::o;40737:182::-;40877:34;40873:1;40865:6;40861:14;40854:58;40737:182;:::o;40925:366::-;41067:3;41088:67;41152:2;41147:3;41088:67;:::i;:::-;41081:74;;41164:93;41253:3;41164:93;:::i;:::-;41282:2;41277:3;41273:12;41266:19;;40925:366;;;:::o;41297:419::-;41463:4;41501:2;41490:9;41486:18;41478:26;;41550:9;41544:4;41540:20;41536:1;41525:9;41521:17;41514:47;41578:131;41704:4;41578:131;:::i;:::-;41570:139;;41297:419;;;:::o;41722:179::-;41862:31;41858:1;41850:6;41846:14;41839:55;41722:179;:::o;41907:366::-;42049:3;42070:67;42134:2;42129:3;42070:67;:::i;:::-;42063:74;;42146:93;42235:3;42146:93;:::i;:::-;42264:2;42259:3;42255:12;42248:19;;41907:366;;;:::o;42279:419::-;42445:4;42483:2;42472:9;42468:18;42460:26;;42532:9;42526:4;42522:20;42518:1;42507:9;42503:17;42496:47;42560:131;42686:4;42560:131;:::i;:::-;42552:139;;42279:419;;;:::o;42704:147::-;42805:11;42842:3;42827:18;;42704:147;;;;:::o;42857:114::-;;:::o;42977:398::-;43136:3;43157:83;43238:1;43233:3;43157:83;:::i;:::-;43150:90;;43249:93;43338:3;43249:93;:::i;:::-;43367:1;43362:3;43358:11;43351:18;;42977:398;;;:::o;43381:379::-;43565:3;43587:147;43730:3;43587:147;:::i;:::-;43580:154;;43751:3;43744:10;;43381:379;;;:::o;43766:245::-;43906:34;43902:1;43894:6;43890:14;43883:58;43975:28;43970:2;43962:6;43958:15;43951:53;43766:245;:::o;44017:366::-;44159:3;44180:67;44244:2;44239:3;44180:67;:::i;:::-;44173:74;;44256:93;44345:3;44256:93;:::i;:::-;44374:2;44369:3;44365:12;44358:19;;44017:366;;;:::o;44389:419::-;44555:4;44593:2;44582:9;44578:18;44570:26;;44642:9;44636:4;44632:20;44628:1;44617:9;44613:17;44606:47;44670:131;44796:4;44670:131;:::i;:::-;44662:139;;44389:419;;;:::o;44814:224::-;44954:34;44950:1;44942:6;44938:14;44931:58;45023:7;45018:2;45010:6;45006:15;44999:32;44814:224;:::o;45044:366::-;45186:3;45207:67;45271:2;45266:3;45207:67;:::i;:::-;45200:74;;45283:93;45372:3;45283:93;:::i;:::-;45401:2;45396:3;45392:12;45385:19;;45044:366;;;:::o;45416:419::-;45582:4;45620:2;45609:9;45605:18;45597:26;;45669:9;45663:4;45659:20;45655:1;45644:9;45640:17;45633:47;45697:131;45823:4;45697:131;:::i;:::-;45689:139;;45416:419;;;:::o;45841:223::-;45981:34;45977:1;45969:6;45965:14;45958:58;46050:6;46045:2;46037:6;46033:15;46026:31;45841:223;:::o;46070:366::-;46212:3;46233:67;46297:2;46292:3;46233:67;:::i;:::-;46226:74;;46309:93;46398:3;46309:93;:::i;:::-;46427:2;46422:3;46418:12;46411:19;;46070:366;;;:::o;46442:419::-;46608:4;46646:2;46635:9;46631:18;46623:26;;46695:9;46689:4;46685:20;46681:1;46670:9;46666:17;46659:47;46723:131;46849:4;46723:131;:::i;:::-;46715:139;;46442:419;;;:::o;46867:175::-;47007:27;47003:1;46995:6;46991:14;46984:51;46867:175;:::o;47048:366::-;47190:3;47211:67;47275:2;47270:3;47211:67;:::i;:::-;47204:74;;47287:93;47376:3;47287:93;:::i;:::-;47405:2;47400:3;47396:12;47389:19;;47048:366;;;:::o;47420:419::-;47586:4;47624:2;47613:9;47609:18;47601:26;;47673:9;47667:4;47663:20;47659:1;47648:9;47644:17;47637:47;47701:131;47827:4;47701:131;:::i;:::-;47693:139;;47420:419;;;:::o;47845:180::-;47893:77;47890:1;47883:88;47990:4;47987:1;47980:15;48014:4;48011:1;48004:15;48031:185;48071:1;48088:20;48106:1;48088:20;:::i;:::-;48083:25;;48122:20;48140:1;48122:20;:::i;:::-;48117:25;;48161:1;48151:35;;48166:18;;:::i;:::-;48151:35;48208:1;48205;48201:9;48196:14;;48031:185;;;;:::o;48222:194::-;48262:4;48282:20;48300:1;48282:20;:::i;:::-;48277:25;;48316:20;48334:1;48316:20;:::i;:::-;48311:25;;48360:1;48357;48353:9;48345:17;;48384:1;48378:4;48375:11;48372:37;;;48389:18;;:::i;:::-;48372:37;48222:194;;;;:::o;48422:237::-;48562:34;48558:1;48550:6;48546:14;48539:58;48631:20;48626:2;48618:6;48614:15;48607:45;48422:237;:::o;48665:366::-;48807:3;48828:67;48892:2;48887:3;48828:67;:::i;:::-;48821:74;;48904:93;48993:3;48904:93;:::i;:::-;49022:2;49017:3;49013:12;49006:19;;48665:366;;;:::o;49037:419::-;49203:4;49241:2;49230:9;49226:18;49218:26;;49290:9;49284:4;49280:20;49276:1;49265:9;49261:17;49254:47;49318:131;49444:4;49318:131;:::i;:::-;49310:139;;49037:419;;;:::o;49462:137::-;49516:5;49547:6;49541:13;49532:22;;49563:30;49587:5;49563:30;:::i;:::-;49462:137;;;;:::o;49605:345::-;49672:6;49721:2;49709:9;49700:7;49696:23;49692:32;49689:119;;;49727:79;;:::i;:::-;49689:119;49847:1;49872:61;49925:7;49916:6;49905:9;49901:22;49872:61;:::i;:::-;49862:71;;49818:125;49605:345;;;;:::o;49956:229::-;50096:34;50092:1;50084:6;50080:14;50073:58;50165:12;50160:2;50152:6;50148:15;50141:37;49956:229;:::o;50191:366::-;50333:3;50354:67;50418:2;50413:3;50354:67;:::i;:::-;50347:74;;50430:93;50519:3;50430:93;:::i;:::-;50548:2;50543:3;50539:12;50532:19;;50191:366;;;:::o;50563:419::-;50729:4;50767:2;50756:9;50752:18;50744:26;;50816:9;50810:4;50806:20;50802:1;50791:9;50787:17;50780:47;50844:131;50970:4;50844:131;:::i;:::-;50836:139;;50563:419;;;:::o;50988:98::-;51039:6;51073:5;51067:12;51057:22;;50988:98;;;:::o;51092:168::-;51175:11;51209:6;51204:3;51197:19;51249:4;51244:3;51240:14;51225:29;;51092:168;;;;:::o;51266:373::-;51352:3;51380:38;51412:5;51380:38;:::i;:::-;51434:70;51497:6;51492:3;51434:70;:::i;:::-;51427:77;;51513:65;51571:6;51566:3;51559:4;51552:5;51548:16;51513:65;:::i;:::-;51603:29;51625:6;51603:29;:::i;:::-;51598:3;51594:39;51587:46;;51356:283;51266:373;;;;:::o;51645:640::-;51840:4;51878:3;51867:9;51863:19;51855:27;;51892:71;51960:1;51949:9;51945:17;51936:6;51892:71;:::i;:::-;51973:72;52041:2;52030:9;52026:18;52017:6;51973:72;:::i;:::-;52055;52123:2;52112:9;52108:18;52099:6;52055:72;:::i;:::-;52174:9;52168:4;52164:20;52159:2;52148:9;52144:18;52137:48;52202:76;52273:4;52264:6;52202:76;:::i;:::-;52194:84;;51645:640;;;;;;;:::o;52291:141::-;52347:5;52378:6;52372:13;52363:22;;52394:32;52420:5;52394:32;:::i;:::-;52291:141;;;;:::o;52438:349::-;52507:6;52556:2;52544:9;52535:7;52531:23;52527:32;52524:119;;;52562:79;;:::i;:::-;52524:119;52682:1;52707:63;52762:7;52753:6;52742:9;52738:22;52707:63;:::i;:::-;52697:73;;52653:127;52438:349;;;;:::o;52793:182::-;52933:34;52929:1;52921:6;52917:14;52910:58;52793:182;:::o;52981:366::-;53123:3;53144:67;53208:2;53203:3;53144:67;:::i;:::-;53137:74;;53220:93;53309:3;53220:93;:::i;:::-;53338:2;53333:3;53329:12;53322:19;;52981:366;;;:::o;53353:419::-;53519:4;53557:2;53546:9;53542:18;53534:26;;53606:9;53600:4;53596:20;53592:1;53581:9;53577:17;53570:47;53634:131;53760:4;53634:131;:::i;:::-;53626:139;;53353:419;;;:::o;53778:178::-;53918:30;53914:1;53906:6;53902:14;53895:54;53778:178;:::o;53962:366::-;54104:3;54125:67;54189:2;54184:3;54125:67;:::i;:::-;54118:74;;54201:93;54290:3;54201:93;:::i;:::-;54319:2;54314:3;54310:12;54303:19;;53962:366;;;:::o;54334:419::-;54500:4;54538:2;54527:9;54523:18;54515:26;;54587:9;54581:4;54577:20;54573:1;54562:9;54558:17;54551:47;54615:131;54741:4;54615:131;:::i;:::-;54607:139;;54334:419;;;:::o;54759:225::-;54899:34;54895:1;54887:6;54883:14;54876:58;54968:8;54963:2;54955:6;54951:15;54944:33;54759:225;:::o;54990:366::-;55132:3;55153:67;55217:2;55212:3;55153:67;:::i;:::-;55146:74;;55229:93;55318:3;55229:93;:::i;:::-;55347:2;55342:3;55338:12;55331:19;;54990:366;;;:::o;55362:419::-;55528:4;55566:2;55555:9;55551:18;55543:26;;55615:9;55609:4;55605:20;55601:1;55590:9;55586:17;55579:47;55643:131;55769:4;55643:131;:::i;:::-;55635:139;;55362:419;;;:::o;55787:386::-;55891:3;55919:38;55951:5;55919:38;:::i;:::-;55973:88;56054:6;56049:3;55973:88;:::i;:::-;55966:95;;56070:65;56128:6;56123:3;56116:4;56109:5;56105:16;56070:65;:::i;:::-;56160:6;56155:3;56151:16;56144:23;;55895:278;55787:386;;;;:::o;56179:271::-;56309:3;56331:93;56420:3;56411:6;56331:93;:::i;:::-;56324:100;;56441:3;56434:10;;56179:271;;;;:::o;56456:179::-;56596:31;56592:1;56584:6;56580:14;56573:55;56456:179;:::o;56641:366::-;56783:3;56804:67;56868:2;56863:3;56804:67;:::i;:::-;56797:74;;56880:93;56969:3;56880:93;:::i;:::-;56998:2;56993:3;56989:12;56982:19;;56641:366;;;:::o;57013:419::-;57179:4;57217:2;57206:9;57202:18;57194:26;;57266:9;57260:4;57256:20;57252:1;57241:9;57237:17;57230:47;57294:131;57420:4;57294:131;:::i;:::-;57286:139;;57013:419;;;:::o

Swarm Source

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