ETH Price: $3,269.89 (+2.94%)
Gas: 1 Gwei

Token

METALMEKA (METALMEKA)
 

Overview

Max Total Supply

1,320 METALMEKA

Holders

216

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 METALMEKA
0x847428c2a4673fd9e89609b5b1081f85255055c9
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:
METALMEKA

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-03
*/

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.0) (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) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 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 256, 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 << 3) < value ? 1 : 0);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.0) (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 `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

// 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/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.9.0) (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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [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://consensys.net/diligence/blog/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.8.0/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/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.9.0) (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/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: moonbirdmfers/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: moonbirdmfers/METALMEKA.sol

// Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721

pragma solidity ^0.8.4;




contract METALMEKA is ERC721A, Ownable {
    struct SendData {
        address receiver;
        uint256 amount;
    }
    uint256 public constant maxSupply = 4000;
    uint256 public constant maxAllowSupply = 2000;
    uint256 public constant reservedAmount = 4000;
    uint256 private constant maxBatchSize = 10;
    address public token1address = 0xE3C783d9647d72F7f13ACe64892630e7E33BC968;
    address public token2address = 0xC0B9d2BE78d1a90832628E4E4b6B29dbEF5D80bC;

    constructor() ERC721A("METALMEKA", "METALMEKA") {}

    uint256 public mintPrice = 0.01 ether;
    uint256 public maxAmountPerMint = 100;
    uint256 public maxMintPerWallet = 4000;

    function setMintPrice(uint256 newMintPrice) external onlyOwner {
        mintPrice = newMintPrice;
    }

    function settoken1address(address newtoken1address) external onlyOwner {
        token1address = newtoken1address;
    }

    function settoken2address(address newtoken2address) external onlyOwner {
        token2address = newtoken2address;
    }

    function setMaxAmountPerMint(uint256 newMaxAmountPerMint) external onlyOwner {
        maxAmountPerMint = newMaxAmountPerMint;
    }

    function setMaxMintPerWallet(uint256 newMaxMintPerWallet) external onlyOwner {
        maxMintPerWallet = newMaxMintPerWallet;
    }

    /**
     * metadata URI
     */
    string private _baseURIExtended = "ipfs://QmbeMwjfvzX4GZAndqyiv5N2YvBBiuaJ9z4keRvib889jR/";

    function setBaseURI(string memory baseURI) external onlyOwner {
        _baseURIExtended = baseURI;
    }

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

 
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(msg.sender), balance);
    }

 
    function devMint(uint256 amount) public onlyOwner {
        require(totalSupply() + amount <= reservedAmount, "too many already minted before dev mint");
        require(amount % maxBatchSize == 0, "can only mint a multiple of the maxBatchSize");
        
        uint256 numChunks = amount / maxBatchSize;
        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(msg.sender, maxBatchSize);
        }
    }

    uint private _publicSaleCode = 0;

    uint32 public publicSaleStartTime = 0;
    uint256 public allowedMintSupply = maxSupply;
    uint256 public allowedFreeMintSupply = maxAllowSupply;
    uint256 public allowSupply = 0;

    mapping(address => uint256) public minted;
    mapping(address => uint256) public allowminted;

    function setPublicSaleCode(uint newCode) public onlyOwner {
        _publicSaleCode = newCode;
    }

    function setPublicSaleStartTime(uint32 newTime) public onlyOwner {
        publicSaleStartTime = newTime;
    }

    function setAllowedMintSupply(uint newLimit) public onlyOwner {
        allowedMintSupply = newLimit;
    }

    function publicMint(uint amount, uint code) external payable {
        require(msg.sender == tx.origin, "User wallet required");
        require(code != 0 && code == _publicSaleCode, "code is mismatched");
        require(publicSaleStartTime != 0 && publicSaleStartTime <= block.timestamp, "sales is not started");
        require(minted[msg.sender] + amount <= maxMintPerWallet, "limit per wallet reached");
        require(totalSupply() + amount <= allowedMintSupply, "current phase minting was ended");

        uint256 mintableAmount = amount;
        require(mintableAmount <= maxAmountPerMint, "Exceeded max token purchase");

        // check to ensure amount is not exceeded MAX_SUPPLY
        uint256 availableSupply = maxSupply - totalSupply();
        require(availableSupply > 0, "No more item to mint!"); 
        mintableAmount = Math.min(mintableAmount, availableSupply);

        uint256 totalMintCost = mintableAmount * mintPrice;
        require(msg.value >= totalMintCost, "Not enough ETH sent; check price!"); 

        minted[msg.sender] += mintableAmount;

        _safeMint(msg.sender, mintableAmount);

        // Refund unused fund
        uint256 changes = msg.value - totalMintCost;
        if (changes != 0) {
            Address.sendValue(payable(msg.sender), changes);
        }
    }
    function AllowlistMint(uint code) external payable {
        require(msg.sender == tx.origin, "User wallet required");
        require(code != 0 && code == _publicSaleCode, "code is mismatched");
        require(publicSaleStartTime != 0 && publicSaleStartTime <= block.timestamp, "sales is not started");
        require(allowminted[msg.sender] + 1 <= 1, "limit per wallet only one piece");
        require(allowSupply + 1 <= allowedFreeMintSupply, "Free mint pieses all minted");
        require(totalSupply() + 1 <= allowedMintSupply, "Sold Out");
        

        uint token1 = IERC721(token1address).balanceOf(msg.sender);
        uint token2 = IERC721(token2address).balanceOf(msg.sender);
        require(token1 > 0 || token2 > 0, "You don't have FF6000 NFT");

        uint256 mintableAmount = 1;

        allowminted[msg.sender] += mintableAmount;
        allowSupply += 1;

        _safeMint(msg.sender, 1);


    }
    function airdrop(SendData[] calldata sendData) public onlyOwner {
        uint256 ts = allowedMintSupply;

        // loop through all addresses
        for (uint256 index = 0; index < sendData.length; index++) {
            require(totalSupply() + sendData[index].amount <= ts, 'Exceeds original supply');
            _safeMint(sendData[index].receiver, sendData[index].amount);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"uint256","name":"code","type":"uint256"}],"name":"AllowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct METALMEKA.SendData[]","name":"sendData","type":"tuple[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowedFreeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowedMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowminted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAllowSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmountPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"code","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleStartTime","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setAllowedMintSupply","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":"uint256","name":"newMaxAmountPerMint","type":"uint256"}],"name":"setMaxAmountPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxMintPerWallet","type":"uint256"}],"name":"setMaxMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCode","type":"uint256"}],"name":"setPublicSaleCode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"newTime","type":"uint32"}],"name":"setPublicSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newtoken1address","type":"address"}],"name":"settoken1address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newtoken2address","type":"address"}],"name":"settoken2address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token1address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token2address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273e3c783d9647d72f7f13ace64892630e7e33bc968600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c0b9d2be78d1a90832628e4e4b6b29dbef5d80bc600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550662386f26fc10000600a556064600b55610fa0600c55604051806060016040528060368152602001620059d760369139600d9080519060200190620000f5929190620002d0565b506000600e556000600f60006101000a81548163ffffffff021916908363ffffffff160217905550610fa06010556107d060115560006012553480156200013b57600080fd5b506040518060400160405280600981526020017f4d4554414c4d454b4100000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f4d4554414c4d454b4100000000000000000000000000000000000000000000008152508160019080519060200190620001c0929190620002d0565b508060029080519060200190620001d9929190620002d0565b505050620001fc620001f06200020260201b60201c565b6200020a60201b60201c565b620003e5565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002de9062000380565b90600052602060002090601f0160209004810192826200030257600085556200034e565b82601f106200031d57805160ff19168380011785556200034e565b828001600101855582156200034e579182015b828111156200034d57825182559160200191906001019062000330565b5b5090506200035d919062000361565b5090565b5b808211156200037c57600081600090555060010162000362565b5090565b600060028204905060018216806200039957607f821691505b60208210811415620003b057620003af620003b6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6155e280620003f56000396000f3fe6080604052600436106102885760003560e01c80636bb7b1d91161015a578063afdf6134116100c1578063e0c9ffc61161007a578063e0c9ffc6146109b0578063e985e9c5146109d9578063ef66947a14610a16578063f2fde38b14610a41578063f4a0a52814610a6a578063f92c45b714610a9357610288565b8063afdf6134146108a2578063b228d925146108cb578063b88d4fde146108f6578063c3c8b2041461091f578063c87b56dd14610948578063d5abeb011461098557610288565b806396c1d05b1161011357806396c1d05b146107b057806398ae99a8146107db578063a22cb465146107f7578063a60d9dce14610820578063a89531271461085d578063ad8e75aa1461087957610288565b80636bb7b1d9146106b257806370a08231146106dd578063715018a61461071a5780638da5cb5b14610731578063944f66f41461075c57806395d89b411461078557610288565b80632f745c59116101fe57806355f804b3116101b757806355f804b3146105a657806359f030ca146105cf5780635fd84c28146105f857806363105ea6146106215780636352211e1461064a5780636817c76c1461068757610288565b80632f745c5914610498578063375a069a146104d55780633ccfd60b146104fe57806342842e0e146105155780634366df0a1461053e5780634f6ccce71461056957610288565b806314e1373a1161025057806314e1373a1461038657806318160ddd146103b15780631e7269c5146103dc57806323b872dd1461041957806327acc76d146104425780632c41430b1461046d57610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b3146103325780631453d4bd1461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613b2f565b610abe565b6040516102c19190614307565b60405180910390f35b3480156102d657600080fd5b506102df610c08565b6040516102ec9190614322565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190613bc2565b610c9a565b60405161032991906142a0565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190613aae565b610d1f565b005b34801561036757600080fd5b50610370610e38565b60405161037d91906147c4565b60405180910390f35b34801561039257600080fd5b5061039b610e3e565b6040516103a891906147c4565b60405180910390f35b3480156103bd57600080fd5b506103c6610e44565b6040516103d391906147c4565b60405180910390f35b3480156103e857600080fd5b5061040360048036038101906103fe9190613943565b610e4d565b60405161041091906147c4565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b91906139a8565b610e65565b005b34801561044e57600080fd5b50610457610e75565b60405161046491906147c4565b60405180910390f35b34801561047957600080fd5b50610482610e7b565b60405161048f91906147c4565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613aae565b610e81565b6040516104cc91906147c4565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190613bc2565b611073565b005b34801561050a57600080fd5b50610513611160565b005b34801561052157600080fd5b5061053c600480360381019061053791906139a8565b61117a565b005b34801561054a57600080fd5b5061055361119a565b60405161056091906142a0565b60405180910390f35b34801561057557600080fd5b50610590600480360381019061058b9190613bc2565b6111c0565b60405161059d91906147c4565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190613b81565b611213565b005b3480156105db57600080fd5b506105f660048036038101906105f19190613bc2565b611235565b005b34801561060457600080fd5b5061061f600480360381019061061a9190613c50565b611247565b005b34801561062d57600080fd5b5061064860048036038101906106439190613943565b611273565b005b34801561065657600080fd5b50610671600480360381019061066c9190613bc2565b6112bf565b60405161067e91906142a0565b60405180910390f35b34801561069357600080fd5b5061069c6112d5565b6040516106a991906147c4565b60405180910390f35b3480156106be57600080fd5b506106c76112db565b6040516106d491906147df565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff9190613943565b6112f1565b60405161071191906147c4565b60405180910390f35b34801561072657600080fd5b5061072f6113da565b005b34801561073d57600080fd5b506107466113ee565b60405161075391906142a0565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190613943565b611418565b005b34801561079157600080fd5b5061079a611464565b6040516107a79190614322565b60405180910390f35b3480156107bc57600080fd5b506107c56114f6565b6040516107d291906142a0565b60405180910390f35b6107f560048036038101906107f09190613c14565b61151c565b005b34801561080357600080fd5b5061081e60048036038101906108199190613a72565b6118d3565b005b34801561082c57600080fd5b5061084760048036038101906108429190613943565b611a54565b60405161085491906147c4565b60405180910390f35b61087760048036038101906108729190613bc2565b611a6c565b005b34801561088557600080fd5b506108a0600480360381019061089b9190613bc2565b611f17565b005b3480156108ae57600080fd5b506108c960048036038101906108c49190613bc2565b611f29565b005b3480156108d757600080fd5b506108e0611f3b565b6040516108ed91906147c4565b60405180910390f35b34801561090257600080fd5b5061091d600480360381019061091891906139f7565b611f41565b005b34801561092b57600080fd5b5061094660048036038101906109419190613bc2565b611f9d565b005b34801561095457600080fd5b5061096f600480360381019061096a9190613bc2565b611faf565b60405161097c9190614322565b60405180910390f35b34801561099157600080fd5b5061099a612057565b6040516109a791906147c4565b60405180910390f35b3480156109bc57600080fd5b506109d760048036038101906109d29190613aea565b61205d565b005b3480156109e557600080fd5b50610a0060048036038101906109fb919061396c565b6121c6565b604051610a0d9190614307565b60405180910390f35b348015610a2257600080fd5b50610a2b61225a565b604051610a3891906147c4565b60405180910390f35b348015610a4d57600080fd5b50610a686004803603810190610a639190613943565b612260565b005b348015610a7657600080fd5b50610a916004803603810190610a8c9190613bc2565b6122e4565b005b348015610a9f57600080fd5b50610aa86122f6565b604051610ab591906147c4565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b8957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bf157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c015750610c00826122fc565b5b9050919050565b606060018054610c1790614aaa565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4390614aaa565b8015610c905780601f10610c6557610100808354040283529160200191610c90565b820191906000526020600020905b815481529060010190602001808311610c7357829003601f168201915b5050505050905090565b6000610ca582612366565b610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb906147a4565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d2a826112bf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290614664565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dba612373565b73ffffffffffffffffffffffffffffffffffffffff161480610de95750610de881610de3612373565b6121c6565b5b610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f906144e4565b60405180910390fd5b610e3383838361237b565b505050565b60115481565b60125481565b60008054905090565b60136020528060005260406000206000915090505481565b610e7083838361242d565b505050565b600b5481565b6107d081565b6000610e8c836112f1565b8210610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490614344565b60405180910390fd5b6000610ed7610e44565b905060008060005b83811015611031576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fd157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611023578684141561101a57819550505050505061106d565b83806001019450505b508080600101915050610edf565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490614724565b60405180910390fd5b92915050565b61107b61296d565b610fa081611087610e44565b61109191906148cf565b11156110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c9906146e4565b60405180910390fd5b6000600a826110e19190614b56565b14611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890614404565b60405180910390fd5b6000600a826111309190614925565b905060005b8181101561115b5761114833600a6129eb565b808061115390614b0d565b915050611135565b505050565b61116861296d565b60004790506111773382612a09565b50565b61119583838360405180602001604052806000815250611f41565b505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006111ca610e44565b821061120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290614444565b60405180910390fd5b819050919050565b61121b61296d565b80600d90805190602001906112319291906136b9565b5050565b61123d61296d565b80600e8190555050565b61124f61296d565b80600f60006101000a81548163ffffffff021916908363ffffffff16021790555050565b61127b61296d565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006112ca82612afd565b600001519050919050565b600a5481565b600f60009054906101000a900463ffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135990614504565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113e261296d565b6113ec6000612c97565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61142061296d565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606002805461147390614aaa565b80601f016020809104026020016040519081016040528092919081815260200182805461149f90614aaa565b80156114ec5780601f106114c1576101008083540402835291602001916114ec565b820191906000526020600020905b8154815290600101906020018083116114cf57829003601f168201915b5050505050905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190614644565b60405180910390fd5b6000811415801561159c5750600e5481145b6115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d2906145e4565b60405180910390fd5b6000600f60009054906101000a900463ffffffff1663ffffffff161415801561161c575042600f60009054906101000a900463ffffffff1663ffffffff1611155b61165b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165290614744565b60405180910390fd5b600c5482601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116a991906148cf565b11156116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190614424565b60405180910390fd5b601054826116f6610e44565b61170091906148cf565b1115611741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173890614364565b60405180910390fd5b6000829050600b5481111561178b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178290614624565b60405180910390fd5b6000611795610e44565b610fa06117a291906149b0565b9050600081116117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de90614384565b60405180910390fd5b6117f18282612d5d565b91506000600a54836118039190614956565b905080341015611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f90614764565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461189791906148cf565b925050819055506118a833846129eb565b600081346118b691906149b0565b9050600081146118cb576118ca3382612a09565b5b505050505050565b6118db612373565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194090614584565b60405180910390fd5b8060066000611956612373565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a03612373565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a489190614307565b60405180910390a35050565b60146020528060005260406000206000915090505481565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad190614644565b60405180910390fd5b60008114158015611aec5750600e5481145b611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b22906145e4565b60405180910390fd5b6000600f60009054906101000a900463ffffffff1663ffffffff1614158015611b6c575042600f60009054906101000a900463ffffffff1663ffffffff1611155b611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290614744565b60405180910390fd5b600180601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bf891906148cf565b1115611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3090614684565b60405180910390fd5b6011546001601254611c4b91906148cf565b1115611c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8390614604565b60405180910390fd5b6010546001611c99610e44565b611ca391906148cf565b1115611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb906143a4565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611d4191906142a0565b60206040518083038186803b158015611d5957600080fd5b505afa158015611d6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d919190613beb565b90506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611df091906142a0565b60206040518083038186803b158015611e0857600080fd5b505afa158015611e1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e409190613beb565b90506000821180611e515750600081115b611e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e87906145c4565b60405180910390fd5b60006001905080601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ee591906148cf565b92505081905550600160126000828254611eff91906148cf565b92505081905550611f113360016129eb565b50505050565b611f1f61296d565b80600b8190555050565b611f3161296d565b80600c8190555050565b600c5481565b611f4c84848461242d565b611f5884848484612d76565b611f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8e906146a4565b60405180910390fd5b50505050565b611fa561296d565b8060108190555050565b6060611fba82612366565b611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff090614564565b60405180910390fd5b6000612003612f0d565b9050600081511415612024576040518060200160405280600081525061204f565b8061202e84612f9f565b60405160200161203f929190614267565b6040516020818303038152906040525b915050919050565b610fa081565b61206561296d565b6000601054905060005b838390508110156121c057818484838181106120b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060400201602001356120c6610e44565b6120d091906148cf565b1115612111576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612108906144c4565b60405180910390fd5b6121ad84848381811061214d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506040020160000160208101906121659190613943565b85858481811061219e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060400201602001356129eb565b80806121b890614b0d565b91505061206f565b50505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60105481565b61226861296d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf906143c4565b60405180910390fd5b6122e181612c97565b50565b6122ec61296d565b80600a8190555050565b610fa081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061243882612afd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661245f612373565b73ffffffffffffffffffffffffffffffffffffffff1614806124bb5750612484612373565b73ffffffffffffffffffffffffffffffffffffffff166124a384610c9a565b73ffffffffffffffffffffffffffffffffffffffff16145b806124d757506124d682600001516124d1612373565b6121c6565b5b905080612519576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612510906145a4565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461258b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258290614524565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f290614464565b60405180910390fd5b61260885858560016130c3565b612618600084846000015161237b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128fd5761285c81612366565b156128fc5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461296685858560016130c9565b5050505050565b612975612373565b73ffffffffffffffffffffffffffffffffffffffff166129936113ee565b73ffffffffffffffffffffffffffffffffffffffff16146129e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e090614544565b60405180910390fd5b565b612a058282604051806020016040528060008152506130cf565b5050565b80471015612a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a43906144a4565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612a729061428b565b60006040518083038185875af1925050503d8060008114612aaf576040519150601f19603f3d011682016040523d82523d6000602084013e612ab4565b606091505b5050905080612af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aef90614484565b60405180910390fd5b505050565b612b0561373f565b612b0e82612366565b612b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b44906143e4565b60405180910390fd5b60008290505b60008110612c56576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c47578092505050612c92565b50808060019003915050612b53565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8990614784565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818310612d6c5781612d6e565b825b905092915050565b6000612d978473ffffffffffffffffffffffffffffffffffffffff166130e1565b15612f00578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dc0612373565b8786866040518563ffffffff1660e01b8152600401612de294939291906142bb565b602060405180830381600087803b158015612dfc57600080fd5b505af1925050508015612e2d57506040513d601f19601f82011682018060405250810190612e2a9190613b58565b60015b612eb0573d8060008114612e5d576040519150601f19603f3d011682016040523d82523d6000602084013e612e62565b606091505b50600081511415612ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9f906146a4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f05565b600190505b949350505050565b6060600d8054612f1c90614aaa565b80601f0160208091040260200160405190810160405280929190818152602001828054612f4890614aaa565b8015612f955780601f10612f6a57610100808354040283529160200191612f95565b820191906000526020600020905b815481529060010190602001808311612f7857829003601f168201915b5050505050905090565b606060006001612fae84613104565b01905060008167ffffffffffffffff811115612ff3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130255781602001600182028036833780820191505090505b509050600082602001820190505b6001156130b8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816130a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b04945060008514156130b3576130b8565b613033565b819350505050919050565b50505050565b50505050565b6130dc838383600161333b565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613188577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161317e577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506040810190505b6d04ee2d6d415b85acef810000000083106131eb576d04ee2d6d415b85acef810000000083816131e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506020810190505b662386f26fc10000831061324057662386f26fc100008381613236577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506010810190505b6305f5e100831061328f576305f5e1008381613285577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506008810190505b61271083106132da5761271083816132d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506004810190505b606483106133235760648381613319577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506002810190505b600a8310613332576001810190505b80915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156133b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133a8906146c4565b60405180910390fd5b60008414156133f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ec90614704565b60405180910390fd5b61340260008683876130c3565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561369c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613687576136476000888488612d76565b613686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367d906146a4565b60405180910390fd5b5b818060010192505080806001019150506135d0565b5080600081905550506136b260008683876130c9565b5050505050565b8280546136c590614aaa565b90600052602060002090601f0160209004810192826136e7576000855561372e565b82601f1061370057805160ff191683800117855561372e565b8280016001018555821561372e579182015b8281111561372d578251825591602001919060010190613712565b5b50905061373b9190613779565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561379257600081600090555060010161377a565b5090565b60006137a96137a48461481f565b6147fa565b9050828152602081018484840111156137c157600080fd5b6137cc848285614a68565b509392505050565b60006137e76137e284614850565b6147fa565b9050828152602081018484840111156137ff57600080fd5b61380a848285614a68565b509392505050565b60008135905061382181615539565b92915050565b60008083601f84011261383957600080fd5b8235905067ffffffffffffffff81111561385257600080fd5b60208301915083604082028301111561386a57600080fd5b9250929050565b60008135905061388081615550565b92915050565b60008135905061389581615567565b92915050565b6000815190506138aa81615567565b92915050565b600082601f8301126138c157600080fd5b81356138d1848260208601613796565b91505092915050565b600082601f8301126138eb57600080fd5b81356138fb8482602086016137d4565b91505092915050565b6000813590506139138161557e565b92915050565b6000815190506139288161557e565b92915050565b60008135905061393d81615595565b92915050565b60006020828403121561395557600080fd5b600061396384828501613812565b91505092915050565b6000806040838503121561397f57600080fd5b600061398d85828601613812565b925050602061399e85828601613812565b9150509250929050565b6000806000606084860312156139bd57600080fd5b60006139cb86828701613812565b93505060206139dc86828701613812565b92505060406139ed86828701613904565b9150509250925092565b60008060008060808587031215613a0d57600080fd5b6000613a1b87828801613812565b9450506020613a2c87828801613812565b9350506040613a3d87828801613904565b925050606085013567ffffffffffffffff811115613a5a57600080fd5b613a66878288016138b0565b91505092959194509250565b60008060408385031215613a8557600080fd5b6000613a9385828601613812565b9250506020613aa485828601613871565b9150509250929050565b60008060408385031215613ac157600080fd5b6000613acf85828601613812565b9250506020613ae085828601613904565b9150509250929050565b60008060208385031215613afd57600080fd5b600083013567ffffffffffffffff811115613b1757600080fd5b613b2385828601613827565b92509250509250929050565b600060208284031215613b4157600080fd5b6000613b4f84828501613886565b91505092915050565b600060208284031215613b6a57600080fd5b6000613b788482850161389b565b91505092915050565b600060208284031215613b9357600080fd5b600082013567ffffffffffffffff811115613bad57600080fd5b613bb9848285016138da565b91505092915050565b600060208284031215613bd457600080fd5b6000613be284828501613904565b91505092915050565b600060208284031215613bfd57600080fd5b6000613c0b84828501613919565b91505092915050565b60008060408385031215613c2757600080fd5b6000613c3585828601613904565b9250506020613c4685828601613904565b9150509250929050565b600060208284031215613c6257600080fd5b6000613c708482850161392e565b91505092915050565b613c82816149e4565b82525050565b613c91816149f6565b82525050565b6000613ca282614881565b613cac8185614897565b9350613cbc818560208601614a77565b613cc581614c43565b840191505092915050565b6000613cdb8261488c565b613ce581856148b3565b9350613cf5818560208601614a77565b613cfe81614c43565b840191505092915050565b6000613d148261488c565b613d1e81856148c4565b9350613d2e818560208601614a77565b80840191505092915050565b6000613d476022836148b3565b9150613d5282614c54565b604082019050919050565b6000613d6a601f836148b3565b9150613d7582614ca3565b602082019050919050565b6000613d8d6015836148b3565b9150613d9882614ccc565b602082019050919050565b6000613db06008836148b3565b9150613dbb82614cf5565b602082019050919050565b6000613dd36026836148b3565b9150613dde82614d1e565b604082019050919050565b6000613df6602a836148b3565b9150613e0182614d6d565b604082019050919050565b6000613e19602c836148b3565b9150613e2482614dbc565b604082019050919050565b6000613e3c6018836148b3565b9150613e4782614e0b565b602082019050919050565b6000613e5f6023836148b3565b9150613e6a82614e34565b604082019050919050565b6000613e826025836148b3565b9150613e8d82614e83565b604082019050919050565b6000613ea5603a836148b3565b9150613eb082614ed2565b604082019050919050565b6000613ec8601d836148b3565b9150613ed382614f21565b602082019050919050565b6000613eeb6017836148b3565b9150613ef682614f4a565b602082019050919050565b6000613f0e6039836148b3565b9150613f1982614f73565b604082019050919050565b6000613f31602b836148b3565b9150613f3c82614fc2565b604082019050919050565b6000613f546026836148b3565b9150613f5f82615011565b604082019050919050565b6000613f776020836148b3565b9150613f8282615060565b602082019050919050565b6000613f9a602f836148b3565b9150613fa582615089565b604082019050919050565b6000613fbd601a836148b3565b9150613fc8826150d8565b602082019050919050565b6000613fe06032836148b3565b9150613feb82615101565b604082019050919050565b60006140036019836148b3565b915061400e82615150565b602082019050919050565b60006140266012836148b3565b915061403182615179565b602082019050919050565b6000614049601b836148b3565b9150614054826151a2565b602082019050919050565b600061406c601b836148b3565b9150614077826151cb565b602082019050919050565b600061408f6014836148b3565b915061409a826151f4565b602082019050919050565b60006140b26022836148b3565b91506140bd8261521d565b604082019050919050565b60006140d56000836148a8565b91506140e08261526c565b600082019050919050565b60006140f8601f836148b3565b91506141038261526f565b602082019050919050565b600061411b6033836148b3565b915061412682615298565b604082019050919050565b600061413e6021836148b3565b9150614149826152e7565b604082019050919050565b60006141616027836148b3565b915061416c82615336565b604082019050919050565b60006141846028836148b3565b915061418f82615385565b604082019050919050565b60006141a7602e836148b3565b91506141b2826153d4565b604082019050919050565b60006141ca6014836148b3565b91506141d582615423565b602082019050919050565b60006141ed6021836148b3565b91506141f88261544c565b604082019050919050565b6000614210602f836148b3565b915061421b8261549b565b604082019050919050565b6000614233602d836148b3565b915061423e826154ea565b604082019050919050565b61425281614a4e565b82525050565b61426181614a58565b82525050565b60006142738285613d09565b915061427f8284613d09565b91508190509392505050565b6000614296826140c8565b9150819050919050565b60006020820190506142b56000830184613c79565b92915050565b60006080820190506142d06000830187613c79565b6142dd6020830186613c79565b6142ea6040830185614249565b81810360608301526142fc8184613c97565b905095945050505050565b600060208201905061431c6000830184613c88565b92915050565b6000602082019050818103600083015261433c8184613cd0565b905092915050565b6000602082019050818103600083015261435d81613d3a565b9050919050565b6000602082019050818103600083015261437d81613d5d565b9050919050565b6000602082019050818103600083015261439d81613d80565b9050919050565b600060208201905081810360008301526143bd81613da3565b9050919050565b600060208201905081810360008301526143dd81613dc6565b9050919050565b600060208201905081810360008301526143fd81613de9565b9050919050565b6000602082019050818103600083015261441d81613e0c565b9050919050565b6000602082019050818103600083015261443d81613e2f565b9050919050565b6000602082019050818103600083015261445d81613e52565b9050919050565b6000602082019050818103600083015261447d81613e75565b9050919050565b6000602082019050818103600083015261449d81613e98565b9050919050565b600060208201905081810360008301526144bd81613ebb565b9050919050565b600060208201905081810360008301526144dd81613ede565b9050919050565b600060208201905081810360008301526144fd81613f01565b9050919050565b6000602082019050818103600083015261451d81613f24565b9050919050565b6000602082019050818103600083015261453d81613f47565b9050919050565b6000602082019050818103600083015261455d81613f6a565b9050919050565b6000602082019050818103600083015261457d81613f8d565b9050919050565b6000602082019050818103600083015261459d81613fb0565b9050919050565b600060208201905081810360008301526145bd81613fd3565b9050919050565b600060208201905081810360008301526145dd81613ff6565b9050919050565b600060208201905081810360008301526145fd81614019565b9050919050565b6000602082019050818103600083015261461d8161403c565b9050919050565b6000602082019050818103600083015261463d8161405f565b9050919050565b6000602082019050818103600083015261465d81614082565b9050919050565b6000602082019050818103600083015261467d816140a5565b9050919050565b6000602082019050818103600083015261469d816140eb565b9050919050565b600060208201905081810360008301526146bd8161410e565b9050919050565b600060208201905081810360008301526146dd81614131565b9050919050565b600060208201905081810360008301526146fd81614154565b9050919050565b6000602082019050818103600083015261471d81614177565b9050919050565b6000602082019050818103600083015261473d8161419a565b9050919050565b6000602082019050818103600083015261475d816141bd565b9050919050565b6000602082019050818103600083015261477d816141e0565b9050919050565b6000602082019050818103600083015261479d81614203565b9050919050565b600060208201905081810360008301526147bd81614226565b9050919050565b60006020820190506147d96000830184614249565b92915050565b60006020820190506147f46000830184614258565b92915050565b6000614804614815565b90506148108282614adc565b919050565b6000604051905090565b600067ffffffffffffffff82111561483a57614839614c14565b5b61484382614c43565b9050602081019050919050565b600067ffffffffffffffff82111561486b5761486a614c14565b5b61487482614c43565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006148da82614a4e565b91506148e583614a4e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561491a57614919614b87565b5b828201905092915050565b600061493082614a4e565b915061493b83614a4e565b92508261494b5761494a614bb6565b5b828204905092915050565b600061496182614a4e565b915061496c83614a4e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149a5576149a4614b87565b5b828202905092915050565b60006149bb82614a4e565b91506149c683614a4e565b9250828210156149d9576149d8614b87565b5b828203905092915050565b60006149ef82614a2e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b83811015614a95578082015181840152602081019050614a7a565b83811115614aa4576000848401525b50505050565b60006002820490506001821680614ac257607f821691505b60208210811415614ad657614ad5614be5565b5b50919050565b614ae582614c43565b810181811067ffffffffffffffff82111715614b0457614b03614c14565b5b80604052505050565b6000614b1882614a4e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b4b57614b4a614b87565b5b600182019050919050565b6000614b6182614a4e565b9150614b6c83614a4e565b925082614b7c57614b7b614bb6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f63757272656e74207068617365206d696e74696e672077617320656e64656400600082015250565b7f4e6f206d6f7265206974656d20746f206d696e74210000000000000000000000600082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f6c696d6974207065722077616c6c657420726561636865640000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f45786365656473206f726967696e616c20737570706c79000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f596f7520646f6e2774206861766520464636303030204e465400000000000000600082015250565b7f636f6465206973206d69736d6174636865640000000000000000000000000000600082015250565b7f46726565206d696e742070696573657320616c6c206d696e7465640000000000600082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f557365722077616c6c6574207265717569726564000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f6c696d6974207065722077616c6c6574206f6e6c79206f6e6520706965636500600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f746f6f206d616e7920616c7265616479206d696e746564206265666f7265206460008201527f6576206d696e7400000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f73616c6573206973206e6f742073746172746564000000000000000000000000600082015250565b7f4e6f7420656e6f756768204554482073656e743b20636865636b20707269636560008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b615542816149e4565b811461554d57600080fd5b50565b615559816149f6565b811461556457600080fd5b50565b61557081614a02565b811461557b57600080fd5b50565b61558781614a4e565b811461559257600080fd5b50565b61559e81614a58565b81146155a957600080fd5b5056fea26469706673582212205d259f529f27605347c5c64b52561a9438a1329fe3154cd7ed15f587eb04a13c64736f6c63430008040033697066733a2f2f516d62654d776a66767a5834475a416e6471796976354e32597642426975614a397a346b65527669623838396a522f

Deployed Bytecode

0x6080604052600436106102885760003560e01c80636bb7b1d91161015a578063afdf6134116100c1578063e0c9ffc61161007a578063e0c9ffc6146109b0578063e985e9c5146109d9578063ef66947a14610a16578063f2fde38b14610a41578063f4a0a52814610a6a578063f92c45b714610a9357610288565b8063afdf6134146108a2578063b228d925146108cb578063b88d4fde146108f6578063c3c8b2041461091f578063c87b56dd14610948578063d5abeb011461098557610288565b806396c1d05b1161011357806396c1d05b146107b057806398ae99a8146107db578063a22cb465146107f7578063a60d9dce14610820578063a89531271461085d578063ad8e75aa1461087957610288565b80636bb7b1d9146106b257806370a08231146106dd578063715018a61461071a5780638da5cb5b14610731578063944f66f41461075c57806395d89b411461078557610288565b80632f745c59116101fe57806355f804b3116101b757806355f804b3146105a657806359f030ca146105cf5780635fd84c28146105f857806363105ea6146106215780636352211e1461064a5780636817c76c1461068757610288565b80632f745c5914610498578063375a069a146104d55780633ccfd60b146104fe57806342842e0e146105155780634366df0a1461053e5780634f6ccce71461056957610288565b806314e1373a1161025057806314e1373a1461038657806318160ddd146103b15780631e7269c5146103dc57806323b872dd1461041957806327acc76d146104425780632c41430b1461046d57610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b3146103325780631453d4bd1461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613b2f565b610abe565b6040516102c19190614307565b60405180910390f35b3480156102d657600080fd5b506102df610c08565b6040516102ec9190614322565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190613bc2565b610c9a565b60405161032991906142a0565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190613aae565b610d1f565b005b34801561036757600080fd5b50610370610e38565b60405161037d91906147c4565b60405180910390f35b34801561039257600080fd5b5061039b610e3e565b6040516103a891906147c4565b60405180910390f35b3480156103bd57600080fd5b506103c6610e44565b6040516103d391906147c4565b60405180910390f35b3480156103e857600080fd5b5061040360048036038101906103fe9190613943565b610e4d565b60405161041091906147c4565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b91906139a8565b610e65565b005b34801561044e57600080fd5b50610457610e75565b60405161046491906147c4565b60405180910390f35b34801561047957600080fd5b50610482610e7b565b60405161048f91906147c4565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613aae565b610e81565b6040516104cc91906147c4565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190613bc2565b611073565b005b34801561050a57600080fd5b50610513611160565b005b34801561052157600080fd5b5061053c600480360381019061053791906139a8565b61117a565b005b34801561054a57600080fd5b5061055361119a565b60405161056091906142a0565b60405180910390f35b34801561057557600080fd5b50610590600480360381019061058b9190613bc2565b6111c0565b60405161059d91906147c4565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190613b81565b611213565b005b3480156105db57600080fd5b506105f660048036038101906105f19190613bc2565b611235565b005b34801561060457600080fd5b5061061f600480360381019061061a9190613c50565b611247565b005b34801561062d57600080fd5b5061064860048036038101906106439190613943565b611273565b005b34801561065657600080fd5b50610671600480360381019061066c9190613bc2565b6112bf565b60405161067e91906142a0565b60405180910390f35b34801561069357600080fd5b5061069c6112d5565b6040516106a991906147c4565b60405180910390f35b3480156106be57600080fd5b506106c76112db565b6040516106d491906147df565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff9190613943565b6112f1565b60405161071191906147c4565b60405180910390f35b34801561072657600080fd5b5061072f6113da565b005b34801561073d57600080fd5b506107466113ee565b60405161075391906142a0565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190613943565b611418565b005b34801561079157600080fd5b5061079a611464565b6040516107a79190614322565b60405180910390f35b3480156107bc57600080fd5b506107c56114f6565b6040516107d291906142a0565b60405180910390f35b6107f560048036038101906107f09190613c14565b61151c565b005b34801561080357600080fd5b5061081e60048036038101906108199190613a72565b6118d3565b005b34801561082c57600080fd5b5061084760048036038101906108429190613943565b611a54565b60405161085491906147c4565b60405180910390f35b61087760048036038101906108729190613bc2565b611a6c565b005b34801561088557600080fd5b506108a0600480360381019061089b9190613bc2565b611f17565b005b3480156108ae57600080fd5b506108c960048036038101906108c49190613bc2565b611f29565b005b3480156108d757600080fd5b506108e0611f3b565b6040516108ed91906147c4565b60405180910390f35b34801561090257600080fd5b5061091d600480360381019061091891906139f7565b611f41565b005b34801561092b57600080fd5b5061094660048036038101906109419190613bc2565b611f9d565b005b34801561095457600080fd5b5061096f600480360381019061096a9190613bc2565b611faf565b60405161097c9190614322565b60405180910390f35b34801561099157600080fd5b5061099a612057565b6040516109a791906147c4565b60405180910390f35b3480156109bc57600080fd5b506109d760048036038101906109d29190613aea565b61205d565b005b3480156109e557600080fd5b50610a0060048036038101906109fb919061396c565b6121c6565b604051610a0d9190614307565b60405180910390f35b348015610a2257600080fd5b50610a2b61225a565b604051610a3891906147c4565b60405180910390f35b348015610a4d57600080fd5b50610a686004803603810190610a639190613943565b612260565b005b348015610a7657600080fd5b50610a916004803603810190610a8c9190613bc2565b6122e4565b005b348015610a9f57600080fd5b50610aa86122f6565b604051610ab591906147c4565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b8957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bf157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c015750610c00826122fc565b5b9050919050565b606060018054610c1790614aaa565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4390614aaa565b8015610c905780601f10610c6557610100808354040283529160200191610c90565b820191906000526020600020905b815481529060010190602001808311610c7357829003601f168201915b5050505050905090565b6000610ca582612366565b610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb906147a4565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d2a826112bf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290614664565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dba612373565b73ffffffffffffffffffffffffffffffffffffffff161480610de95750610de881610de3612373565b6121c6565b5b610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f906144e4565b60405180910390fd5b610e3383838361237b565b505050565b60115481565b60125481565b60008054905090565b60136020528060005260406000206000915090505481565b610e7083838361242d565b505050565b600b5481565b6107d081565b6000610e8c836112f1565b8210610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490614344565b60405180910390fd5b6000610ed7610e44565b905060008060005b83811015611031576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fd157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611023578684141561101a57819550505050505061106d565b83806001019450505b508080600101915050610edf565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490614724565b60405180910390fd5b92915050565b61107b61296d565b610fa081611087610e44565b61109191906148cf565b11156110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c9906146e4565b60405180910390fd5b6000600a826110e19190614b56565b14611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890614404565b60405180910390fd5b6000600a826111309190614925565b905060005b8181101561115b5761114833600a6129eb565b808061115390614b0d565b915050611135565b505050565b61116861296d565b60004790506111773382612a09565b50565b61119583838360405180602001604052806000815250611f41565b505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006111ca610e44565b821061120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290614444565b60405180910390fd5b819050919050565b61121b61296d565b80600d90805190602001906112319291906136b9565b5050565b61123d61296d565b80600e8190555050565b61124f61296d565b80600f60006101000a81548163ffffffff021916908363ffffffff16021790555050565b61127b61296d565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006112ca82612afd565b600001519050919050565b600a5481565b600f60009054906101000a900463ffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135990614504565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113e261296d565b6113ec6000612c97565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61142061296d565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606002805461147390614aaa565b80601f016020809104026020016040519081016040528092919081815260200182805461149f90614aaa565b80156114ec5780601f106114c1576101008083540402835291602001916114ec565b820191906000526020600020905b8154815290600101906020018083116114cf57829003601f168201915b5050505050905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190614644565b60405180910390fd5b6000811415801561159c5750600e5481145b6115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d2906145e4565b60405180910390fd5b6000600f60009054906101000a900463ffffffff1663ffffffff161415801561161c575042600f60009054906101000a900463ffffffff1663ffffffff1611155b61165b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165290614744565b60405180910390fd5b600c5482601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116a991906148cf565b11156116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190614424565b60405180910390fd5b601054826116f6610e44565b61170091906148cf565b1115611741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173890614364565b60405180910390fd5b6000829050600b5481111561178b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178290614624565b60405180910390fd5b6000611795610e44565b610fa06117a291906149b0565b9050600081116117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de90614384565b60405180910390fd5b6117f18282612d5d565b91506000600a54836118039190614956565b905080341015611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f90614764565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461189791906148cf565b925050819055506118a833846129eb565b600081346118b691906149b0565b9050600081146118cb576118ca3382612a09565b5b505050505050565b6118db612373565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194090614584565b60405180910390fd5b8060066000611956612373565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a03612373565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a489190614307565b60405180910390a35050565b60146020528060005260406000206000915090505481565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad190614644565b60405180910390fd5b60008114158015611aec5750600e5481145b611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b22906145e4565b60405180910390fd5b6000600f60009054906101000a900463ffffffff1663ffffffff1614158015611b6c575042600f60009054906101000a900463ffffffff1663ffffffff1611155b611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290614744565b60405180910390fd5b600180601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bf891906148cf565b1115611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3090614684565b60405180910390fd5b6011546001601254611c4b91906148cf565b1115611c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8390614604565b60405180910390fd5b6010546001611c99610e44565b611ca391906148cf565b1115611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb906143a4565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611d4191906142a0565b60206040518083038186803b158015611d5957600080fd5b505afa158015611d6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d919190613beb565b90506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611df091906142a0565b60206040518083038186803b158015611e0857600080fd5b505afa158015611e1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e409190613beb565b90506000821180611e515750600081115b611e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e87906145c4565b60405180910390fd5b60006001905080601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ee591906148cf565b92505081905550600160126000828254611eff91906148cf565b92505081905550611f113360016129eb565b50505050565b611f1f61296d565b80600b8190555050565b611f3161296d565b80600c8190555050565b600c5481565b611f4c84848461242d565b611f5884848484612d76565b611f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8e906146a4565b60405180910390fd5b50505050565b611fa561296d565b8060108190555050565b6060611fba82612366565b611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff090614564565b60405180910390fd5b6000612003612f0d565b9050600081511415612024576040518060200160405280600081525061204f565b8061202e84612f9f565b60405160200161203f929190614267565b6040516020818303038152906040525b915050919050565b610fa081565b61206561296d565b6000601054905060005b838390508110156121c057818484838181106120b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060400201602001356120c6610e44565b6120d091906148cf565b1115612111576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612108906144c4565b60405180910390fd5b6121ad84848381811061214d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506040020160000160208101906121659190613943565b85858481811061219e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060400201602001356129eb565b80806121b890614b0d565b91505061206f565b50505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60105481565b61226861296d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf906143c4565b60405180910390fd5b6122e181612c97565b50565b6122ec61296d565b80600a8190555050565b610fa081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061243882612afd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661245f612373565b73ffffffffffffffffffffffffffffffffffffffff1614806124bb5750612484612373565b73ffffffffffffffffffffffffffffffffffffffff166124a384610c9a565b73ffffffffffffffffffffffffffffffffffffffff16145b806124d757506124d682600001516124d1612373565b6121c6565b5b905080612519576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612510906145a4565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461258b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258290614524565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f290614464565b60405180910390fd5b61260885858560016130c3565b612618600084846000015161237b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128fd5761285c81612366565b156128fc5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461296685858560016130c9565b5050505050565b612975612373565b73ffffffffffffffffffffffffffffffffffffffff166129936113ee565b73ffffffffffffffffffffffffffffffffffffffff16146129e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e090614544565b60405180910390fd5b565b612a058282604051806020016040528060008152506130cf565b5050565b80471015612a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a43906144a4565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612a729061428b565b60006040518083038185875af1925050503d8060008114612aaf576040519150601f19603f3d011682016040523d82523d6000602084013e612ab4565b606091505b5050905080612af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aef90614484565b60405180910390fd5b505050565b612b0561373f565b612b0e82612366565b612b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b44906143e4565b60405180910390fd5b60008290505b60008110612c56576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c47578092505050612c92565b50808060019003915050612b53565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8990614784565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818310612d6c5781612d6e565b825b905092915050565b6000612d978473ffffffffffffffffffffffffffffffffffffffff166130e1565b15612f00578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dc0612373565b8786866040518563ffffffff1660e01b8152600401612de294939291906142bb565b602060405180830381600087803b158015612dfc57600080fd5b505af1925050508015612e2d57506040513d601f19601f82011682018060405250810190612e2a9190613b58565b60015b612eb0573d8060008114612e5d576040519150601f19603f3d011682016040523d82523d6000602084013e612e62565b606091505b50600081511415612ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9f906146a4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f05565b600190505b949350505050565b6060600d8054612f1c90614aaa565b80601f0160208091040260200160405190810160405280929190818152602001828054612f4890614aaa565b8015612f955780601f10612f6a57610100808354040283529160200191612f95565b820191906000526020600020905b815481529060010190602001808311612f7857829003601f168201915b5050505050905090565b606060006001612fae84613104565b01905060008167ffffffffffffffff811115612ff3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130255781602001600182028036833780820191505090505b509050600082602001820190505b6001156130b8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816130a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b04945060008514156130b3576130b8565b613033565b819350505050919050565b50505050565b50505050565b6130dc838383600161333b565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613188577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161317e577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506040810190505b6d04ee2d6d415b85acef810000000083106131eb576d04ee2d6d415b85acef810000000083816131e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506020810190505b662386f26fc10000831061324057662386f26fc100008381613236577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506010810190505b6305f5e100831061328f576305f5e1008381613285577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506008810190505b61271083106132da5761271083816132d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506004810190505b606483106133235760648381613319577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506002810190505b600a8310613332576001810190505b80915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156133b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133a8906146c4565b60405180910390fd5b60008414156133f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ec90614704565b60405180910390fd5b61340260008683876130c3565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561369c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613687576136476000888488612d76565b613686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367d906146a4565b60405180910390fd5b5b818060010192505080806001019150506135d0565b5080600081905550506136b260008683876130c9565b5050505050565b8280546136c590614aaa565b90600052602060002090601f0160209004810192826136e7576000855561372e565b82601f1061370057805160ff191683800117855561372e565b8280016001018555821561372e579182015b8281111561372d578251825591602001919060010190613712565b5b50905061373b9190613779565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561379257600081600090555060010161377a565b5090565b60006137a96137a48461481f565b6147fa565b9050828152602081018484840111156137c157600080fd5b6137cc848285614a68565b509392505050565b60006137e76137e284614850565b6147fa565b9050828152602081018484840111156137ff57600080fd5b61380a848285614a68565b509392505050565b60008135905061382181615539565b92915050565b60008083601f84011261383957600080fd5b8235905067ffffffffffffffff81111561385257600080fd5b60208301915083604082028301111561386a57600080fd5b9250929050565b60008135905061388081615550565b92915050565b60008135905061389581615567565b92915050565b6000815190506138aa81615567565b92915050565b600082601f8301126138c157600080fd5b81356138d1848260208601613796565b91505092915050565b600082601f8301126138eb57600080fd5b81356138fb8482602086016137d4565b91505092915050565b6000813590506139138161557e565b92915050565b6000815190506139288161557e565b92915050565b60008135905061393d81615595565b92915050565b60006020828403121561395557600080fd5b600061396384828501613812565b91505092915050565b6000806040838503121561397f57600080fd5b600061398d85828601613812565b925050602061399e85828601613812565b9150509250929050565b6000806000606084860312156139bd57600080fd5b60006139cb86828701613812565b93505060206139dc86828701613812565b92505060406139ed86828701613904565b9150509250925092565b60008060008060808587031215613a0d57600080fd5b6000613a1b87828801613812565b9450506020613a2c87828801613812565b9350506040613a3d87828801613904565b925050606085013567ffffffffffffffff811115613a5a57600080fd5b613a66878288016138b0565b91505092959194509250565b60008060408385031215613a8557600080fd5b6000613a9385828601613812565b9250506020613aa485828601613871565b9150509250929050565b60008060408385031215613ac157600080fd5b6000613acf85828601613812565b9250506020613ae085828601613904565b9150509250929050565b60008060208385031215613afd57600080fd5b600083013567ffffffffffffffff811115613b1757600080fd5b613b2385828601613827565b92509250509250929050565b600060208284031215613b4157600080fd5b6000613b4f84828501613886565b91505092915050565b600060208284031215613b6a57600080fd5b6000613b788482850161389b565b91505092915050565b600060208284031215613b9357600080fd5b600082013567ffffffffffffffff811115613bad57600080fd5b613bb9848285016138da565b91505092915050565b600060208284031215613bd457600080fd5b6000613be284828501613904565b91505092915050565b600060208284031215613bfd57600080fd5b6000613c0b84828501613919565b91505092915050565b60008060408385031215613c2757600080fd5b6000613c3585828601613904565b9250506020613c4685828601613904565b9150509250929050565b600060208284031215613c6257600080fd5b6000613c708482850161392e565b91505092915050565b613c82816149e4565b82525050565b613c91816149f6565b82525050565b6000613ca282614881565b613cac8185614897565b9350613cbc818560208601614a77565b613cc581614c43565b840191505092915050565b6000613cdb8261488c565b613ce581856148b3565b9350613cf5818560208601614a77565b613cfe81614c43565b840191505092915050565b6000613d148261488c565b613d1e81856148c4565b9350613d2e818560208601614a77565b80840191505092915050565b6000613d476022836148b3565b9150613d5282614c54565b604082019050919050565b6000613d6a601f836148b3565b9150613d7582614ca3565b602082019050919050565b6000613d8d6015836148b3565b9150613d9882614ccc565b602082019050919050565b6000613db06008836148b3565b9150613dbb82614cf5565b602082019050919050565b6000613dd36026836148b3565b9150613dde82614d1e565b604082019050919050565b6000613df6602a836148b3565b9150613e0182614d6d565b604082019050919050565b6000613e19602c836148b3565b9150613e2482614dbc565b604082019050919050565b6000613e3c6018836148b3565b9150613e4782614e0b565b602082019050919050565b6000613e5f6023836148b3565b9150613e6a82614e34565b604082019050919050565b6000613e826025836148b3565b9150613e8d82614e83565b604082019050919050565b6000613ea5603a836148b3565b9150613eb082614ed2565b604082019050919050565b6000613ec8601d836148b3565b9150613ed382614f21565b602082019050919050565b6000613eeb6017836148b3565b9150613ef682614f4a565b602082019050919050565b6000613f0e6039836148b3565b9150613f1982614f73565b604082019050919050565b6000613f31602b836148b3565b9150613f3c82614fc2565b604082019050919050565b6000613f546026836148b3565b9150613f5f82615011565b604082019050919050565b6000613f776020836148b3565b9150613f8282615060565b602082019050919050565b6000613f9a602f836148b3565b9150613fa582615089565b604082019050919050565b6000613fbd601a836148b3565b9150613fc8826150d8565b602082019050919050565b6000613fe06032836148b3565b9150613feb82615101565b604082019050919050565b60006140036019836148b3565b915061400e82615150565b602082019050919050565b60006140266012836148b3565b915061403182615179565b602082019050919050565b6000614049601b836148b3565b9150614054826151a2565b602082019050919050565b600061406c601b836148b3565b9150614077826151cb565b602082019050919050565b600061408f6014836148b3565b915061409a826151f4565b602082019050919050565b60006140b26022836148b3565b91506140bd8261521d565b604082019050919050565b60006140d56000836148a8565b91506140e08261526c565b600082019050919050565b60006140f8601f836148b3565b91506141038261526f565b602082019050919050565b600061411b6033836148b3565b915061412682615298565b604082019050919050565b600061413e6021836148b3565b9150614149826152e7565b604082019050919050565b60006141616027836148b3565b915061416c82615336565b604082019050919050565b60006141846028836148b3565b915061418f82615385565b604082019050919050565b60006141a7602e836148b3565b91506141b2826153d4565b604082019050919050565b60006141ca6014836148b3565b91506141d582615423565b602082019050919050565b60006141ed6021836148b3565b91506141f88261544c565b604082019050919050565b6000614210602f836148b3565b915061421b8261549b565b604082019050919050565b6000614233602d836148b3565b915061423e826154ea565b604082019050919050565b61425281614a4e565b82525050565b61426181614a58565b82525050565b60006142738285613d09565b915061427f8284613d09565b91508190509392505050565b6000614296826140c8565b9150819050919050565b60006020820190506142b56000830184613c79565b92915050565b60006080820190506142d06000830187613c79565b6142dd6020830186613c79565b6142ea6040830185614249565b81810360608301526142fc8184613c97565b905095945050505050565b600060208201905061431c6000830184613c88565b92915050565b6000602082019050818103600083015261433c8184613cd0565b905092915050565b6000602082019050818103600083015261435d81613d3a565b9050919050565b6000602082019050818103600083015261437d81613d5d565b9050919050565b6000602082019050818103600083015261439d81613d80565b9050919050565b600060208201905081810360008301526143bd81613da3565b9050919050565b600060208201905081810360008301526143dd81613dc6565b9050919050565b600060208201905081810360008301526143fd81613de9565b9050919050565b6000602082019050818103600083015261441d81613e0c565b9050919050565b6000602082019050818103600083015261443d81613e2f565b9050919050565b6000602082019050818103600083015261445d81613e52565b9050919050565b6000602082019050818103600083015261447d81613e75565b9050919050565b6000602082019050818103600083015261449d81613e98565b9050919050565b600060208201905081810360008301526144bd81613ebb565b9050919050565b600060208201905081810360008301526144dd81613ede565b9050919050565b600060208201905081810360008301526144fd81613f01565b9050919050565b6000602082019050818103600083015261451d81613f24565b9050919050565b6000602082019050818103600083015261453d81613f47565b9050919050565b6000602082019050818103600083015261455d81613f6a565b9050919050565b6000602082019050818103600083015261457d81613f8d565b9050919050565b6000602082019050818103600083015261459d81613fb0565b9050919050565b600060208201905081810360008301526145bd81613fd3565b9050919050565b600060208201905081810360008301526145dd81613ff6565b9050919050565b600060208201905081810360008301526145fd81614019565b9050919050565b6000602082019050818103600083015261461d8161403c565b9050919050565b6000602082019050818103600083015261463d8161405f565b9050919050565b6000602082019050818103600083015261465d81614082565b9050919050565b6000602082019050818103600083015261467d816140a5565b9050919050565b6000602082019050818103600083015261469d816140eb565b9050919050565b600060208201905081810360008301526146bd8161410e565b9050919050565b600060208201905081810360008301526146dd81614131565b9050919050565b600060208201905081810360008301526146fd81614154565b9050919050565b6000602082019050818103600083015261471d81614177565b9050919050565b6000602082019050818103600083015261473d8161419a565b9050919050565b6000602082019050818103600083015261475d816141bd565b9050919050565b6000602082019050818103600083015261477d816141e0565b9050919050565b6000602082019050818103600083015261479d81614203565b9050919050565b600060208201905081810360008301526147bd81614226565b9050919050565b60006020820190506147d96000830184614249565b92915050565b60006020820190506147f46000830184614258565b92915050565b6000614804614815565b90506148108282614adc565b919050565b6000604051905090565b600067ffffffffffffffff82111561483a57614839614c14565b5b61484382614c43565b9050602081019050919050565b600067ffffffffffffffff82111561486b5761486a614c14565b5b61487482614c43565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006148da82614a4e565b91506148e583614a4e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561491a57614919614b87565b5b828201905092915050565b600061493082614a4e565b915061493b83614a4e565b92508261494b5761494a614bb6565b5b828204905092915050565b600061496182614a4e565b915061496c83614a4e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149a5576149a4614b87565b5b828202905092915050565b60006149bb82614a4e565b91506149c683614a4e565b9250828210156149d9576149d8614b87565b5b828203905092915050565b60006149ef82614a2e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b83811015614a95578082015181840152602081019050614a7a565b83811115614aa4576000848401525b50505050565b60006002820490506001821680614ac257607f821691505b60208210811415614ad657614ad5614be5565b5b50919050565b614ae582614c43565b810181811067ffffffffffffffff82111715614b0457614b03614c14565b5b80604052505050565b6000614b1882614a4e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b4b57614b4a614b87565b5b600182019050919050565b6000614b6182614a4e565b9150614b6c83614a4e565b925082614b7c57614b7b614bb6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f63757272656e74207068617365206d696e74696e672077617320656e64656400600082015250565b7f4e6f206d6f7265206974656d20746f206d696e74210000000000000000000000600082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f6c696d6974207065722077616c6c657420726561636865640000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f45786365656473206f726967696e616c20737570706c79000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f596f7520646f6e2774206861766520464636303030204e465400000000000000600082015250565b7f636f6465206973206d69736d6174636865640000000000000000000000000000600082015250565b7f46726565206d696e742070696573657320616c6c206d696e7465640000000000600082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f557365722077616c6c6574207265717569726564000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f6c696d6974207065722077616c6c6574206f6e6c79206f6e6520706965636500600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f746f6f206d616e7920616c7265616479206d696e746564206265666f7265206460008201527f6576206d696e7400000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f73616c6573206973206e6f742073746172746564000000000000000000000000600082015250565b7f4e6f7420656e6f756768204554482073656e743b20636865636b20707269636560008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b615542816149e4565b811461554d57600080fd5b50565b615559816149f6565b811461556457600080fd5b50565b61557081614a02565b811461557b57600080fd5b50565b61558781614a4e565b811461559257600080fd5b50565b61559e81614a58565b81146155a957600080fd5b5056fea26469706673582212205d259f529f27605347c5c64b52561a9438a1329fe3154cd7ed15f587eb04a13c64736f6c63430008040033

Deployed Bytecode Sourcemap

57256:5714:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43986:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45872:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47434:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46955:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59715:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59775:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42243:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59814:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48310:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57848:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57431:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42907:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59142:429;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58978:153;;;;;;;;;;;;;:::i;:::-;;48543:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57664:73;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42420:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58735:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59917:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60027:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58053:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45681:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57804:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59620;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44422:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20091:103;;;;;;;;;;;;;:::i;:::-;;19450:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58183:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46041:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57584:73;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60265:1341;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47720:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59862:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61612:946;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58313:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58455;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57892:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48791:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60148:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46216:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57384:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62564:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48079:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59664:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20349:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57939:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57483:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43986:372;44088:4;44140:25;44125:40;;;:11;:40;;;;:105;;;;44197:33;44182:48;;;:11;:48;;;;44125:105;:172;;;;44262:35;44247:50;;;:11;:50;;;;44125:172;:225;;;;44314:36;44338:11;44314:23;:36::i;:::-;44125:225;44105:245;;43986:372;;;:::o;45872:100::-;45926:13;45959:5;45952:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45872:100;:::o;47434:214::-;47502:7;47530:16;47538:7;47530;:16::i;:::-;47522:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;47616:15;:24;47632:7;47616:24;;;;;;;;;;;;;;;;;;;;;47609:31;;47434:214;;;:::o;46955:413::-;47028:13;47044:24;47060:7;47044:15;:24::i;:::-;47028:40;;47093:5;47087:11;;:2;:11;;;;47079:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;47188:5;47172:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;47197:37;47214:5;47221:12;:10;:12::i;:::-;47197:16;:37::i;:::-;47172:62;47150:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;47332:28;47341:2;47345:7;47354:5;47332:8;:28::i;:::-;46955:413;;;:::o;59715:53::-;;;;:::o;59775:30::-;;;;:::o;42243:100::-;42296:7;42323:12;;42316:19;;42243:100;:::o;59814:41::-;;;;;;;;;;;;;;;;;:::o;48310:162::-;48436:28;48446:4;48452:2;48456:7;48436:9;:28::i;:::-;48310:162;;;:::o;57848:37::-;;;;:::o;57431:45::-;57472:4;57431:45;:::o;42907:1007::-;42996:7;43032:16;43042:5;43032:9;:16::i;:::-;43024:5;:24;43016:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43098:22;43123:13;:11;:13::i;:::-;43098:38;;43147:19;43177:25;43366:9;43361:466;43381:14;43377:1;:18;43361:466;;;43421:31;43455:11;:14;43467:1;43455:14;;;;;;;;;;;43421:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43518:1;43492:28;;:9;:14;;;:28;;;43488:111;;43565:9;:14;;;43545:34;;43488:111;43642:5;43621:26;;:17;:26;;;43617:195;;;43691:5;43676:11;:20;43672:85;;;43732:1;43725:8;;;;;;;;;43672:85;43779:13;;;;;;;43617:195;43361:466;43397:3;;;;;;;43361:466;;;;43850:56;;;;;;;;;;:::i;:::-;;;;;;;;42907:1007;;;;;:::o;59142:429::-;19336:13;:11;:13::i;:::-;57524:4:::1;59227:6;59211:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:40;;59203:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;59339:1;57575:2;59314:6;:21;;;;:::i;:::-;:26;59306:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;59410:17;57575:2;59430:6;:21;;;;:::i;:::-;59410:41;;59467:9;59462:102;59486:9;59482:1;:13;59462:102;;;59517:35;59527:10;57575:2;59517:9;:35::i;:::-;59497:3;;;;;:::i;:::-;;;;59462:102;;;;19360:1;59142:429:::0;:::o;58978:153::-;19336:13;:11;:13::i;:::-;59026:15:::1;59044:21;59026:39;;59076:47;59102:10;59115:7;59076:17;:47::i;:::-;19360:1;58978:153::o:0;48543:177::-;48673:39;48690:4;48696:2;48700:7;48673:39;;;;;;;;;;;;:16;:39::i;:::-;48543:177;;;:::o;57664:73::-;;;;;;;;;;;;;:::o;42420:187::-;42487:7;42523:13;:11;:13::i;:::-;42515:5;:21;42507:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;42594:5;42587:12;;42420:187;;;:::o;58735:107::-;19336:13;:11;:13::i;:::-;58827:7:::1;58808:16;:26;;;;;;;;;;;;:::i;:::-;;58735:107:::0;:::o;59917:102::-;19336:13;:11;:13::i;:::-;60004:7:::1;59986:15;:25;;;;59917:102:::0;:::o;60027:113::-;19336:13;:11;:13::i;:::-;60125:7:::1;60103:19;;:29;;;;;;;;;;;;;;;;;;60027:113:::0;:::o;58053:122::-;19336:13;:11;:13::i;:::-;58151:16:::1;58135:13;;:32;;;;;;;;;;;;;;;;;;58053:122:::0;:::o;45681:124::-;45745:7;45772:20;45784:7;45772:11;:20::i;:::-;:25;;;45765:32;;45681:124;;;:::o;57804:37::-;;;;:::o;59620:::-;;;;;;;;;;;;;:::o;44422:221::-;44486:7;44531:1;44514:19;;:5;:19;;;;44506:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;44607:12;:19;44620:5;44607:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;44599:36;;44592:43;;44422:221;;;:::o;20091:103::-;19336:13;:11;:13::i;:::-;20156:30:::1;20183:1;20156:18;:30::i;:::-;20091:103::o:0;19450:87::-;19496:7;19523:6;;;;;;;;;;;19516:13;;19450:87;:::o;58183:122::-;19336:13;:11;:13::i;:::-;58281:16:::1;58265:13;;:32;;;;;;;;;;;;;;;;;;58183:122:::0;:::o;46041:104::-;46097:13;46130:7;46123:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46041:104;:::o;57584:73::-;;;;;;;;;;;;;:::o;60265:1341::-;60359:9;60345:23;;:10;:23;;;60337:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;60420:1;60412:4;:9;;:36;;;;;60433:15;;60425:4;:23;60412:36;60404:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;60513:1;60490:19;;;;;;;;;;;:24;;;;:66;;;;;60541:15;60518:19;;;;;;;;;;;:38;;;;60490:66;60482:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;60631:16;;60621:6;60600;:18;60607:10;60600:18;;;;;;;;;;;;;;;;:27;;;;:::i;:::-;:47;;60592:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;60721:17;;60711:6;60695:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:43;;60687:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;60787:22;60812:6;60787:31;;60855:16;;60837:14;:34;;60829:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;60978:23;61016:13;:11;:13::i;:::-;57420:4;61004:25;;;;:::i;:::-;60978:51;;61066:1;61048:15;:19;61040:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;61122:41;61131:14;61147:15;61122:8;:41::i;:::-;61105:58;;61176:21;61217:9;;61200:14;:26;;;;:::i;:::-;61176:50;;61258:13;61245:9;:26;;61237:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;61345:14;61323:6;:18;61330:10;61323:18;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;61372:37;61382:10;61394:14;61372:9;:37::i;:::-;61453:15;61483:13;61471:9;:25;;;;:::i;:::-;61453:43;;61522:1;61511:7;:12;61507:92;;61540:47;61566:10;61579:7;61540:17;:47::i;:::-;61507:92;60265:1341;;;;;;:::o;47720:288::-;47827:12;:10;:12::i;:::-;47815:24;;:8;:24;;;;47807:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47928:8;47883:18;:32;47902:12;:10;:12::i;:::-;47883:32;;;;;;;;;;;;;;;:42;47916:8;47883:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;47981:8;47952:48;;47967:12;:10;:12::i;:::-;47952:48;;;47991:8;47952:48;;;;;;:::i;:::-;;;;;;;;47720:288;;:::o;59862:46::-;;;;;;;;;;;;;;;;;:::o;61612:946::-;61696:9;61682:23;;:10;:23;;;61674:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;61757:1;61749:4;:9;;:36;;;;;61770:15;;61762:4;:23;61749:36;61741:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;61850:1;61827:19;;;;;;;;;;;:24;;;;:66;;;;;61878:15;61855:19;;;;;;;;;;;:38;;;;61827:66;61819:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;61968:1;61963;61937:11;:23;61949:10;61937:23;;;;;;;;;;;;;;;;:27;;;;:::i;:::-;:32;;61929:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;62043:21;;62038:1;62024:11;;:15;;;;:::i;:::-;:40;;62016:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;62136:17;;62131:1;62115:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:38;;62107:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;62189:11;62211:13;;;;;;;;;;;62203:32;;;62236:10;62203:44;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;62189:58;;62258:11;62280:13;;;;;;;;;;;62272:32;;;62305:10;62272:44;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;62258:58;;62344:1;62335:6;:10;:24;;;;62358:1;62349:6;:10;62335:24;62327:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;62402:22;62427:1;62402:26;;62468:14;62441:11;:23;62453:10;62441:23;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;62508:1;62493:11;;:16;;;;;;;:::i;:::-;;;;;;;;62522:24;62532:10;62544:1;62522:9;:24::i;:::-;61612:946;;;;:::o;58313:134::-;19336:13;:11;:13::i;:::-;58420:19:::1;58401:16;:38;;;;58313:134:::0;:::o;58455:::-;19336:13;:11;:13::i;:::-;58562:19:::1;58543:16;:38;;;;58455:134:::0;:::o;57892:38::-;;;;:::o;48791:355::-;48950:28;48960:4;48966:2;48970:7;48950:9;:28::i;:::-;49011:48;49034:4;49040:2;49044:7;49053:5;49011:22;:48::i;:::-;48989:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;48791:355;;;;:::o;60148:109::-;19336:13;:11;:13::i;:::-;60241:8:::1;60221:17;:28;;;;60148:109:::0;:::o;46216:335::-;46289:13;46323:16;46331:7;46323;:16::i;:::-;46315:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;46404:21;46428:10;:8;:10::i;:::-;46404:34;;46481:1;46462:7;46456:21;:26;;:87;;;;;;;;;;;;;;;;;46509:7;46518:18;:7;:16;:18::i;:::-;46492:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46456:87;46449:94;;;46216:335;;;:::o;57384:40::-;57420:4;57384:40;:::o;62564:403::-;19336:13;:11;:13::i;:::-;62639:10:::1;62652:17;;62639:30;;62726:13;62721:239;62753:8;;:15;;62745:5;:23;62721:239;;;62844:2;62818:8;;62827:5;62818:15;;;;;;;;;;;;;;;;;;;;:22;;;62802:13;:11;:13::i;:::-;:38;;;;:::i;:::-;:44;;62794:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;62889:59;62899:8;;62908:5;62899:15;;;;;;;;;;;;;;;;;;;;:24;;;;;;;;;;:::i;:::-;62925:8;;62934:5;62925:15;;;;;;;;;;;;;;;;;;;;:22;;;62889:9;:59::i;:::-;62770:7;;;;;:::i;:::-;;;;62721:239;;;;19360:1;62564:403:::0;;:::o;48079:164::-;48176:4;48200:18;:25;48219:5;48200:25;;;;;;;;;;;;;;;:35;48226:8;48200:35;;;;;;;;;;;;;;;;;;;;;;;;;48193:42;;48079:164;;;;:::o;59664:44::-;;;;:::o;20349:201::-;19336:13;:11;:13::i;:::-;20458:1:::1;20438:22;;:8;:22;;;;20430:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20514:28;20533:8;20514:18;:28::i;:::-;20349:201:::0;:::o;57939:106::-;19336:13;:11;:13::i;:::-;58025:12:::1;58013:9;:24;;;;57939:106:::0;:::o;57483:45::-;57524:4;57483:45;:::o;33377:157::-;33462:4;33501:25;33486:40;;;:11;:40;;;;33479:47;;33377:157;;;:::o;49401:111::-;49458:4;49492:12;;49482:7;:22;49475:29;;49401:111;;;:::o;18001:98::-;18054:7;18081:10;18074:17;;18001:98;:::o;54321:196::-;54463:2;54436:15;:24;54452:7;54436:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;54501:7;54497:2;54481:28;;54490:5;54481:28;;;;;;;;;;;;54321:196;;;:::o;52201:2002::-;52316:35;52354:20;52366:7;52354:11;:20::i;:::-;52316:58;;52387:22;52429:13;:18;;;52413:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;52488:12;:10;:12::i;:::-;52464:36;;:20;52476:7;52464:11;:20::i;:::-;:36;;;52413:87;:154;;;;52517:50;52534:13;:18;;;52554:12;:10;:12::i;:::-;52517:16;:50::i;:::-;52413:154;52387:181;;52589:17;52581:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;52704:4;52682:26;;:13;:18;;;:26;;;52674:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;52784:1;52770:16;;:2;:16;;;;52762:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;52841:43;52863:4;52869:2;52873:7;52882:1;52841:21;:43::i;:::-;52949:49;52966:1;52970:7;52979:13;:18;;;52949:8;:49::i;:::-;53324:1;53294:12;:18;53307:4;53294:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53368:1;53340:12;:16;53353:2;53340:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53414:2;53386:11;:20;53398:7;53386:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;53476:15;53431:11;:20;53443:7;53431:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;53744:19;53776:1;53766:7;:11;53744:33;;53837:1;53796:43;;:11;:24;53808:11;53796:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;53792:295;;;53864:20;53872:11;53864:7;:20::i;:::-;53860:212;;;53941:13;:18;;;53909:11;:24;53921:11;53909:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;54024:13;:28;;;53982:11;:24;53994:11;53982:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;53860:212;53792:295;52201:2002;54134:7;54130:2;54115:27;;54124:4;54115:27;;;;;;;;;;;;54153:42;54174:4;54180:2;54184:7;54193:1;54153:20;:42::i;:::-;52201:2002;;;;;:::o;19615:132::-;19690:12;:10;:12::i;:::-;19679:23;;:7;:5;:7::i;:::-;:23;;;19671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19615:132::o;49520:104::-;49589:27;49599:2;49603:8;49589:27;;;;;;;;;;;;:9;:27::i;:::-;49520:104;;:::o;23641:317::-;23756:6;23731:21;:31;;23723:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23810:12;23828:9;:14;;23850:6;23828:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23809:52;;;23880:7;23872:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;23641:317;;;:::o;45082:537::-;45143:21;;:::i;:::-;45185:16;45193:7;45185;:16::i;:::-;45177:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;45291:12;45306:7;45291:22;;45286:245;45323:1;45315:4;:9;45286:245;;45353:31;45387:11;:17;45399:4;45387:17;;;;;;;;;;;45353:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45453:1;45427:28;;:9;:14;;;:28;;;45423:93;;45487:9;45480:16;;;;;;45423:93;45286:245;45326:6;;;;;;;;45286:245;;;;45554:57;;;;;;;;;;:::i;:::-;;;;;;;;45082:537;;;;:::o;20710:191::-;20784:16;20803:6;;;;;;;;;;;20784:25;;20829:8;20820:6;;:17;;;;;;;;;;;;;;;;;;20884:8;20853:40;;20874:8;20853:40;;;;;;;;;;;;20710:191;;:::o;1977:106::-;2035:7;2066:1;2062;:5;:13;;2074:1;2062:13;;;2070:1;2062:13;2055:20;;1977:106;;;;:::o;55082:804::-;55237:4;55258:15;:2;:13;;;:15::i;:::-;55254:625;;;55310:2;55294:36;;;55331:12;:10;:12::i;:::-;55345:4;55351:7;55360:5;55294:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55290:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55557:1;55540:6;:13;:18;55536:273;;;55583:61;;;;;;;;;;:::i;:::-;;;;;;;;55536:273;55759:6;55753:13;55744:6;55740:2;55736:15;55729:38;55290:534;55427:45;;;55417:55;;;:6;:55;;;;55410:62;;;;;55254:625;55863:4;55856:11;;55082:804;;;;;;;:::o;58850:117::-;58910:13;58943:16;58936:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58850:117;:::o;14920:716::-;14976:13;15027:14;15064:1;15044:17;15055:5;15044:10;:17::i;:::-;:21;15027:38;;15080:20;15114:6;15103:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15080:41;;15136:11;15265:6;15261:2;15257:15;15249:6;15245:28;15238:35;;15302:288;15309:4;15302:288;;;15334:5;;;;;;;;15476:8;15471:2;15464:5;15460:14;15455:30;15450:3;15442:44;15532:2;15523:11;;;;;;;;;;;;;;;;;15566:1;15557:5;:10;15553:21;;;15569:5;;15553:21;15302:288;;;15611:6;15604:13;;;;;14920:716;;;:::o;56374:159::-;;;;;:::o;56945:158::-;;;;;:::o;49987:163::-;50110:32;50116:2;50120:8;50130:5;50137:4;50110:5;:32::i;:::-;49987:163;;;:::o;22382:326::-;22442:4;22699:1;22677:7;:19;;;:23;22670:30;;22382:326;;;:::o;11754:948::-;11807:7;11827:14;11844:1;11827:18;;11894:8;11885:5;:17;11881:106;;11932:8;11923:17;;;;;;;;;;;;;;;;;11969:2;11959:12;;;;11881:106;12014:8;12005:5;:17;12001:106;;12052:8;12043:17;;;;;;;;;;;;;;;;;12089:2;12079:12;;;;12001:106;12134:8;12125:5;:17;12121:106;;12172:8;12163:17;;;;;;;;;;;;;;;;;12209:2;12199:12;;;;12121:106;12254:7;12245:5;:16;12241:103;;12291:7;12282:16;;;;;;;;;;;;;;;;;12327:1;12317:11;;;;12241:103;12371:7;12362:5;:16;12358:103;;12408:7;12399:16;;;;;;;;;;;;;;;;;12444:1;12434:11;;;;12358:103;12488:7;12479:5;:16;12475:103;;12525:7;12516:16;;;;;;;;;;;;;;;;;12561:1;12551:11;;;;12475:103;12605:7;12596:5;:16;12592:68;;12643:1;12633:11;;;;12592:68;12688:6;12681:13;;;11754:948;;;:::o;50409:1538::-;50548:20;50571:12;;50548:35;;50616:1;50602:16;;:2;:16;;;;50594:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;50687:1;50675:8;:13;;50667:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50746:61;50776:1;50780:2;50784:12;50798:8;50746:21;:61::i;:::-;51121:8;51085:12;:16;51098:2;51085:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51186:8;51145:12;:16;51158:2;51145:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51245:2;51212:11;:25;51224:12;51212:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;51312:15;51262:11;:25;51274:12;51262:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;51345:20;51368:12;51345:35;;51402:9;51397:415;51417:8;51413:1;:12;51397:415;;;51481:12;51477:2;51456:38;;51473:1;51456:38;;;;;;;;;;;;51517:4;51513:249;;;51580:59;51611:1;51615:2;51619:12;51633:5;51580:22;:59::i;:::-;51546:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;51513:249;51782:14;;;;;;;51427:3;;;;;;;51397:415;;;;51843:12;51828;:27;;;;50409:1538;51879:60;51908:1;51912:2;51916:12;51930:8;51879:20;:60::i;:::-;50409:1538;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;887:395::-;988:8;998:6;1048:3;1041:4;1033:6;1029:17;1025:27;1015:2;;1066:1;1063;1056:12;1015:2;1102:6;1089:20;1079:30;;1132:18;1124:6;1121:30;1118:2;;;1164:1;1161;1154:12;1118:2;1201:4;1193:6;1189:17;1177:29;;1255:3;1247:4;1239:6;1235:17;1225:8;1221:32;1218:41;1215:2;;;1272:1;1269;1262:12;1215:2;1005:277;;;;;:::o;1288:133::-;1331:5;1369:6;1356:20;1347:29;;1385:30;1409:5;1385:30;:::i;:::-;1337:84;;;;:::o;1427:137::-;1472:5;1510:6;1497:20;1488:29;;1526:32;1552:5;1526:32;:::i;:::-;1478:86;;;;:::o;1570:141::-;1626:5;1657:6;1651:13;1642:22;;1673:32;1699:5;1673:32;:::i;:::-;1632:79;;;;:::o;1730:271::-;1785:5;1834:3;1827:4;1819:6;1815:17;1811:27;1801:2;;1852:1;1849;1842:12;1801:2;1892:6;1879:20;1917:78;1991:3;1983:6;1976:4;1968:6;1964:17;1917:78;:::i;:::-;1908:87;;1791:210;;;;;:::o;2021:273::-;2077:5;2126:3;2119:4;2111:6;2107:17;2103:27;2093:2;;2144:1;2141;2134:12;2093:2;2184:6;2171:20;2209:79;2284:3;2276:6;2269:4;2261:6;2257:17;2209:79;:::i;:::-;2200:88;;2083:211;;;;;:::o;2300:139::-;2346:5;2384:6;2371:20;2362:29;;2400:33;2427:5;2400:33;:::i;:::-;2352:87;;;;:::o;2445:143::-;2502:5;2533:6;2527:13;2518:22;;2549:33;2576:5;2549:33;:::i;:::-;2508:80;;;;:::o;2594:137::-;2639:5;2677:6;2664:20;2655:29;;2693:32;2719:5;2693:32;:::i;:::-;2645:86;;;;:::o;2737:262::-;2796:6;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2861:1;2858;2851:12;2813:2;2904:1;2929:53;2974:7;2965:6;2954:9;2950:22;2929:53;:::i;:::-;2919:63;;2875:117;2803:196;;;;:::o;3005:407::-;3073:6;3081;3130:2;3118:9;3109:7;3105:23;3101:32;3098:2;;;3146:1;3143;3136:12;3098:2;3189:1;3214:53;3259:7;3250:6;3239:9;3235:22;3214:53;:::i;:::-;3204:63;;3160:117;3316:2;3342:53;3387:7;3378:6;3367:9;3363:22;3342:53;:::i;:::-;3332:63;;3287:118;3088:324;;;;;:::o;3418:552::-;3495:6;3503;3511;3560:2;3548:9;3539:7;3535:23;3531:32;3528:2;;;3576:1;3573;3566:12;3528:2;3619:1;3644:53;3689:7;3680:6;3669:9;3665:22;3644:53;:::i;:::-;3634:63;;3590:117;3746:2;3772:53;3817:7;3808:6;3797:9;3793:22;3772:53;:::i;:::-;3762:63;;3717:118;3874:2;3900:53;3945:7;3936:6;3925:9;3921:22;3900:53;:::i;:::-;3890:63;;3845:118;3518:452;;;;;:::o;3976:809::-;4071:6;4079;4087;4095;4144:3;4132:9;4123:7;4119:23;4115:33;4112:2;;;4161:1;4158;4151:12;4112:2;4204:1;4229:53;4274:7;4265:6;4254:9;4250:22;4229:53;:::i;:::-;4219:63;;4175:117;4331:2;4357:53;4402:7;4393:6;4382:9;4378:22;4357:53;:::i;:::-;4347:63;;4302:118;4459:2;4485:53;4530:7;4521:6;4510:9;4506:22;4485:53;:::i;:::-;4475:63;;4430:118;4615:2;4604:9;4600:18;4587:32;4646:18;4638:6;4635:30;4632:2;;;4678:1;4675;4668:12;4632:2;4706:62;4760:7;4751:6;4740:9;4736:22;4706:62;:::i;:::-;4696:72;;4558:220;4102:683;;;;;;;:::o;4791:401::-;4856:6;4864;4913:2;4901:9;4892:7;4888:23;4884:32;4881:2;;;4929:1;4926;4919:12;4881:2;4972:1;4997:53;5042:7;5033:6;5022:9;5018:22;4997:53;:::i;:::-;4987:63;;4943:117;5099:2;5125:50;5167:7;5158:6;5147:9;5143:22;5125:50;:::i;:::-;5115:60;;5070:115;4871:321;;;;;:::o;5198:407::-;5266:6;5274;5323:2;5311:9;5302:7;5298:23;5294:32;5291:2;;;5339:1;5336;5329:12;5291:2;5382:1;5407:53;5452:7;5443:6;5432:9;5428:22;5407:53;:::i;:::-;5397:63;;5353:117;5509:2;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5480:118;5281:324;;;;;:::o;5611:481::-;5725:6;5733;5782:2;5770:9;5761:7;5757:23;5753:32;5750:2;;;5798:1;5795;5788:12;5750:2;5869:1;5858:9;5854:17;5841:31;5899:18;5891:6;5888:30;5885:2;;;5931:1;5928;5921:12;5885:2;5967:108;6067:7;6058:6;6047:9;6043:22;5967:108;:::i;:::-;5949:126;;;;5812:273;5740:352;;;;;:::o;6098:260::-;6156:6;6205:2;6193:9;6184:7;6180:23;6176:32;6173:2;;;6221:1;6218;6211:12;6173:2;6264:1;6289:52;6333:7;6324:6;6313:9;6309:22;6289:52;:::i;:::-;6279:62;;6235:116;6163:195;;;;:::o;6364:282::-;6433:6;6482:2;6470:9;6461:7;6457:23;6453:32;6450:2;;;6498:1;6495;6488:12;6450:2;6541:1;6566:63;6621:7;6612:6;6601:9;6597:22;6566:63;:::i;:::-;6556:73;;6512:127;6440:206;;;;:::o;6652:375::-;6721:6;6770:2;6758:9;6749:7;6745:23;6741:32;6738:2;;;6786:1;6783;6776:12;6738:2;6857:1;6846:9;6842:17;6829:31;6887:18;6879:6;6876:30;6873:2;;;6919:1;6916;6909:12;6873:2;6947:63;7002:7;6993:6;6982:9;6978:22;6947:63;:::i;:::-;6937:73;;6800:220;6728:299;;;;:::o;7033:262::-;7092:6;7141:2;7129:9;7120:7;7116:23;7112:32;7109:2;;;7157:1;7154;7147:12;7109:2;7200:1;7225:53;7270:7;7261:6;7250:9;7246:22;7225:53;:::i;:::-;7215:63;;7171:117;7099:196;;;;:::o;7301:284::-;7371:6;7420:2;7408:9;7399:7;7395:23;7391:32;7388:2;;;7436:1;7433;7426:12;7388:2;7479:1;7504:64;7560:7;7551:6;7540:9;7536:22;7504:64;:::i;:::-;7494:74;;7450:128;7378:207;;;;:::o;7591:407::-;7659:6;7667;7716:2;7704:9;7695:7;7691:23;7687:32;7684:2;;;7732:1;7729;7722:12;7684:2;7775:1;7800:53;7845:7;7836:6;7825:9;7821:22;7800:53;:::i;:::-;7790:63;;7746:117;7902:2;7928:53;7973:7;7964:6;7953:9;7949:22;7928:53;:::i;:::-;7918:63;;7873:118;7674:324;;;;;:::o;8004:260::-;8062:6;8111:2;8099:9;8090:7;8086:23;8082:32;8079:2;;;8127:1;8124;8117:12;8079:2;8170:1;8195:52;8239:7;8230:6;8219:9;8215:22;8195:52;:::i;:::-;8185:62;;8141:116;8069:195;;;;:::o;8270:118::-;8357:24;8375:5;8357:24;:::i;:::-;8352:3;8345:37;8335:53;;:::o;8394:109::-;8475:21;8490:5;8475:21;:::i;:::-;8470:3;8463:34;8453:50;;:::o;8509:360::-;8595:3;8623:38;8655:5;8623:38;:::i;:::-;8677:70;8740:6;8735:3;8677:70;:::i;:::-;8670:77;;8756:52;8801:6;8796:3;8789:4;8782:5;8778:16;8756:52;:::i;:::-;8833:29;8855:6;8833:29;:::i;:::-;8828:3;8824:39;8817:46;;8599:270;;;;;:::o;8875:364::-;8963:3;8991:39;9024:5;8991:39;:::i;:::-;9046:71;9110:6;9105:3;9046:71;:::i;:::-;9039:78;;9126:52;9171:6;9166:3;9159:4;9152:5;9148:16;9126:52;:::i;:::-;9203:29;9225:6;9203:29;:::i;:::-;9198:3;9194:39;9187:46;;8967:272;;;;;:::o;9245:377::-;9351:3;9379:39;9412:5;9379:39;:::i;:::-;9434:89;9516:6;9511:3;9434:89;:::i;:::-;9427:96;;9532:52;9577:6;9572:3;9565:4;9558:5;9554:16;9532:52;:::i;:::-;9609:6;9604:3;9600:16;9593:23;;9355:267;;;;;:::o;9628:366::-;9770:3;9791:67;9855:2;9850:3;9791:67;:::i;:::-;9784:74;;9867:93;9956:3;9867:93;:::i;:::-;9985:2;9980:3;9976:12;9969:19;;9774:220;;;:::o;10000:366::-;10142:3;10163:67;10227:2;10222:3;10163:67;:::i;:::-;10156:74;;10239:93;10328:3;10239:93;:::i;:::-;10357:2;10352:3;10348:12;10341:19;;10146:220;;;:::o;10372:366::-;10514:3;10535:67;10599:2;10594:3;10535:67;:::i;:::-;10528:74;;10611:93;10700:3;10611:93;:::i;:::-;10729:2;10724:3;10720:12;10713:19;;10518:220;;;:::o;10744:365::-;10886:3;10907:66;10971:1;10966:3;10907:66;:::i;:::-;10900:73;;10982:93;11071:3;10982:93;:::i;:::-;11100:2;11095:3;11091:12;11084:19;;10890:219;;;:::o;11115:366::-;11257:3;11278:67;11342:2;11337:3;11278:67;:::i;:::-;11271:74;;11354:93;11443:3;11354:93;:::i;:::-;11472:2;11467:3;11463:12;11456:19;;11261:220;;;:::o;11487:366::-;11629:3;11650:67;11714:2;11709:3;11650:67;:::i;:::-;11643:74;;11726:93;11815:3;11726:93;:::i;:::-;11844:2;11839:3;11835:12;11828:19;;11633:220;;;:::o;11859:366::-;12001:3;12022:67;12086:2;12081:3;12022:67;:::i;:::-;12015:74;;12098:93;12187:3;12098:93;:::i;:::-;12216:2;12211:3;12207:12;12200:19;;12005:220;;;:::o;12231:366::-;12373:3;12394:67;12458:2;12453:3;12394:67;:::i;:::-;12387:74;;12470:93;12559:3;12470:93;:::i;:::-;12588:2;12583:3;12579:12;12572:19;;12377:220;;;:::o;12603:366::-;12745:3;12766:67;12830:2;12825:3;12766:67;:::i;:::-;12759:74;;12842:93;12931:3;12842:93;:::i;:::-;12960:2;12955:3;12951:12;12944:19;;12749:220;;;:::o;12975:366::-;13117:3;13138:67;13202:2;13197:3;13138:67;:::i;:::-;13131:74;;13214:93;13303:3;13214:93;:::i;:::-;13332:2;13327:3;13323:12;13316:19;;13121:220;;;:::o;13347:366::-;13489:3;13510:67;13574:2;13569:3;13510:67;:::i;:::-;13503:74;;13586:93;13675:3;13586:93;:::i;:::-;13704:2;13699:3;13695:12;13688:19;;13493:220;;;:::o;13719:366::-;13861:3;13882:67;13946:2;13941:3;13882:67;:::i;:::-;13875:74;;13958:93;14047:3;13958:93;:::i;:::-;14076:2;14071:3;14067:12;14060:19;;13865:220;;;:::o;14091:366::-;14233:3;14254:67;14318:2;14313:3;14254:67;:::i;:::-;14247:74;;14330:93;14419:3;14330:93;:::i;:::-;14448:2;14443:3;14439:12;14432:19;;14237:220;;;:::o;14463:366::-;14605:3;14626:67;14690:2;14685:3;14626:67;:::i;:::-;14619:74;;14702:93;14791:3;14702:93;:::i;:::-;14820:2;14815:3;14811:12;14804:19;;14609:220;;;:::o;14835:366::-;14977:3;14998:67;15062:2;15057:3;14998:67;:::i;:::-;14991:74;;15074:93;15163:3;15074:93;:::i;:::-;15192:2;15187:3;15183:12;15176:19;;14981:220;;;:::o;15207:366::-;15349:3;15370:67;15434:2;15429:3;15370:67;:::i;:::-;15363:74;;15446:93;15535:3;15446:93;:::i;:::-;15564:2;15559:3;15555:12;15548:19;;15353:220;;;:::o;15579:366::-;15721:3;15742:67;15806:2;15801:3;15742:67;:::i;:::-;15735:74;;15818:93;15907:3;15818:93;:::i;:::-;15936:2;15931:3;15927:12;15920:19;;15725:220;;;:::o;15951:366::-;16093:3;16114:67;16178:2;16173:3;16114:67;:::i;:::-;16107:74;;16190:93;16279:3;16190:93;:::i;:::-;16308:2;16303:3;16299:12;16292:19;;16097:220;;;:::o;16323:366::-;16465:3;16486:67;16550:2;16545:3;16486:67;:::i;:::-;16479:74;;16562:93;16651:3;16562:93;:::i;:::-;16680:2;16675:3;16671:12;16664:19;;16469:220;;;:::o;16695:366::-;16837:3;16858:67;16922:2;16917:3;16858:67;:::i;:::-;16851:74;;16934:93;17023:3;16934:93;:::i;:::-;17052:2;17047:3;17043:12;17036:19;;16841:220;;;:::o;17067:366::-;17209:3;17230:67;17294:2;17289:3;17230:67;:::i;:::-;17223:74;;17306:93;17395:3;17306:93;:::i;:::-;17424:2;17419:3;17415:12;17408:19;;17213:220;;;:::o;17439:366::-;17581:3;17602:67;17666:2;17661:3;17602:67;:::i;:::-;17595:74;;17678:93;17767:3;17678:93;:::i;:::-;17796:2;17791:3;17787:12;17780:19;;17585:220;;;:::o;17811:366::-;17953:3;17974:67;18038:2;18033:3;17974:67;:::i;:::-;17967:74;;18050:93;18139:3;18050:93;:::i;:::-;18168:2;18163:3;18159:12;18152:19;;17957:220;;;:::o;18183:366::-;18325:3;18346:67;18410:2;18405:3;18346:67;:::i;:::-;18339:74;;18422:93;18511:3;18422:93;:::i;:::-;18540:2;18535:3;18531:12;18524:19;;18329:220;;;:::o;18555:366::-;18697:3;18718:67;18782:2;18777:3;18718:67;:::i;:::-;18711:74;;18794:93;18883:3;18794:93;:::i;:::-;18912:2;18907:3;18903:12;18896:19;;18701:220;;;:::o;18927:366::-;19069:3;19090:67;19154:2;19149:3;19090:67;:::i;:::-;19083:74;;19166:93;19255:3;19166:93;:::i;:::-;19284:2;19279:3;19275:12;19268:19;;19073:220;;;:::o;19299:398::-;19458:3;19479:83;19560:1;19555:3;19479:83;:::i;:::-;19472:90;;19571:93;19660:3;19571:93;:::i;:::-;19689:1;19684:3;19680:11;19673:18;;19462:235;;;:::o;19703:366::-;19845:3;19866:67;19930:2;19925:3;19866:67;:::i;:::-;19859:74;;19942:93;20031:3;19942:93;:::i;:::-;20060:2;20055:3;20051:12;20044:19;;19849:220;;;:::o;20075:366::-;20217:3;20238:67;20302:2;20297:3;20238:67;:::i;:::-;20231:74;;20314:93;20403:3;20314:93;:::i;:::-;20432:2;20427:3;20423:12;20416:19;;20221:220;;;:::o;20447:366::-;20589:3;20610:67;20674:2;20669:3;20610:67;:::i;:::-;20603:74;;20686:93;20775:3;20686:93;:::i;:::-;20804:2;20799:3;20795:12;20788:19;;20593:220;;;:::o;20819:366::-;20961:3;20982:67;21046:2;21041:3;20982:67;:::i;:::-;20975:74;;21058:93;21147:3;21058:93;:::i;:::-;21176:2;21171:3;21167:12;21160:19;;20965:220;;;:::o;21191:366::-;21333:3;21354:67;21418:2;21413:3;21354:67;:::i;:::-;21347:74;;21430:93;21519:3;21430:93;:::i;:::-;21548:2;21543:3;21539:12;21532:19;;21337:220;;;:::o;21563:366::-;21705:3;21726:67;21790:2;21785:3;21726:67;:::i;:::-;21719:74;;21802:93;21891:3;21802:93;:::i;:::-;21920:2;21915:3;21911:12;21904:19;;21709:220;;;:::o;21935:366::-;22077:3;22098:67;22162:2;22157:3;22098:67;:::i;:::-;22091:74;;22174:93;22263:3;22174:93;:::i;:::-;22292:2;22287:3;22283:12;22276:19;;22081:220;;;:::o;22307:366::-;22449:3;22470:67;22534:2;22529:3;22470:67;:::i;:::-;22463:74;;22546:93;22635:3;22546:93;:::i;:::-;22664:2;22659:3;22655:12;22648:19;;22453:220;;;:::o;22679:366::-;22821:3;22842:67;22906:2;22901:3;22842:67;:::i;:::-;22835:74;;22918:93;23007:3;22918:93;:::i;:::-;23036:2;23031:3;23027:12;23020:19;;22825:220;;;:::o;23051:366::-;23193:3;23214:67;23278:2;23273:3;23214:67;:::i;:::-;23207:74;;23290:93;23379:3;23290:93;:::i;:::-;23408:2;23403:3;23399:12;23392:19;;23197:220;;;:::o;23423:118::-;23510:24;23528:5;23510:24;:::i;:::-;23505:3;23498:37;23488:53;;:::o;23547:115::-;23632:23;23649:5;23632:23;:::i;:::-;23627:3;23620:36;23610:52;;:::o;23668:435::-;23848:3;23870:95;23961:3;23952:6;23870:95;:::i;:::-;23863:102;;23982:95;24073:3;24064:6;23982:95;:::i;:::-;23975:102;;24094:3;24087:10;;23852:251;;;;;:::o;24109:379::-;24293:3;24315:147;24458:3;24315:147;:::i;:::-;24308:154;;24479:3;24472:10;;24297:191;;;:::o;24494:222::-;24587:4;24625:2;24614:9;24610:18;24602:26;;24638:71;24706:1;24695:9;24691:17;24682:6;24638:71;:::i;:::-;24592:124;;;;:::o;24722:640::-;24917:4;24955:3;24944:9;24940:19;24932:27;;24969:71;25037:1;25026:9;25022:17;25013:6;24969:71;:::i;:::-;25050:72;25118:2;25107:9;25103:18;25094:6;25050:72;:::i;:::-;25132;25200:2;25189:9;25185:18;25176:6;25132:72;:::i;:::-;25251:9;25245:4;25241:20;25236:2;25225:9;25221:18;25214:48;25279:76;25350:4;25341:6;25279:76;:::i;:::-;25271:84;;24922:440;;;;;;;:::o;25368:210::-;25455:4;25493:2;25482:9;25478:18;25470:26;;25506:65;25568:1;25557:9;25553:17;25544:6;25506:65;:::i;:::-;25460:118;;;;:::o;25584:313::-;25697:4;25735:2;25724:9;25720:18;25712:26;;25784:9;25778:4;25774:20;25770:1;25759:9;25755:17;25748:47;25812:78;25885:4;25876:6;25812:78;:::i;:::-;25804:86;;25702:195;;;;:::o;25903:419::-;26069:4;26107:2;26096:9;26092:18;26084:26;;26156:9;26150:4;26146:20;26142:1;26131:9;26127:17;26120:47;26184:131;26310:4;26184:131;:::i;:::-;26176:139;;26074:248;;;:::o;26328:419::-;26494:4;26532:2;26521:9;26517:18;26509:26;;26581:9;26575:4;26571:20;26567:1;26556:9;26552:17;26545:47;26609:131;26735:4;26609:131;:::i;:::-;26601:139;;26499:248;;;:::o;26753:419::-;26919:4;26957:2;26946:9;26942:18;26934:26;;27006:9;27000:4;26996:20;26992:1;26981:9;26977:17;26970:47;27034:131;27160:4;27034:131;:::i;:::-;27026:139;;26924:248;;;:::o;27178:419::-;27344:4;27382:2;27371:9;27367:18;27359:26;;27431:9;27425:4;27421:20;27417:1;27406:9;27402:17;27395:47;27459:131;27585:4;27459:131;:::i;:::-;27451:139;;27349:248;;;:::o;27603:419::-;27769:4;27807:2;27796:9;27792:18;27784:26;;27856:9;27850:4;27846:20;27842:1;27831:9;27827:17;27820:47;27884:131;28010:4;27884:131;:::i;:::-;27876:139;;27774:248;;;:::o;28028:419::-;28194:4;28232:2;28221:9;28217:18;28209:26;;28281:9;28275:4;28271:20;28267:1;28256:9;28252:17;28245:47;28309:131;28435:4;28309:131;:::i;:::-;28301:139;;28199:248;;;:::o;28453:419::-;28619:4;28657:2;28646:9;28642:18;28634:26;;28706:9;28700:4;28696:20;28692:1;28681:9;28677:17;28670:47;28734:131;28860:4;28734:131;:::i;:::-;28726:139;;28624:248;;;:::o;28878:419::-;29044:4;29082:2;29071:9;29067:18;29059:26;;29131:9;29125:4;29121:20;29117:1;29106:9;29102:17;29095:47;29159:131;29285:4;29159:131;:::i;:::-;29151:139;;29049:248;;;:::o;29303:419::-;29469:4;29507:2;29496:9;29492:18;29484:26;;29556:9;29550:4;29546:20;29542:1;29531:9;29527:17;29520:47;29584:131;29710:4;29584:131;:::i;:::-;29576:139;;29474:248;;;:::o;29728:419::-;29894:4;29932:2;29921:9;29917:18;29909:26;;29981:9;29975:4;29971:20;29967:1;29956:9;29952:17;29945:47;30009:131;30135:4;30009:131;:::i;:::-;30001:139;;29899:248;;;:::o;30153:419::-;30319:4;30357:2;30346:9;30342:18;30334:26;;30406:9;30400:4;30396:20;30392:1;30381:9;30377:17;30370:47;30434:131;30560:4;30434:131;:::i;:::-;30426:139;;30324:248;;;:::o;30578:419::-;30744:4;30782:2;30771:9;30767:18;30759:26;;30831:9;30825:4;30821:20;30817:1;30806:9;30802:17;30795:47;30859:131;30985:4;30859:131;:::i;:::-;30851:139;;30749:248;;;:::o;31003:419::-;31169:4;31207:2;31196:9;31192:18;31184:26;;31256:9;31250:4;31246:20;31242:1;31231:9;31227:17;31220:47;31284:131;31410:4;31284:131;:::i;:::-;31276:139;;31174:248;;;:::o;31428:419::-;31594:4;31632:2;31621:9;31617:18;31609:26;;31681:9;31675:4;31671:20;31667:1;31656:9;31652:17;31645:47;31709:131;31835:4;31709:131;:::i;:::-;31701:139;;31599:248;;;:::o;31853:419::-;32019:4;32057:2;32046:9;32042:18;32034:26;;32106:9;32100:4;32096:20;32092:1;32081:9;32077:17;32070:47;32134:131;32260:4;32134:131;:::i;:::-;32126:139;;32024:248;;;:::o;32278:419::-;32444:4;32482:2;32471:9;32467:18;32459:26;;32531:9;32525:4;32521:20;32517:1;32506:9;32502:17;32495:47;32559:131;32685:4;32559:131;:::i;:::-;32551:139;;32449:248;;;:::o;32703:419::-;32869:4;32907:2;32896:9;32892:18;32884:26;;32956:9;32950:4;32946:20;32942:1;32931:9;32927:17;32920:47;32984:131;33110:4;32984:131;:::i;:::-;32976:139;;32874:248;;;:::o;33128:419::-;33294:4;33332:2;33321:9;33317:18;33309:26;;33381:9;33375:4;33371:20;33367:1;33356:9;33352:17;33345:47;33409:131;33535:4;33409:131;:::i;:::-;33401:139;;33299:248;;;:::o;33553:419::-;33719:4;33757:2;33746:9;33742:18;33734:26;;33806:9;33800:4;33796:20;33792:1;33781:9;33777:17;33770:47;33834:131;33960:4;33834:131;:::i;:::-;33826:139;;33724:248;;;:::o;33978:419::-;34144:4;34182:2;34171:9;34167:18;34159:26;;34231:9;34225:4;34221:20;34217:1;34206:9;34202:17;34195:47;34259:131;34385:4;34259:131;:::i;:::-;34251:139;;34149:248;;;:::o;34403:419::-;34569:4;34607:2;34596:9;34592:18;34584:26;;34656:9;34650:4;34646:20;34642:1;34631:9;34627:17;34620:47;34684:131;34810:4;34684:131;:::i;:::-;34676:139;;34574:248;;;:::o;34828:419::-;34994:4;35032:2;35021:9;35017:18;35009:26;;35081:9;35075:4;35071:20;35067:1;35056:9;35052:17;35045:47;35109:131;35235:4;35109:131;:::i;:::-;35101:139;;34999:248;;;:::o;35253:419::-;35419:4;35457:2;35446:9;35442:18;35434:26;;35506:9;35500:4;35496:20;35492:1;35481:9;35477:17;35470:47;35534:131;35660:4;35534:131;:::i;:::-;35526:139;;35424:248;;;:::o;35678:419::-;35844:4;35882:2;35871:9;35867:18;35859:26;;35931:9;35925:4;35921:20;35917:1;35906:9;35902:17;35895:47;35959:131;36085:4;35959:131;:::i;:::-;35951:139;;35849:248;;;:::o;36103:419::-;36269:4;36307:2;36296:9;36292:18;36284:26;;36356:9;36350:4;36346:20;36342:1;36331:9;36327:17;36320:47;36384:131;36510:4;36384:131;:::i;:::-;36376:139;;36274:248;;;:::o;36528:419::-;36694:4;36732:2;36721:9;36717:18;36709:26;;36781:9;36775:4;36771:20;36767:1;36756:9;36752:17;36745:47;36809:131;36935:4;36809:131;:::i;:::-;36801:139;;36699:248;;;:::o;36953:419::-;37119:4;37157:2;37146:9;37142:18;37134:26;;37206:9;37200:4;37196:20;37192:1;37181:9;37177:17;37170:47;37234:131;37360:4;37234:131;:::i;:::-;37226:139;;37124:248;;;:::o;37378:419::-;37544:4;37582:2;37571:9;37567:18;37559:26;;37631:9;37625:4;37621:20;37617:1;37606:9;37602:17;37595:47;37659:131;37785:4;37659:131;:::i;:::-;37651:139;;37549:248;;;:::o;37803:419::-;37969:4;38007:2;37996:9;37992:18;37984:26;;38056:9;38050:4;38046:20;38042:1;38031:9;38027:17;38020:47;38084:131;38210:4;38084:131;:::i;:::-;38076:139;;37974:248;;;:::o;38228:419::-;38394:4;38432:2;38421:9;38417:18;38409:26;;38481:9;38475:4;38471:20;38467:1;38456:9;38452:17;38445:47;38509:131;38635:4;38509:131;:::i;:::-;38501:139;;38399:248;;;:::o;38653:419::-;38819:4;38857:2;38846:9;38842:18;38834:26;;38906:9;38900:4;38896:20;38892:1;38881:9;38877:17;38870:47;38934:131;39060:4;38934:131;:::i;:::-;38926:139;;38824:248;;;:::o;39078:419::-;39244:4;39282:2;39271:9;39267:18;39259:26;;39331:9;39325:4;39321:20;39317:1;39306:9;39302:17;39295:47;39359:131;39485:4;39359:131;:::i;:::-;39351:139;;39249:248;;;:::o;39503:419::-;39669:4;39707:2;39696:9;39692:18;39684:26;;39756:9;39750:4;39746:20;39742:1;39731:9;39727:17;39720:47;39784:131;39910:4;39784:131;:::i;:::-;39776:139;;39674:248;;;:::o;39928:419::-;40094:4;40132:2;40121:9;40117:18;40109:26;;40181:9;40175:4;40171:20;40167:1;40156:9;40152:17;40145:47;40209:131;40335:4;40209:131;:::i;:::-;40201:139;;40099:248;;;:::o;40353:419::-;40519:4;40557:2;40546:9;40542:18;40534:26;;40606:9;40600:4;40596:20;40592:1;40581:9;40577:17;40570:47;40634:131;40760:4;40634:131;:::i;:::-;40626:139;;40524:248;;;:::o;40778:419::-;40944:4;40982:2;40971:9;40967:18;40959:26;;41031:9;41025:4;41021:20;41017:1;41006:9;41002:17;40995:47;41059:131;41185:4;41059:131;:::i;:::-;41051:139;;40949:248;;;:::o;41203:222::-;41296:4;41334:2;41323:9;41319:18;41311:26;;41347:71;41415:1;41404:9;41400:17;41391:6;41347:71;:::i;:::-;41301:124;;;;:::o;41431:218::-;41522:4;41560:2;41549:9;41545:18;41537:26;;41573:69;41639:1;41628:9;41624:17;41615:6;41573:69;:::i;:::-;41527:122;;;;:::o;41655:129::-;41689:6;41716:20;;:::i;:::-;41706:30;;41745:33;41773:4;41765:6;41745:33;:::i;:::-;41696:88;;;:::o;41790:75::-;41823:6;41856:2;41850:9;41840:19;;41830:35;:::o;41871:307::-;41932:4;42022:18;42014:6;42011:30;42008:2;;;42044:18;;:::i;:::-;42008:2;42082:29;42104:6;42082:29;:::i;:::-;42074:37;;42166:4;42160;42156:15;42148:23;;41937:241;;;:::o;42184:308::-;42246:4;42336:18;42328:6;42325:30;42322:2;;;42358:18;;:::i;:::-;42322:2;42396:29;42418:6;42396:29;:::i;:::-;42388:37;;42480:4;42474;42470:15;42462:23;;42251:241;;;:::o;42498:98::-;42549:6;42583:5;42577:12;42567:22;;42556:40;;;:::o;42602:99::-;42654:6;42688:5;42682:12;42672:22;;42661:40;;;:::o;42707:168::-;42790:11;42824:6;42819:3;42812:19;42864:4;42859:3;42855:14;42840:29;;42802:73;;;;:::o;42881:147::-;42982:11;43019:3;43004:18;;42994:34;;;;:::o;43034:169::-;43118:11;43152:6;43147:3;43140:19;43192:4;43187:3;43183:14;43168:29;;43130:73;;;;:::o;43209:148::-;43311:11;43348:3;43333:18;;43323:34;;;;:::o;43363:305::-;43403:3;43422:20;43440:1;43422:20;:::i;:::-;43417:25;;43456:20;43474:1;43456:20;:::i;:::-;43451:25;;43610:1;43542:66;43538:74;43535:1;43532:81;43529:2;;;43616:18;;:::i;:::-;43529:2;43660:1;43657;43653:9;43646:16;;43407:261;;;;:::o;43674:185::-;43714:1;43731:20;43749:1;43731:20;:::i;:::-;43726:25;;43765:20;43783:1;43765:20;:::i;:::-;43760:25;;43804:1;43794:2;;43809:18;;:::i;:::-;43794:2;43851:1;43848;43844:9;43839:14;;43716:143;;;;:::o;43865:348::-;43905:7;43928:20;43946:1;43928:20;:::i;:::-;43923:25;;43962:20;43980:1;43962:20;:::i;:::-;43957:25;;44150:1;44082:66;44078:74;44075:1;44072:81;44067:1;44060:9;44053:17;44049:105;44046:2;;;44157:18;;:::i;:::-;44046:2;44205:1;44202;44198:9;44187:20;;43913:300;;;;:::o;44219:191::-;44259:4;44279:20;44297:1;44279:20;:::i;:::-;44274:25;;44313:20;44331:1;44313:20;:::i;:::-;44308:25;;44352:1;44349;44346:8;44343:2;;;44357:18;;:::i;:::-;44343:2;44402:1;44399;44395:9;44387:17;;44264:146;;;;:::o;44416:96::-;44453:7;44482:24;44500:5;44482:24;:::i;:::-;44471:35;;44461:51;;;:::o;44518:90::-;44552:7;44595:5;44588:13;44581:21;44570:32;;44560:48;;;:::o;44614:149::-;44650:7;44690:66;44683:5;44679:78;44668:89;;44658:105;;;:::o;44769:126::-;44806:7;44846:42;44839:5;44835:54;44824:65;;44814:81;;;:::o;44901:77::-;44938:7;44967:5;44956:16;;44946:32;;;:::o;44984:93::-;45020:7;45060:10;45053:5;45049:22;45038:33;;45028:49;;;:::o;45083:154::-;45167:6;45162:3;45157;45144:30;45229:1;45220:6;45215:3;45211:16;45204:27;45134:103;;;:::o;45243:307::-;45311:1;45321:113;45335:6;45332:1;45329:13;45321:113;;;45420:1;45415:3;45411:11;45405:18;45401:1;45396:3;45392:11;45385:39;45357:2;45354:1;45350:10;45345:15;;45321:113;;;45452:6;45449:1;45446:13;45443:2;;;45532:1;45523:6;45518:3;45514:16;45507:27;45443:2;45292:258;;;;:::o;45556:320::-;45600:6;45637:1;45631:4;45627:12;45617:22;;45684:1;45678:4;45674:12;45705:18;45695:2;;45761:4;45753:6;45749:17;45739:27;;45695:2;45823;45815:6;45812:14;45792:18;45789:38;45786:2;;;45842:18;;:::i;:::-;45786:2;45607:269;;;;:::o;45882:281::-;45965:27;45987:4;45965:27;:::i;:::-;45957:6;45953:40;46095:6;46083:10;46080:22;46059:18;46047:10;46044:34;46041:62;46038:2;;;46106:18;;:::i;:::-;46038:2;46146:10;46142:2;46135:22;45925:238;;;:::o;46169:233::-;46208:3;46231:24;46249:5;46231:24;:::i;:::-;46222:33;;46277:66;46270:5;46267:77;46264:2;;;46347:18;;:::i;:::-;46264:2;46394:1;46387:5;46383:13;46376:20;;46212:190;;;:::o;46408:176::-;46440:1;46457:20;46475:1;46457:20;:::i;:::-;46452:25;;46491:20;46509:1;46491:20;:::i;:::-;46486:25;;46530:1;46520:2;;46535:18;;:::i;:::-;46520:2;46576:1;46573;46569:9;46564:14;;46442:142;;;;:::o;46590:180::-;46638:77;46635:1;46628:88;46735:4;46732:1;46725:15;46759:4;46756:1;46749:15;46776:180;46824:77;46821:1;46814:88;46921:4;46918:1;46911:15;46945:4;46942:1;46935:15;46962:180;47010:77;47007:1;47000:88;47107:4;47104:1;47097:15;47131:4;47128:1;47121:15;47148:180;47196:77;47193:1;47186:88;47293:4;47290:1;47283:15;47317:4;47314:1;47307:15;47334:102;47375:6;47426:2;47422:7;47417:2;47410:5;47406:14;47402:28;47392:38;;47382:54;;;:::o;47442:221::-;47582:34;47578:1;47570:6;47566:14;47559:58;47651:4;47646:2;47638:6;47634:15;47627:29;47548:115;:::o;47669:181::-;47809:33;47805:1;47797:6;47793:14;47786:57;47775:75;:::o;47856:171::-;47996:23;47992:1;47984:6;47980:14;47973:47;47962:65;:::o;48033:158::-;48173:10;48169:1;48161:6;48157:14;48150:34;48139:52;:::o;48197:225::-;48337:34;48333:1;48325:6;48321:14;48314:58;48406:8;48401:2;48393:6;48389:15;48382:33;48303:119;:::o;48428:229::-;48568:34;48564:1;48556:6;48552:14;48545:58;48637:12;48632:2;48624:6;48620:15;48613:37;48534:123;:::o;48663:231::-;48803:34;48799:1;48791:6;48787:14;48780:58;48872:14;48867:2;48859:6;48855:15;48848:39;48769:125;:::o;48900:174::-;49040:26;49036:1;49028:6;49024:14;49017:50;49006:68;:::o;49080:222::-;49220:34;49216:1;49208:6;49204:14;49197:58;49289:5;49284:2;49276:6;49272:15;49265:30;49186:116;:::o;49308:224::-;49448:34;49444:1;49436:6;49432:14;49425:58;49517:7;49512:2;49504:6;49500:15;49493:32;49414:118;:::o;49538:245::-;49678:34;49674:1;49666:6;49662:14;49655:58;49747:28;49742:2;49734:6;49730:15;49723:53;49644:139;:::o;49789:179::-;49929:31;49925:1;49917:6;49913:14;49906:55;49895:73;:::o;49974:173::-;50114:25;50110:1;50102:6;50098:14;50091:49;50080:67;:::o;50153:244::-;50293:34;50289:1;50281:6;50277:14;50270:58;50362:27;50357:2;50349:6;50345:15;50338:52;50259:138;:::o;50403:230::-;50543:34;50539:1;50531:6;50527:14;50520:58;50612:13;50607:2;50599:6;50595:15;50588:38;50509:124;:::o;50639:225::-;50779:34;50775:1;50767:6;50763:14;50756:58;50848:8;50843:2;50835:6;50831:15;50824:33;50745:119;:::o;50870:182::-;51010:34;51006:1;50998:6;50994:14;50987:58;50976:76;:::o;51058:234::-;51198:34;51194:1;51186:6;51182:14;51175:58;51267:17;51262:2;51254:6;51250:15;51243:42;51164:128;:::o;51298:176::-;51438:28;51434:1;51426:6;51422:14;51415:52;51404:70;:::o;51480:237::-;51620:34;51616:1;51608:6;51604:14;51597:58;51689:20;51684:2;51676:6;51672:15;51665:45;51586:131;:::o;51723:175::-;51863:27;51859:1;51851:6;51847:14;51840:51;51829:69;:::o;51904:168::-;52044:20;52040:1;52032:6;52028:14;52021:44;52010:62;:::o;52078:177::-;52218:29;52214:1;52206:6;52202:14;52195:53;52184:71;:::o;52261:177::-;52401:29;52397:1;52389:6;52385:14;52378:53;52367:71;:::o;52444:170::-;52584:22;52580:1;52572:6;52568:14;52561:46;52550:64;:::o;52620:221::-;52760:34;52756:1;52748:6;52744:14;52737:58;52829:4;52824:2;52816:6;52812:15;52805:29;52726:115;:::o;52847:114::-;52953:8;:::o;52967:181::-;53107:33;53103:1;53095:6;53091:14;53084:57;53073:75;:::o;53154:238::-;53294:34;53290:1;53282:6;53278:14;53271:58;53363:21;53358:2;53350:6;53346:15;53339:46;53260:132;:::o;53398:220::-;53538:34;53534:1;53526:6;53522:14;53515:58;53607:3;53602:2;53594:6;53590:15;53583:28;53504:114;:::o;53624:226::-;53764:34;53760:1;53752:6;53748:14;53741:58;53833:9;53828:2;53820:6;53816:15;53809:34;53730:120;:::o;53856:227::-;53996:34;53992:1;53984:6;53980:14;53973:58;54065:10;54060:2;54052:6;54048:15;54041:35;53962:121;:::o;54089:233::-;54229:34;54225:1;54217:6;54213:14;54206:58;54298:16;54293:2;54285:6;54281:15;54274:41;54195:127;:::o;54328:170::-;54468:22;54464:1;54456:6;54452:14;54445:46;54434:64;:::o;54504:220::-;54644:34;54640:1;54632:6;54628:14;54621:58;54713:3;54708:2;54700:6;54696:15;54689:28;54610:114;:::o;54730:234::-;54870:34;54866:1;54858:6;54854:14;54847:58;54939:17;54934:2;54926:6;54922:15;54915:42;54836:128;:::o;54970:232::-;55110:34;55106:1;55098:6;55094:14;55087:58;55179:15;55174:2;55166:6;55162:15;55155:40;55076:126;:::o;55208:122::-;55281:24;55299:5;55281:24;:::i;:::-;55274:5;55271:35;55261:2;;55320:1;55317;55310:12;55261:2;55251:79;:::o;55336:116::-;55406:21;55421:5;55406:21;:::i;:::-;55399:5;55396:32;55386:2;;55442:1;55439;55432:12;55386:2;55376:76;:::o;55458:120::-;55530:23;55547:5;55530:23;:::i;:::-;55523:5;55520:34;55510:2;;55568:1;55565;55558:12;55510:2;55500:78;:::o;55584:122::-;55657:24;55675:5;55657:24;:::i;:::-;55650:5;55647:35;55637:2;;55696:1;55693;55686:12;55637:2;55627:79;:::o;55712:120::-;55784:23;55801:5;55784:23;:::i;:::-;55777:5;55774:34;55764:2;;55822:1;55819;55812:12;55764:2;55754:78;:::o

Swarm Source

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