ETH Price: $3,259.85 (-0.47%)
Gas: 1 Gwei

Token

BabyZillaz (CZB)
 

Overview

Max Total Supply

110 CZB

Holders

20

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
8 CZB
0x3236cf4026c25142848261ae3857e901a98a1e04
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:
czBabyNft

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.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) {
                return prod0 / denominator;
            }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

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

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// File: @openzeppelin/contracts/token/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/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.8.0) (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: interfaces/iczBabyNft.sol



pragma solidity ^0.8.0;


interface iczBabyNft is IERC721Enumerable {

    // store lock meta data
    struct Locked {
        uint256 tokenId;
        uint256 lockTimestamp;
    }

    function MAX_TOKENS() external returns (uint256);
    function totalMinted() external returns (uint16);
    function totalLocked() external returns (uint16);

    function mint(address recipient) external; // onlyAdmin
    function burn(uint256 tokenId) external; // onlyAdmin

    function lock(uint256 tokenId) external; // onlyAdmin
    function unlock(uint256 tokenId) external; // onlyAdmin
    function refreshLock(uint256 tokenId) external; // onlyAdmin
    function getLock(uint256 tokenId) external view returns (Locked memory);
    function isLocked(uint256 tokenId) external view returns(bool);

    function getAllLockedTokens(address owner) external returns (uint256[] memory);
    function getWalletOfOwner(address owner) external view returns (uint256[] memory);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// File: interfaces/iczRoar.sol



pragma solidity ^0.8.13;


interface iczRoar is IERC20 {
    function MAX_TOKENS() external returns (uint256);
    function tokensMinted() external returns (uint256);
    function tokensBurned() external returns (uint256);
    function canBeSold() external returns (bool);

    function mint(address to, uint256 amount) external;
    function burn(address from, uint256 amount) external;
}
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256, /* firstTokenId */
        uint256 batchSize
    ) internal virtual {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}
}

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/czBabyNft.sol



pragma solidity ^0.8.13;








contract czBabyNft is iczBabyNft, ERC721Enumerable, IERC2981, Ownable, Pausable, ReentrancyGuard {

    constructor(address _czRoar) ERC721("BabyZillaz", "CZB") {
        czRoar = iczRoar(_czRoar);
        _pause();
    }

    /** EVENTS */
    event TokenMinted(address indexed owner, uint256 indexed tokenId);
    event TokenBurned(address indexed owner, uint256 indexed tokenId);
    event TokenTraitAdded(address indexed owner, uint256 indexed tokenId, uint16 indexed traitId);

    /** ERRORS */
    error OnlyAdmin();
    error NotLocked();
    error AlreadyLocked();
    error MaxSupplyReached();
    error SetRoyaltyAddress();
    
    //Contracts
    iczRoar public czRoar;

    /** PUBLIC VARS */
    // number of tokens have been minted, locked, staked & bridged so far
    uint16 public override totalMinted;
    uint16 public override totalLocked;
    uint256 public override MAX_TOKENS = 5555;
    uint256 public mintPrice = 250;
    uint256 private revealTime = 86400;
    // address which receives the royalties
    address public royaltyAddress;

    /** PRIVATE VARS */
    mapping(address => bool) private _admins;
    // uri for revealing nfts traits
    string private _tokenRevealedBaseURI;
    string private _tokenUnrevealedURI = "BabyZillaz_Awakening";
    // royalty permille (to support 1 decimal place)
    uint256 private _royaltyPermille = 100;
    // tokenId => Locked; map of all staked by tokenId
    mapping(uint256 => Locked) private _lockedByTokenId;
    // tokenId => timestamp; map of all mint times by tokenId
    mapping(uint256 => uint256) private _mintTimestamp;

    /** MODIFIERS */
    modifier onlyAdmin() {
        if(!_admins[_msgSender()]) revert OnlyAdmin();
        _;
    }
    function awaken() external whenNotPaused nonReentrant {
        czRoar.burn(_msgSender(), mintPrice * 1 ether);
        _mint(_msgSender());
    }


    /** ADMIN ONLY FUNCTIONS */
    function mint(address recipient) external override whenNotPaused nonReentrant onlyAdmin {
        _mint(recipient);
    }

    function _mint(address recipient) internal  {
        if(totalMinted + 1 > MAX_TOKENS) revert MaxSupplyReached();
        
        // increase mint counter and log mint timestamp
        _mintTimestamp[++totalMinted] = block.timestamp;

        // mint the BabyZillaz
        _safeMint(recipient, totalMinted);

        emit TokenMinted(recipient, totalMinted);
    }

    function burn(uint256 tokenId) external override whenNotPaused nonReentrant onlyAdmin {
        emit TokenBurned(ownerOf(tokenId), tokenId);
        _burn(tokenId);
    }

    function lock(uint256 tokenId) external override whenNotPaused nonReentrant onlyAdmin {
        if(_isLocked(tokenId)) revert AlreadyLocked();

        _lockedByTokenId[tokenId] = Locked({
            tokenId: tokenId,
            lockTimestamp: block.timestamp
        });
        
        totalLocked++;
    }

    function unlock(uint256 tokenId) external override whenNotPaused nonReentrant onlyAdmin {
        if(!_isLocked(tokenId)) revert NotLocked();

        // remove the lock
        delete _lockedByTokenId[tokenId];

        totalLocked--;
    }

    // updates only the timestamp and nothing else
    function refreshLock(uint256 tokenId) external override whenNotPaused onlyAdmin {
        if(!_isLocked(tokenId)) revert NotLocked();
        
        Locked memory myLock = _getLock(tokenId);
        myLock.lockTimestamp = block.timestamp;

        _lockedByTokenId[tokenId] = myLock;
    }

    /** PUBLIC FUNCTIONS */
    function royaltyInfo(uint256 tokenId, uint256 salePrice) external view override returns (address receiver, uint256 royaltyAmount) {
        return (royaltyAddress, salePrice * _royaltyPermille/1000);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721Enumerable, IERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), 'BabyZillaz: Token does not exist');
        if(block.timestamp - _mintTimestamp[tokenId] < revealTime)
            return string(abi.encodePacked(_tokenRevealedBaseURI, _tokenUnrevealedURI));
        return string(abi.encodePacked(_tokenRevealedBaseURI, Strings.toString(tokenId)));
    }

    function getLock(uint256 tokenId) external override view onlyAdmin returns (Locked memory) {
        return _getLock(tokenId);
    }
    function _getLock(uint256 tokenId) private view onlyAdmin returns (Locked memory) {
        if(!_isLocked(tokenId)) revert NotLocked();
        return _lockedByTokenId[tokenId];
    }

    function isLocked(uint256 tokenId) external override view returns(bool) {
        return _isLocked(tokenId);
    }
    function _isLocked(uint256 tokenId) private view returns(bool) {
        if (_lockedByTokenId[tokenId].tokenId == tokenId) return true;
        return false;
    }
    
    function getAllLockedTokens(address owner) external override view returns (uint256[] memory) {
        uint256 balanceOf = balanceOf(owner);
        uint256[] memory stakedTokenIds = new uint256[](balanceOf);
        uint16 stakedTokenIdsIndex = 0;

        for(uint16 i = 0; i < balanceOf; i++) {
            uint256 tokenId = tokenOfOwnerByIndex(owner, i);
            if (_isLocked(tokenId)) {
                stakedTokenIds[stakedTokenIdsIndex] = tokenId;
                stakedTokenIdsIndex++;
            } 
        }
        return stakedTokenIds;
    }

    function getWalletOfOwner(address owner) external override view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(owner);
        uint256[] memory traitIds = new uint256[](ownerTokenCount);

        for (uint256 i; i < ownerTokenCount; i++) {
            traitIds[i] = tokenOfOwnerByIndex(owner, i);
        }

        return traitIds;
    }

    /** OVERRIDE */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override(ERC721, IERC721) nonReentrant {
        if(_isLocked(tokenId)) revert AlreadyLocked();
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override(ERC721, IERC721) nonReentrant {
        if(_isLocked(tokenId)) revert AlreadyLocked();
        super.safeTransferFrom(from, to, tokenId, _data);
    }

    /** OWNER ONLY FUNCTIONS */
    function setRevealedBaseURI(string calldata uri) external onlyOwner {
        _tokenRevealedBaseURI = uri;
    }

    function setRevealTime(uint256 number) external onlyOwner {
        revealTime = number;
    }

    function setPaused(bool _paused) external onlyOwner {
        if(royaltyAddress == address(0)) revert SetRoyaltyAddress();
        if (_paused) _pause();
        else _unpause();
    }

    function setRoyaltyPermille(uint256 number) external onlyOwner {
        _royaltyPermille = number;
    }

    function setRoyaltyAddress(address addr) external onlyOwner {
        royaltyAddress = addr;
    }

    function setRoarContract(address _czRoar) external onlyOwner {
        czRoar = iczRoar(_czRoar);
    }

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

    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function addAdmin(address addr) external onlyOwner {
        _admins[addr] = true;
    }

    function removeAdmin(address addr) external onlyOwner {
        delete _admins[addr];
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_czRoar","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyLocked","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"NotLocked","type":"error"},{"inputs":[],"name":"OnlyAdmin","type":"error"},{"inputs":[],"name":"SetRoyaltyAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"uint16","name":"traitId","type":"uint16"}],"name":"TokenTraitAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"awaken","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":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"czRoar","outputs":[{"internalType":"contract iczRoar","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getAllLockedTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getLock","outputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"lockTimestamp","type":"uint256"}],"internalType":"struct iczBabyNft.Locked","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getWalletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"refreshLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"setRevealTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setRevealedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_czRoar","type":"address"}],"name":"setRoarContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setRoyaltyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"setRoyaltyPermille","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"totalLocked","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526115b3600d5560fa600e5562015180600f556040518060400160405280601481526020017f426162795a696c6c617a5f4177616b656e696e67000000000000000000000000815250601390816200005c9190620005eb565b5060646014553480156200006f57600080fd5b5060405162005bbe38038062005bbe83398181016040528101906200009591906200073c565b6040518060400160405280600a81526020017f426162795a696c6c617a000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f435a4200000000000000000000000000000000000000000000000000000000008152508160009081620001129190620005eb565b508060019081620001249190620005eb565b505050620001476200013b620001c260201b60201c565b620001ca60201b60201c565b6000600a60146101000a81548160ff0219169083151502179055506001600b8190555080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001bb6200029060201b60201c565b506200081f565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002a06200030560201b60201c565b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002ec620001c260201b60201c565b604051620002fb91906200077f565b60405180910390a1565b620003156200035a60201b60201c565b1562000358576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034f90620007fd565b60405180910390fd5b565b6000600a60149054906101000a900460ff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003f357607f821691505b602082108103620004095762000408620003ab565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000434565b6200047f868362000434565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004cc620004c6620004c08462000497565b620004a1565b62000497565b9050919050565b6000819050919050565b620004e883620004ab565b62000500620004f782620004d3565b84845462000441565b825550505050565b600090565b6200051762000508565b62000524818484620004dd565b505050565b5b818110156200054c57620005406000826200050d565b6001810190506200052a565b5050565b601f8211156200059b5762000565816200040f565b620005708462000424565b8101602085101562000580578190505b620005986200058f8562000424565b83018262000529565b50505b505050565b600082821c905092915050565b6000620005c060001984600802620005a0565b1980831691505092915050565b6000620005db8383620005ad565b9150826002028217905092915050565b620005f68262000371565b67ffffffffffffffff8111156200061257620006116200037c565b5b6200061e8254620003da565b6200062b82828562000550565b600060209050601f8311600181146200066357600084156200064e578287015190505b6200065a8582620005cd565b865550620006ca565b601f19841662000673866200040f565b60005b828110156200069d5784890151825560018201915060208501945060208101905062000676565b86831015620006bd5784890151620006b9601f891682620005ad565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200070482620006d7565b9050919050565b6200071681620006f7565b81146200072257600080fd5b50565b60008151905062000736816200070b565b92915050565b600060208284031215620007555762000754620006d2565b5b6000620007658482850162000725565b91505092915050565b6200077981620006f7565b82525050565b60006020820190506200079660008301846200076e565b92915050565b600082825260208201905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000620007e56010836200079c565b9150620007f282620007ad565b602082019050919050565b600060208201905081810360008301526200081881620007d6565b9050919050565b61538f806200082f6000396000f3fe608060405234801561001057600080fd5b50600436106102955760003560e01c80636817c76c11610167578063a78ee7e9116100ce578063dd46706411610087578063dd467064146107d1578063e985e9c5146107ed578063f2fde38b1461081d578063f47c84c514610839578063f4a0a52814610857578063f6aacfb11461087357610295565b8063a78ee7e9146106fd578063ad2f852a1461071b578063b88d4fde14610739578063c1e2850714610755578063c87b56dd14610771578063d68f4dd1146107a157610295565b80638da5cb5b116101205780638da5cb5b1461063b57806395d89b41146106595780639e05182b14610677578063a22cb46514610693578063a2309ff8146106af578063a2e9e9ef146106cd57610295565b80636817c76c1461058f5780636a627842146105ad5780636e83843a146105c957806370480275146105e557806370a0823114610601578063715018a61461063157610295565b80632e9f3f671161020b5780634f6ccce7116101c45780634f6ccce7146104a757806356891412146104d75780635c975abb146104f55780636198e33914610513578063627fdeab1461052f5780636352211e1461055f57610295565b80632e9f3f67146103fd5780632f745c5914610419578063342acc87146104495780633ccfd60b1461046557806342842e0e1461046f57806342966c681461048b57610295565b806315a4d8601161025d57806315a4d8601461035057806316c38b3c1461035a5780631785f53c1461037657806318160ddd1461039257806323b872dd146103b05780632a55205a146103cc57610295565b806301ffc9a71461029a57806306d254da146102ca57806306fdde03146102e6578063081812fc14610304578063095ea7b314610334575b600080fd5b6102b460048036038101906102af91906139ab565b6108a3565b6040516102c191906139f3565b60405180910390f35b6102e460048036038101906102df9190613a6c565b61091d565b005b6102ee610969565b6040516102fb9190613b29565b60405180910390f35b61031e60048036038101906103199190613b81565b6109fb565b60405161032b9190613bbd565b60405180910390f35b61034e60048036038101906103499190613bd8565b610a41565b005b610358610b58565b005b610374600480360381019061036f9190613c44565b610c2d565b005b610390600480360381019061038b9190613a6c565b610cdc565b005b61039a610d36565b6040516103a79190613c80565b60405180910390f35b6103ca60048036038101906103c59190613c9b565b610d43565b005b6103e660048036038101906103e19190613cee565b610da3565b6040516103f4929190613d2e565b60405180910390f35b61041760048036038101906104129190613b81565b610def565b005b610433600480360381019061042e9190613bd8565b610e01565b6040516104409190613c80565b60405180910390f35b610463600480360381019061045e9190613b81565b610ea6565b005b61046d610fbd565b005b61048960048036038101906104849190613c9b565b611015565b005b6104a560048036038101906104a09190613b81565b611035565b005b6104c160048036038101906104bc9190613b81565b61112f565b6040516104ce9190613c80565b60405180910390f35b6104df6111a0565b6040516104ec9190613d74565b60405180910390f35b6104fd6111b4565b60405161050a91906139f3565b60405180910390f35b61052d60048036038101906105289190613b81565b6111cb565b005b61054960048036038101906105449190613a6c565b611310565b6040516105569190613e4d565b60405180910390f35b61057960048036038101906105749190613b81565b6113be565b6040516105869190613bbd565b60405180910390f35b610597611444565b6040516105a49190613c80565b60405180910390f35b6105c760048036038101906105c29190613a6c565b61144a565b005b6105e360048036038101906105de9190613ed4565b6114f8565b005b6105ff60048036038101906105fa9190613a6c565b611516565b005b61061b60048036038101906106169190613a6c565b611579565b6040516106289190613c80565b60405180910390f35b610639611630565b005b610643611644565b6040516106509190613bbd565b60405180910390f35b61066161166e565b60405161066e9190613b29565b60405180910390f35b610691600480360381019061068c9190613a6c565b611700565b005b6106ad60048036038101906106a89190613f21565b61174c565b005b6106b7611762565b6040516106c49190613d74565b60405180910390f35b6106e760048036038101906106e29190613a6c565b611776565b6040516106f49190613e4d565b60405180910390f35b610705611855565b6040516107129190613fc0565b60405180910390f35b61072361187b565b6040516107309190613bbd565b60405180910390f35b610753600480360381019061074e919061410b565b6118a1565b005b61076f600480360381019061076a9190613b81565b611903565b005b61078b60048036038101906107869190613b81565b611915565b6040516107989190613b29565b60405180910390f35b6107bb60048036038101906107b69190613b81565b6119e5565b6040516107c891906141bd565b60405180910390f35b6107eb60048036038101906107e69190613b81565b611a87565b005b610807600480360381019061080291906141d8565b611be6565b60405161081491906139f3565b60405180910390f35b61083760048036038101906108329190613a6c565b611c7a565b005b610841611cfd565b60405161084e9190613c80565b60405180910390f35b610871600480360381019061086c9190613b81565b611d03565b005b61088d60048036038101906108889190613b81565b611d15565b60405161089a91906139f3565b60405180910390f35b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610916575061091582611d27565b5b9050919050565b610925611da1565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000805461097890614247565b80601f01602080910402602001604051908101604052809291908181526020018280546109a490614247565b80156109f15780601f106109c6576101008083540402835291602001916109f1565b820191906000526020600020905b8154815290600101906020018083116109d457829003601f168201915b5050505050905090565b6000610a0682611e1f565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4c826113be565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab3906142ea565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610adb611e6a565b73ffffffffffffffffffffffffffffffffffffffff161480610b0a5750610b0981610b04611e6a565b611be6565b5b610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b409061437c565b60405180910390fd5b610b538383611e72565b505050565b610b60611f2b565b610b68611f75565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac610bae611e6a565b670de0b6b3a7640000600e54610bc491906143cb565b6040518363ffffffff1660e01b8152600401610be1929190613d2e565b600060405180830381600087803b158015610bfb57600080fd5b505af1158015610c0f573d6000803e3d6000fd5b50505050610c23610c1e611e6a565b611fc4565b610c2b6120e9565b565b610c35611da1565b600073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610cbd576040517f0855d95800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015610cd057610ccb6120f3565b610cd9565b610cd8612156565b5b50565b610ce4611da1565b601160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905550565b6000600880549050905090565b610d4b611f75565b610d54816121b9565b15610d8b576040517f5f0ccd7c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d968383836121eb565b610d9e6120e9565b505050565b600080601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e860145485610dda91906143cb565b610de4919061443c565b915091509250929050565b610df7611da1565b8060148190555050565b6000610e0c83611579565b8210610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e44906144df565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610eae611f2b565b60116000610eba611e6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610f38576040517f4755657900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f41816121b9565b610f77576040517f1834e26500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f828261224b565b905042816020018181525050806015600084815260200190815260200160002060008201518160000155602082015181600101559050505050565b610fc5611da1565b610fcd611644565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611012573d6000803e3d6000fd5b50565b611030838383604051806020016040528060008152506118a1565b505050565b61103d611f2b565b611045611f75565b60116000611051611e6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166110cf576040517f4755657900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806110d9826113be565b73ffffffffffffffffffffffffffffffffffffffff167f1af5163f80e79b5e554f61e1d052084d3a3fe1166e42a265798c4e2ddce8ffa260405160405180910390a361112481612355565b61112c6120e9565b50565b6000611139610d36565b821061117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190614571565b60405180910390fd5b6008828154811061118e5761118d614591565b5b90600052602060002001549050919050565b600c60169054906101000a900461ffff1681565b6000600a60149054906101000a900460ff16905090565b6111d3611f2b565b6111db611f75565b601160006111e7611e6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611265576040517f4755657900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61126e816121b9565b6112a4576040517f1834e26500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6015600082815260200190815260200160002060008082016000905560018201600090555050600c601681819054906101000a900461ffff16809291906112ea906145c0565b91906101000a81548161ffff021916908361ffff1602179055505061130d6120e9565b50565b6060600061131d83611579565b905060008167ffffffffffffffff81111561133b5761133a613fe0565b5b6040519080825280602002602001820160405280156113695781602001602082028036833780820191505090505b50905060005b828110156113b3576113818582610e01565b82828151811061139457611393614591565b5b60200260200101818152505080806113ab906145e9565b91505061136f565b508092505050919050565b6000806113ca836124a3565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361143b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114329061467d565b60405180910390fd5b80915050919050565b600e5481565b611452611f2b565b61145a611f75565b60116000611466611e6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166114e4576040517f4755657900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ed81611fc4565b6114f56120e9565b50565b611500611da1565b81816012918261151192919061484a565b505050565b61151e611da1565b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e09061498c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611638611da1565b61164260006124e0565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461167d90614247565b80601f01602080910402602001604051908101604052809291908181526020018280546116a990614247565b80156116f65780601f106116cb576101008083540402835291602001916116f6565b820191906000526020600020905b8154815290600101906020018083116116d957829003601f168201915b5050505050905090565b611708611da1565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61175e611757611e6a565b83836125a6565b5050565b600c60149054906101000a900461ffff1681565b6060600061178383611579565b905060008167ffffffffffffffff8111156117a1576117a0613fe0565b5b6040519080825280602002602001820160405280156117cf5781602001602082028036833780820191505090505b5090506000805b838161ffff1610156118495760006117f2878361ffff16610e01565b90506117fd816121b9565b156118355780848461ffff168151811061181a57611819614591565b5b6020026020010181815250508280611831906149ac565b9350505b508080611841906149ac565b9150506117d6565b50819350505050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6118a9611f75565b6118b2826121b9565b156118e9576040517f5f0ccd7c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118f584848484612712565b6118fd6120e9565b50505050565b61190b611da1565b80600f8190555050565b606061192082612774565b61195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690614a22565b60405180910390fd5b600f546016600084815260200190815260200160002054426119819190614a42565b10156119b2576012601360405160200161199c929190614b04565b60405160208183030381529060405290506119e0565b60126119bd836127b5565b6040516020016119ce929190614b59565b60405160208183030381529060405290505b919050565b6119ed613925565b601160006119f9611e6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a77576040517f4755657900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a808261224b565b9050919050565b611a8f611f2b565b611a97611f75565b60116000611aa3611e6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b21576040517f4755657900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b2a816121b9565b15611b61576040517f5f0ccd7c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b604051806040016040528082815260200142815250601560008381526020019081526020016000206000820151816000015560208201518160010155905050600c601681819054906101000a900461ffff1680929190611bc0906149ac565b91906101000a81548161ffff021916908361ffff16021790555050611be36120e9565b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c82611da1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce890614bef565b60405180910390fd5b611cfa816124e0565b50565b600d5481565b611d0b611da1565b80600e8190555050565b6000611d20826121b9565b9050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d9a5750611d9982612883565b5b9050919050565b611da9611e6a565b73ffffffffffffffffffffffffffffffffffffffff16611dc7611644565b73ffffffffffffffffffffffffffffffffffffffff1614611e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1490614c5b565b60405180910390fd5b565b611e2881612774565b611e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5e9061467d565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ee5836113be565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611f336111b4565b15611f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6a90614cc7565b60405180910390fd5b565b6002600b5403611fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb190614d33565b60405180910390fd5b6002600b81905550565b600d546001600c60149054906101000a900461ffff16611fe49190614d53565b61ffff161115612020576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b4260166000600c601481819054906101000a900461ffff16612041906149ac565b91906101000a81548161ffff021916908361ffff160217905561ffff1681526020019081526020016000208190555061208e81600c60149054906101000a900461ffff1661ffff16612965565b600c60149054906101000a900461ffff1661ffff168173ffffffffffffffffffffffffffffffffffffffff167fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a860405160405180910390a350565b6001600b81905550565b6120fb611f2b565b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861213f611e6a565b60405161214c9190613bbd565b60405180910390a1565b61215e612983565b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6121a2611e6a565b6040516121af9190613bbd565b60405180910390a1565b6000816015600084815260200190815260200160002060000154036121e157600190506121e6565b600090505b919050565b6121fc6121f6611e6a565b826129cc565b61223b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223290614dfb565b60405180910390fd5b612246838383612a61565b505050565b612253613925565b6011600061225f611e6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166122dd576040517f4755657900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122e6826121b9565b61231c576040517f1834e26500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60156000838152602001908152602001600020604051806040016040529081600082015481526020016001820154815250509050919050565b6000612360826113be565b9050612370816000846001612d5a565b612379826113be565b90506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461249f816000846001612eb8565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260b90614e67565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161270591906139f3565b60405180910390a3505050565b61272361271d611e6a565b836129cc565b612762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275990614dfb565b60405180910390fd5b61276e84848484612ebe565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16612796836124a3565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600060016127c484612f1a565b01905060008167ffffffffffffffff8111156127e3576127e2613fe0565b5b6040519080825280601f01601f1916602001820160405280156128155781602001600182028036833780820191505090505b509050600082602001820190505b600115612878578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161286c5761286b61440d565b5b04945060008503612823575b819350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061294e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061295e575061295d8261306d565b5b9050919050565b61297f8282604051806020016040528060008152506130d7565b5050565b61298b6111b4565b6129ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c190614ed3565b60405180910390fd5b565b6000806129d8836113be565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a1a5750612a198185611be6565b5b80612a5857508373ffffffffffffffffffffffffffffffffffffffff16612a40846109fb565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a81826113be565b73ffffffffffffffffffffffffffffffffffffffff1614612ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ace90614f65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3d90614ff7565b60405180910390fd5b612b538383836001612d5a565b8273ffffffffffffffffffffffffffffffffffffffff16612b73826113be565b73ffffffffffffffffffffffffffffffffffffffff1614612bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc090614f65565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d558383836001612eb8565b505050565b612d6684848484613132565b6001811115612daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da190615089565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612df157612dec81613258565b612e30565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614612e2f57612e2e85826132a1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612e7257612e6d8161340e565b612eb1565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612eb057612eaf84826134df565b5b5b5050505050565b50505050565b612ec9848484612a61565b612ed58484848461355e565b612f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0b9061511b565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612f78577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612f6e57612f6d61440d565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612fb5576d04ee2d6d415b85acef81000000008381612fab57612faa61440d565b5b0492506020810190505b662386f26fc100008310612fe457662386f26fc100008381612fda57612fd961440d565b5b0492506010810190505b6305f5e100831061300d576305f5e10083816130035761300261440d565b5b0492506008810190505b61271083106130325761271083816130285761302761440d565b5b0492506004810190505b60648310613055576064838161304b5761304a61440d565b5b0492506002810190505b600a8310613064576001810190505b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6130e183836136e5565b6130ee600084848461355e565b61312d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131249061511b565b60405180910390fd5b505050565b600181111561325257600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146131c65780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131be9190614a42565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132515780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613249919061513b565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016132ae84611579565b6132b89190614a42565b905060006007600084815260200190815260200160002054905081811461339d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134229190614a42565b905060006009600084815260200190815260200160002054905060006008838154811061345257613451614591565b5b90600052602060002001549050806008838154811061347457613473614591565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806134c3576134c261516f565b5b6001900381819060005260206000200160009055905550505050565b60006134ea83611579565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600061357f8473ffffffffffffffffffffffffffffffffffffffff16613902565b156136d8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135a8611e6a565b8786866040518563ffffffff1660e01b81526004016135ca94939291906151f3565b6020604051808303816000875af192505050801561360657506040513d601f19601f820116820180604052508101906136039190615254565b60015b613688573d8060008114613636576040519150601f19603f3d011682016040523d82523d6000602084013e61363b565b606091505b506000815103613680576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136779061511b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506136dd565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161374b906152cd565b60405180910390fd5b61375d81612774565b1561379d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161379490615339565b60405180910390fd5b6137ab600083836001612d5a565b6137b481612774565b156137f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137eb90615339565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138fe600083836001612eb8565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b604051806040016040528060008152602001600081525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61398881613953565b811461399357600080fd5b50565b6000813590506139a58161397f565b92915050565b6000602082840312156139c1576139c0613949565b5b60006139cf84828501613996565b91505092915050565b60008115159050919050565b6139ed816139d8565b82525050565b6000602082019050613a0860008301846139e4565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a3982613a0e565b9050919050565b613a4981613a2e565b8114613a5457600080fd5b50565b600081359050613a6681613a40565b92915050565b600060208284031215613a8257613a81613949565b5b6000613a9084828501613a57565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ad3578082015181840152602081019050613ab8565b60008484015250505050565b6000601f19601f8301169050919050565b6000613afb82613a99565b613b058185613aa4565b9350613b15818560208601613ab5565b613b1e81613adf565b840191505092915050565b60006020820190508181036000830152613b438184613af0565b905092915050565b6000819050919050565b613b5e81613b4b565b8114613b6957600080fd5b50565b600081359050613b7b81613b55565b92915050565b600060208284031215613b9757613b96613949565b5b6000613ba584828501613b6c565b91505092915050565b613bb781613a2e565b82525050565b6000602082019050613bd26000830184613bae565b92915050565b60008060408385031215613bef57613bee613949565b5b6000613bfd85828601613a57565b9250506020613c0e85828601613b6c565b9150509250929050565b613c21816139d8565b8114613c2c57600080fd5b50565b600081359050613c3e81613c18565b92915050565b600060208284031215613c5a57613c59613949565b5b6000613c6884828501613c2f565b91505092915050565b613c7a81613b4b565b82525050565b6000602082019050613c956000830184613c71565b92915050565b600080600060608486031215613cb457613cb3613949565b5b6000613cc286828701613a57565b9350506020613cd386828701613a57565b9250506040613ce486828701613b6c565b9150509250925092565b60008060408385031215613d0557613d04613949565b5b6000613d1385828601613b6c565b9250506020613d2485828601613b6c565b9150509250929050565b6000604082019050613d436000830185613bae565b613d506020830184613c71565b9392505050565b600061ffff82169050919050565b613d6e81613d57565b82525050565b6000602082019050613d896000830184613d65565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613dc481613b4b565b82525050565b6000613dd68383613dbb565b60208301905092915050565b6000602082019050919050565b6000613dfa82613d8f565b613e048185613d9a565b9350613e0f83613dab565b8060005b83811015613e40578151613e278882613dca565b9750613e3283613de2565b925050600181019050613e13565b5085935050505092915050565b60006020820190508181036000830152613e678184613def565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613e9457613e93613e6f565b5b8235905067ffffffffffffffff811115613eb157613eb0613e74565b5b602083019150836001820283011115613ecd57613ecc613e79565b5b9250929050565b60008060208385031215613eeb57613eea613949565b5b600083013567ffffffffffffffff811115613f0957613f0861394e565b5b613f1585828601613e7e565b92509250509250929050565b60008060408385031215613f3857613f37613949565b5b6000613f4685828601613a57565b9250506020613f5785828601613c2f565b9150509250929050565b6000819050919050565b6000613f86613f81613f7c84613a0e565b613f61565b613a0e565b9050919050565b6000613f9882613f6b565b9050919050565b6000613faa82613f8d565b9050919050565b613fba81613f9f565b82525050565b6000602082019050613fd56000830184613fb1565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61401882613adf565b810181811067ffffffffffffffff8211171561403757614036613fe0565b5b80604052505050565b600061404a61393f565b9050614056828261400f565b919050565b600067ffffffffffffffff82111561407657614075613fe0565b5b61407f82613adf565b9050602081019050919050565b82818337600083830152505050565b60006140ae6140a98461405b565b614040565b9050828152602081018484840111156140ca576140c9613fdb565b5b6140d584828561408c565b509392505050565b600082601f8301126140f2576140f1613e6f565b5b813561410284826020860161409b565b91505092915050565b6000806000806080858703121561412557614124613949565b5b600061413387828801613a57565b945050602061414487828801613a57565b935050604061415587828801613b6c565b925050606085013567ffffffffffffffff8111156141765761417561394e565b5b614182878288016140dd565b91505092959194509250565b6040820160008201516141a46000850182613dbb565b5060208201516141b76020850182613dbb565b50505050565b60006040820190506141d2600083018461418e565b92915050565b600080604083850312156141ef576141ee613949565b5b60006141fd85828601613a57565b925050602061420e85828601613a57565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061425f57607f821691505b60208210810361427257614271614218565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006142d4602183613aa4565b91506142df82614278565b604082019050919050565b60006020820190508181036000830152614303816142c7565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000614366603d83613aa4565b91506143718261430a565b604082019050919050565b6000602082019050818103600083015261439581614359565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006143d682613b4b565b91506143e183613b4b565b92508282026143ef81613b4b565b915082820484148315176144065761440561439c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061444782613b4b565b915061445283613b4b565b9250826144625761446161440d565b5b828204905092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006144c9602b83613aa4565b91506144d48261446d565b604082019050919050565b600060208201905081810360008301526144f8816144bc565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061455b602c83613aa4565b9150614566826144ff565b604082019050919050565b6000602082019050818103600083015261458a8161454e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006145cb82613d57565b9150600082036145de576145dd61439c565b5b600182039050919050565b60006145f482613b4b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036146265761462561439c565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614667601883613aa4565b915061467282614631565b602082019050919050565b600060208201905081810360008301526146968161465a565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261470a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826146cd565b61471486836146cd565b95508019841693508086168417925050509392505050565b600061474761474261473d84613b4b565b613f61565b613b4b565b9050919050565b6000819050919050565b6147618361472c565b61477561476d8261474e565b8484546146da565b825550505050565b600090565b61478a61477d565b614795818484614758565b505050565b5b818110156147b9576147ae600082614782565b60018101905061479b565b5050565b601f8211156147fe576147cf816146a8565b6147d8846146bd565b810160208510156147e7578190505b6147fb6147f3856146bd565b83018261479a565b50505b505050565b600082821c905092915050565b600061482160001984600802614803565b1980831691505092915050565b600061483a8383614810565b9150826002028217905092915050565b614854838361469d565b67ffffffffffffffff81111561486d5761486c613fe0565b5b6148778254614247565b6148828282856147bd565b6000601f8311600181146148b1576000841561489f578287013590505b6148a9858261482e565b865550614911565b601f1984166148bf866146a8565b60005b828110156148e7578489013582556001820191506020850194506020810190506148c2565b868310156149045784890135614900601f891682614810565b8355505b6001600288020188555050505b50505050505050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000614976602983613aa4565b91506149818261491a565b604082019050919050565b600060208201905081810360008301526149a581614969565b9050919050565b60006149b782613d57565b915061ffff82036149cb576149ca61439c565b5b600182019050919050565b7f426162795a696c6c617a3a20546f6b656e20646f6573206e6f74206578697374600082015250565b6000614a0c602083613aa4565b9150614a17826149d6565b602082019050919050565b60006020820190508181036000830152614a3b816149ff565b9050919050565b6000614a4d82613b4b565b9150614a5883613b4b565b9250828203905081811115614a7057614a6f61439c565b5b92915050565b600081905092915050565b60008154614a8e81614247565b614a988186614a76565b94506001821660008114614ab35760018114614ac857614afb565b60ff1983168652811515820286019350614afb565b614ad1856146a8565b60005b83811015614af357815481890152600182019150602081019050614ad4565b838801955050505b50505092915050565b6000614b108285614a81565b9150614b1c8284614a81565b91508190509392505050565b6000614b3382613a99565b614b3d8185614a76565b9350614b4d818560208601613ab5565b80840191505092915050565b6000614b658285614a81565b9150614b718284614b28565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614bd9602683613aa4565b9150614be482614b7d565b604082019050919050565b60006020820190508181036000830152614c0881614bcc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c45602083613aa4565b9150614c5082614c0f565b602082019050919050565b60006020820190508181036000830152614c7481614c38565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614cb1601083613aa4565b9150614cbc82614c7b565b602082019050919050565b60006020820190508181036000830152614ce081614ca4565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614d1d601f83613aa4565b9150614d2882614ce7565b602082019050919050565b60006020820190508181036000830152614d4c81614d10565b9050919050565b6000614d5e82613d57565b9150614d6983613d57565b9250828201905061ffff811115614d8357614d8261439c565b5b92915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000614de5602d83613aa4565b9150614df082614d89565b604082019050919050565b60006020820190508181036000830152614e1481614dd8565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614e51601983613aa4565b9150614e5c82614e1b565b602082019050919050565b60006020820190508181036000830152614e8081614e44565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614ebd601483613aa4565b9150614ec882614e87565b602082019050919050565b60006020820190508181036000830152614eec81614eb0565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614f4f602583613aa4565b9150614f5a82614ef3565b604082019050919050565b60006020820190508181036000830152614f7e81614f42565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614fe1602483613aa4565b9150614fec82614f85565b604082019050919050565b6000602082019050818103600083015261501081614fd4565b9050919050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6000615073603583613aa4565b915061507e82615017565b604082019050919050565b600060208201905081810360008301526150a281615066565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615105603283613aa4565b9150615110826150a9565b604082019050919050565b60006020820190508181036000830152615134816150f8565b9050919050565b600061514682613b4b565b915061515183613b4b565b92508282019050808211156151695761516861439c565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006151c58261519e565b6151cf81856151a9565b93506151df818560208601613ab5565b6151e881613adf565b840191505092915050565b60006080820190506152086000830187613bae565b6152156020830186613bae565b6152226040830185613c71565b818103606083015261523481846151ba565b905095945050505050565b60008151905061524e8161397f565b92915050565b60006020828403121561526a57615269613949565b5b60006152788482850161523f565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006152b7602083613aa4565b91506152c282615281565b602082019050919050565b600060208201905081810360008301526152e6816152aa565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615323601c83613aa4565b915061532e826152ed565b602082019050919050565b6000602082019050818103600083015261535281615316565b905091905056fea264697066735822122088a7f77d070ab1b916912c20f7ea40f9239c61f9722c2982d6ae77b8a10a5f1964736f6c63430008110033000000000000000000000000f4237be00f63cd07dc62ebffa9de428880c79be7

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102955760003560e01c80636817c76c11610167578063a78ee7e9116100ce578063dd46706411610087578063dd467064146107d1578063e985e9c5146107ed578063f2fde38b1461081d578063f47c84c514610839578063f4a0a52814610857578063f6aacfb11461087357610295565b8063a78ee7e9146106fd578063ad2f852a1461071b578063b88d4fde14610739578063c1e2850714610755578063c87b56dd14610771578063d68f4dd1146107a157610295565b80638da5cb5b116101205780638da5cb5b1461063b57806395d89b41146106595780639e05182b14610677578063a22cb46514610693578063a2309ff8146106af578063a2e9e9ef146106cd57610295565b80636817c76c1461058f5780636a627842146105ad5780636e83843a146105c957806370480275146105e557806370a0823114610601578063715018a61461063157610295565b80632e9f3f671161020b5780634f6ccce7116101c45780634f6ccce7146104a757806356891412146104d75780635c975abb146104f55780636198e33914610513578063627fdeab1461052f5780636352211e1461055f57610295565b80632e9f3f67146103fd5780632f745c5914610419578063342acc87146104495780633ccfd60b1461046557806342842e0e1461046f57806342966c681461048b57610295565b806315a4d8601161025d57806315a4d8601461035057806316c38b3c1461035a5780631785f53c1461037657806318160ddd1461039257806323b872dd146103b05780632a55205a146103cc57610295565b806301ffc9a71461029a57806306d254da146102ca57806306fdde03146102e6578063081812fc14610304578063095ea7b314610334575b600080fd5b6102b460048036038101906102af91906139ab565b6108a3565b6040516102c191906139f3565b60405180910390f35b6102e460048036038101906102df9190613a6c565b61091d565b005b6102ee610969565b6040516102fb9190613b29565b60405180910390f35b61031e60048036038101906103199190613b81565b6109fb565b60405161032b9190613bbd565b60405180910390f35b61034e60048036038101906103499190613bd8565b610a41565b005b610358610b58565b005b610374600480360381019061036f9190613c44565b610c2d565b005b610390600480360381019061038b9190613a6c565b610cdc565b005b61039a610d36565b6040516103a79190613c80565b60405180910390f35b6103ca60048036038101906103c59190613c9b565b610d43565b005b6103e660048036038101906103e19190613cee565b610da3565b6040516103f4929190613d2e565b60405180910390f35b61041760048036038101906104129190613b81565b610def565b005b610433600480360381019061042e9190613bd8565b610e01565b6040516104409190613c80565b60405180910390f35b610463600480360381019061045e9190613b81565b610ea6565b005b61046d610fbd565b005b61048960048036038101906104849190613c9b565b611015565b005b6104a560048036038101906104a09190613b81565b611035565b005b6104c160048036038101906104bc9190613b81565b61112f565b6040516104ce9190613c80565b60405180910390f35b6104df6111a0565b6040516104ec9190613d74565b60405180910390f35b6104fd6111b4565b60405161050a91906139f3565b60405180910390f35b61052d60048036038101906105289190613b81565b6111cb565b005b61054960048036038101906105449190613a6c565b611310565b6040516105569190613e4d565b60405180910390f35b61057960048036038101906105749190613b81565b6113be565b6040516105869190613bbd565b60405180910390f35b610597611444565b6040516105a49190613c80565b60405180910390f35b6105c760048036038101906105c29190613a6c565b61144a565b005b6105e360048036038101906105de9190613ed4565b6114f8565b005b6105ff60048036038101906105fa9190613a6c565b611516565b005b61061b60048036038101906106169190613a6c565b611579565b6040516106289190613c80565b60405180910390f35b610639611630565b005b610643611644565b6040516106509190613bbd565b60405180910390f35b61066161166e565b60405161066e9190613b29565b60405180910390f35b610691600480360381019061068c9190613a6c565b611700565b005b6106ad60048036038101906106a89190613f21565b61174c565b005b6106b7611762565b6040516106c49190613d74565b60405180910390f35b6106e760048036038101906106e29190613a6c565b611776565b6040516106f49190613e4d565b60405180910390f35b610705611855565b6040516107129190613fc0565b60405180910390f35b61072361187b565b6040516107309190613bbd565b60405180910390f35b610753600480360381019061074e919061410b565b6118a1565b005b61076f600480360381019061076a9190613b81565b611903565b005b61078b60048036038101906107869190613b81565b611915565b6040516107989190613b29565b60405180910390f35b6107bb60048036038101906107b69190613b81565b6119e5565b6040516107c891906141bd565b60405180910390f35b6107eb60048036038101906107e69190613b81565b611a87565b005b610807600480360381019061080291906141d8565b611be6565b60405161081491906139f3565b60405180910390f35b61083760048036038101906108329190613a6c565b611c7a565b005b610841611cfd565b60405161084e9190613c80565b60405180910390f35b610871600480360381019061086c9190613b81565b611d03565b005b61088d60048036038101906108889190613b81565b611d15565b60405161089a91906139f3565b60405180910390f35b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610916575061091582611d27565b5b9050919050565b610925611da1565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000805461097890614247565b80601f01602080910402602001604051908101604052809291908181526020018280546109a490614247565b80156109f15780601f106109c6576101008083540402835291602001916109f1565b820191906000526020600020905b8154815290600101906020018083116109d457829003601f168201915b5050505050905090565b6000610a0682611e1f565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4c826113be565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab3906142ea565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610adb611e6a565b73ffffffffffffffffffffffffffffffffffffffff161480610b0a5750610b0981610b04611e6a565b611be6565b5b610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b409061437c565b60405180910390fd5b610b538383611e72565b505050565b610b60611f2b565b610b68611f75565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac610bae611e6a565b670de0b6b3a7640000600e54610bc491906143cb565b6040518363ffffffff1660e01b8152600401610be1929190613d2e565b600060405180830381600087803b158015610bfb57600080fd5b505af1158015610c0f573d6000803e3d6000fd5b50505050610c23610c1e611e6a565b611fc4565b610c2b6120e9565b565b610c35611da1565b600073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610cbd576040517f0855d95800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015610cd057610ccb6120f3565b610cd9565b610cd8612156565b5b50565b610ce4611da1565b601160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905550565b6000600880549050905090565b610d4b611f75565b610d54816121b9565b15610d8b576040517f5f0ccd7c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d968383836121eb565b610d9e6120e9565b505050565b600080601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e860145485610dda91906143cb565b610de4919061443c565b915091509250929050565b610df7611da1565b8060148190555050565b6000610e0c83611579565b8210610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e44906144df565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610eae611f2b565b60116000610eba611e6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610f38576040517f4755657900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f41816121b9565b610f77576040517f1834e26500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f828261224b565b905042816020018181525050806015600084815260200190815260200160002060008201518160000155602082015181600101559050505050565b610fc5611da1565b610fcd611644565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611012573d6000803e3d6000fd5b50565b611030838383604051806020016040528060008152506118a1565b505050565b61103d611f2b565b611045611f75565b60116000611051611e6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166110cf576040517f4755657900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806110d9826113be565b73ffffffffffffffffffffffffffffffffffffffff167f1af5163f80e79b5e554f61e1d052084d3a3fe1166e42a265798c4e2ddce8ffa260405160405180910390a361112481612355565b61112c6120e9565b50565b6000611139610d36565b821061117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190614571565b60405180910390fd5b6008828154811061118e5761118d614591565b5b90600052602060002001549050919050565b600c60169054906101000a900461ffff1681565b6000600a60149054906101000a900460ff16905090565b6111d3611f2b565b6111db611f75565b601160006111e7611e6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611265576040517f4755657900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61126e816121b9565b6112a4576040517f1834e26500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6015600082815260200190815260200160002060008082016000905560018201600090555050600c601681819054906101000a900461ffff16809291906112ea906145c0565b91906101000a81548161ffff021916908361ffff1602179055505061130d6120e9565b50565b6060600061131d83611579565b905060008167ffffffffffffffff81111561133b5761133a613fe0565b5b6040519080825280602002602001820160405280156113695781602001602082028036833780820191505090505b50905060005b828110156113b3576113818582610e01565b82828151811061139457611393614591565b5b60200260200101818152505080806113ab906145e9565b91505061136f565b508092505050919050565b6000806113ca836124a3565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361143b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114329061467d565b60405180910390fd5b80915050919050565b600e5481565b611452611f2b565b61145a611f75565b60116000611466611e6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166114e4576040517f4755657900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ed81611fc4565b6114f56120e9565b50565b611500611da1565b81816012918261151192919061484a565b505050565b61151e611da1565b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e09061498c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611638611da1565b61164260006124e0565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461167d90614247565b80601f01602080910402602001604051908101604052809291908181526020018280546116a990614247565b80156116f65780601f106116cb576101008083540402835291602001916116f6565b820191906000526020600020905b8154815290600101906020018083116116d957829003601f168201915b5050505050905090565b611708611da1565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61175e611757611e6a565b83836125a6565b5050565b600c60149054906101000a900461ffff1681565b6060600061178383611579565b905060008167ffffffffffffffff8111156117a1576117a0613fe0565b5b6040519080825280602002602001820160405280156117cf5781602001602082028036833780820191505090505b5090506000805b838161ffff1610156118495760006117f2878361ffff16610e01565b90506117fd816121b9565b156118355780848461ffff168151811061181a57611819614591565b5b6020026020010181815250508280611831906149ac565b9350505b508080611841906149ac565b9150506117d6565b50819350505050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6118a9611f75565b6118b2826121b9565b156118e9576040517f5f0ccd7c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118f584848484612712565b6118fd6120e9565b50505050565b61190b611da1565b80600f8190555050565b606061192082612774565b61195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690614a22565b60405180910390fd5b600f546016600084815260200190815260200160002054426119819190614a42565b10156119b2576012601360405160200161199c929190614b04565b60405160208183030381529060405290506119e0565b60126119bd836127b5565b6040516020016119ce929190614b59565b60405160208183030381529060405290505b919050565b6119ed613925565b601160006119f9611e6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a77576040517f4755657900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a808261224b565b9050919050565b611a8f611f2b565b611a97611f75565b60116000611aa3611e6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b21576040517f4755657900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b2a816121b9565b15611b61576040517f5f0ccd7c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b604051806040016040528082815260200142815250601560008381526020019081526020016000206000820151816000015560208201518160010155905050600c601681819054906101000a900461ffff1680929190611bc0906149ac565b91906101000a81548161ffff021916908361ffff16021790555050611be36120e9565b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c82611da1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce890614bef565b60405180910390fd5b611cfa816124e0565b50565b600d5481565b611d0b611da1565b80600e8190555050565b6000611d20826121b9565b9050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d9a5750611d9982612883565b5b9050919050565b611da9611e6a565b73ffffffffffffffffffffffffffffffffffffffff16611dc7611644565b73ffffffffffffffffffffffffffffffffffffffff1614611e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1490614c5b565b60405180910390fd5b565b611e2881612774565b611e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5e9061467d565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ee5836113be565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611f336111b4565b15611f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6a90614cc7565b60405180910390fd5b565b6002600b5403611fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb190614d33565b60405180910390fd5b6002600b81905550565b600d546001600c60149054906101000a900461ffff16611fe49190614d53565b61ffff161115612020576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b4260166000600c601481819054906101000a900461ffff16612041906149ac565b91906101000a81548161ffff021916908361ffff160217905561ffff1681526020019081526020016000208190555061208e81600c60149054906101000a900461ffff1661ffff16612965565b600c60149054906101000a900461ffff1661ffff168173ffffffffffffffffffffffffffffffffffffffff167fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a860405160405180910390a350565b6001600b81905550565b6120fb611f2b565b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861213f611e6a565b60405161214c9190613bbd565b60405180910390a1565b61215e612983565b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6121a2611e6a565b6040516121af9190613bbd565b60405180910390a1565b6000816015600084815260200190815260200160002060000154036121e157600190506121e6565b600090505b919050565b6121fc6121f6611e6a565b826129cc565b61223b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223290614dfb565b60405180910390fd5b612246838383612a61565b505050565b612253613925565b6011600061225f611e6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166122dd576040517f4755657900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122e6826121b9565b61231c576040517f1834e26500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60156000838152602001908152602001600020604051806040016040529081600082015481526020016001820154815250509050919050565b6000612360826113be565b9050612370816000846001612d5a565b612379826113be565b90506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461249f816000846001612eb8565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260b90614e67565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161270591906139f3565b60405180910390a3505050565b61272361271d611e6a565b836129cc565b612762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275990614dfb565b60405180910390fd5b61276e84848484612ebe565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16612796836124a3565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600060016127c484612f1a565b01905060008167ffffffffffffffff8111156127e3576127e2613fe0565b5b6040519080825280601f01601f1916602001820160405280156128155781602001600182028036833780820191505090505b509050600082602001820190505b600115612878578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161286c5761286b61440d565b5b04945060008503612823575b819350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061294e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061295e575061295d8261306d565b5b9050919050565b61297f8282604051806020016040528060008152506130d7565b5050565b61298b6111b4565b6129ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c190614ed3565b60405180910390fd5b565b6000806129d8836113be565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a1a5750612a198185611be6565b5b80612a5857508373ffffffffffffffffffffffffffffffffffffffff16612a40846109fb565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a81826113be565b73ffffffffffffffffffffffffffffffffffffffff1614612ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ace90614f65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3d90614ff7565b60405180910390fd5b612b538383836001612d5a565b8273ffffffffffffffffffffffffffffffffffffffff16612b73826113be565b73ffffffffffffffffffffffffffffffffffffffff1614612bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc090614f65565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d558383836001612eb8565b505050565b612d6684848484613132565b6001811115612daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da190615089565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612df157612dec81613258565b612e30565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614612e2f57612e2e85826132a1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612e7257612e6d8161340e565b612eb1565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612eb057612eaf84826134df565b5b5b5050505050565b50505050565b612ec9848484612a61565b612ed58484848461355e565b612f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0b9061511b565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612f78577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612f6e57612f6d61440d565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612fb5576d04ee2d6d415b85acef81000000008381612fab57612faa61440d565b5b0492506020810190505b662386f26fc100008310612fe457662386f26fc100008381612fda57612fd961440d565b5b0492506010810190505b6305f5e100831061300d576305f5e10083816130035761300261440d565b5b0492506008810190505b61271083106130325761271083816130285761302761440d565b5b0492506004810190505b60648310613055576064838161304b5761304a61440d565b5b0492506002810190505b600a8310613064576001810190505b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6130e183836136e5565b6130ee600084848461355e565b61312d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131249061511b565b60405180910390fd5b505050565b600181111561325257600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146131c65780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131be9190614a42565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132515780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613249919061513b565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016132ae84611579565b6132b89190614a42565b905060006007600084815260200190815260200160002054905081811461339d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134229190614a42565b905060006009600084815260200190815260200160002054905060006008838154811061345257613451614591565b5b90600052602060002001549050806008838154811061347457613473614591565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806134c3576134c261516f565b5b6001900381819060005260206000200160009055905550505050565b60006134ea83611579565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600061357f8473ffffffffffffffffffffffffffffffffffffffff16613902565b156136d8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135a8611e6a565b8786866040518563ffffffff1660e01b81526004016135ca94939291906151f3565b6020604051808303816000875af192505050801561360657506040513d601f19601f820116820180604052508101906136039190615254565b60015b613688573d8060008114613636576040519150601f19603f3d011682016040523d82523d6000602084013e61363b565b606091505b506000815103613680576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136779061511b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506136dd565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161374b906152cd565b60405180910390fd5b61375d81612774565b1561379d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161379490615339565b60405180910390fd5b6137ab600083836001612d5a565b6137b481612774565b156137f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137eb90615339565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138fe600083836001612eb8565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b604051806040016040528060008152602001600081525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61398881613953565b811461399357600080fd5b50565b6000813590506139a58161397f565b92915050565b6000602082840312156139c1576139c0613949565b5b60006139cf84828501613996565b91505092915050565b60008115159050919050565b6139ed816139d8565b82525050565b6000602082019050613a0860008301846139e4565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a3982613a0e565b9050919050565b613a4981613a2e565b8114613a5457600080fd5b50565b600081359050613a6681613a40565b92915050565b600060208284031215613a8257613a81613949565b5b6000613a9084828501613a57565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ad3578082015181840152602081019050613ab8565b60008484015250505050565b6000601f19601f8301169050919050565b6000613afb82613a99565b613b058185613aa4565b9350613b15818560208601613ab5565b613b1e81613adf565b840191505092915050565b60006020820190508181036000830152613b438184613af0565b905092915050565b6000819050919050565b613b5e81613b4b565b8114613b6957600080fd5b50565b600081359050613b7b81613b55565b92915050565b600060208284031215613b9757613b96613949565b5b6000613ba584828501613b6c565b91505092915050565b613bb781613a2e565b82525050565b6000602082019050613bd26000830184613bae565b92915050565b60008060408385031215613bef57613bee613949565b5b6000613bfd85828601613a57565b9250506020613c0e85828601613b6c565b9150509250929050565b613c21816139d8565b8114613c2c57600080fd5b50565b600081359050613c3e81613c18565b92915050565b600060208284031215613c5a57613c59613949565b5b6000613c6884828501613c2f565b91505092915050565b613c7a81613b4b565b82525050565b6000602082019050613c956000830184613c71565b92915050565b600080600060608486031215613cb457613cb3613949565b5b6000613cc286828701613a57565b9350506020613cd386828701613a57565b9250506040613ce486828701613b6c565b9150509250925092565b60008060408385031215613d0557613d04613949565b5b6000613d1385828601613b6c565b9250506020613d2485828601613b6c565b9150509250929050565b6000604082019050613d436000830185613bae565b613d506020830184613c71565b9392505050565b600061ffff82169050919050565b613d6e81613d57565b82525050565b6000602082019050613d896000830184613d65565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613dc481613b4b565b82525050565b6000613dd68383613dbb565b60208301905092915050565b6000602082019050919050565b6000613dfa82613d8f565b613e048185613d9a565b9350613e0f83613dab565b8060005b83811015613e40578151613e278882613dca565b9750613e3283613de2565b925050600181019050613e13565b5085935050505092915050565b60006020820190508181036000830152613e678184613def565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613e9457613e93613e6f565b5b8235905067ffffffffffffffff811115613eb157613eb0613e74565b5b602083019150836001820283011115613ecd57613ecc613e79565b5b9250929050565b60008060208385031215613eeb57613eea613949565b5b600083013567ffffffffffffffff811115613f0957613f0861394e565b5b613f1585828601613e7e565b92509250509250929050565b60008060408385031215613f3857613f37613949565b5b6000613f4685828601613a57565b9250506020613f5785828601613c2f565b9150509250929050565b6000819050919050565b6000613f86613f81613f7c84613a0e565b613f61565b613a0e565b9050919050565b6000613f9882613f6b565b9050919050565b6000613faa82613f8d565b9050919050565b613fba81613f9f565b82525050565b6000602082019050613fd56000830184613fb1565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61401882613adf565b810181811067ffffffffffffffff8211171561403757614036613fe0565b5b80604052505050565b600061404a61393f565b9050614056828261400f565b919050565b600067ffffffffffffffff82111561407657614075613fe0565b5b61407f82613adf565b9050602081019050919050565b82818337600083830152505050565b60006140ae6140a98461405b565b614040565b9050828152602081018484840111156140ca576140c9613fdb565b5b6140d584828561408c565b509392505050565b600082601f8301126140f2576140f1613e6f565b5b813561410284826020860161409b565b91505092915050565b6000806000806080858703121561412557614124613949565b5b600061413387828801613a57565b945050602061414487828801613a57565b935050604061415587828801613b6c565b925050606085013567ffffffffffffffff8111156141765761417561394e565b5b614182878288016140dd565b91505092959194509250565b6040820160008201516141a46000850182613dbb565b5060208201516141b76020850182613dbb565b50505050565b60006040820190506141d2600083018461418e565b92915050565b600080604083850312156141ef576141ee613949565b5b60006141fd85828601613a57565b925050602061420e85828601613a57565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061425f57607f821691505b60208210810361427257614271614218565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006142d4602183613aa4565b91506142df82614278565b604082019050919050565b60006020820190508181036000830152614303816142c7565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000614366603d83613aa4565b91506143718261430a565b604082019050919050565b6000602082019050818103600083015261439581614359565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006143d682613b4b565b91506143e183613b4b565b92508282026143ef81613b4b565b915082820484148315176144065761440561439c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061444782613b4b565b915061445283613b4b565b9250826144625761446161440d565b5b828204905092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006144c9602b83613aa4565b91506144d48261446d565b604082019050919050565b600060208201905081810360008301526144f8816144bc565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061455b602c83613aa4565b9150614566826144ff565b604082019050919050565b6000602082019050818103600083015261458a8161454e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006145cb82613d57565b9150600082036145de576145dd61439c565b5b600182039050919050565b60006145f482613b4b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036146265761462561439c565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614667601883613aa4565b915061467282614631565b602082019050919050565b600060208201905081810360008301526146968161465a565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261470a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826146cd565b61471486836146cd565b95508019841693508086168417925050509392505050565b600061474761474261473d84613b4b565b613f61565b613b4b565b9050919050565b6000819050919050565b6147618361472c565b61477561476d8261474e565b8484546146da565b825550505050565b600090565b61478a61477d565b614795818484614758565b505050565b5b818110156147b9576147ae600082614782565b60018101905061479b565b5050565b601f8211156147fe576147cf816146a8565b6147d8846146bd565b810160208510156147e7578190505b6147fb6147f3856146bd565b83018261479a565b50505b505050565b600082821c905092915050565b600061482160001984600802614803565b1980831691505092915050565b600061483a8383614810565b9150826002028217905092915050565b614854838361469d565b67ffffffffffffffff81111561486d5761486c613fe0565b5b6148778254614247565b6148828282856147bd565b6000601f8311600181146148b1576000841561489f578287013590505b6148a9858261482e565b865550614911565b601f1984166148bf866146a8565b60005b828110156148e7578489013582556001820191506020850194506020810190506148c2565b868310156149045784890135614900601f891682614810565b8355505b6001600288020188555050505b50505050505050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000614976602983613aa4565b91506149818261491a565b604082019050919050565b600060208201905081810360008301526149a581614969565b9050919050565b60006149b782613d57565b915061ffff82036149cb576149ca61439c565b5b600182019050919050565b7f426162795a696c6c617a3a20546f6b656e20646f6573206e6f74206578697374600082015250565b6000614a0c602083613aa4565b9150614a17826149d6565b602082019050919050565b60006020820190508181036000830152614a3b816149ff565b9050919050565b6000614a4d82613b4b565b9150614a5883613b4b565b9250828203905081811115614a7057614a6f61439c565b5b92915050565b600081905092915050565b60008154614a8e81614247565b614a988186614a76565b94506001821660008114614ab35760018114614ac857614afb565b60ff1983168652811515820286019350614afb565b614ad1856146a8565b60005b83811015614af357815481890152600182019150602081019050614ad4565b838801955050505b50505092915050565b6000614b108285614a81565b9150614b1c8284614a81565b91508190509392505050565b6000614b3382613a99565b614b3d8185614a76565b9350614b4d818560208601613ab5565b80840191505092915050565b6000614b658285614a81565b9150614b718284614b28565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614bd9602683613aa4565b9150614be482614b7d565b604082019050919050565b60006020820190508181036000830152614c0881614bcc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c45602083613aa4565b9150614c5082614c0f565b602082019050919050565b60006020820190508181036000830152614c7481614c38565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614cb1601083613aa4565b9150614cbc82614c7b565b602082019050919050565b60006020820190508181036000830152614ce081614ca4565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614d1d601f83613aa4565b9150614d2882614ce7565b602082019050919050565b60006020820190508181036000830152614d4c81614d10565b9050919050565b6000614d5e82613d57565b9150614d6983613d57565b9250828201905061ffff811115614d8357614d8261439c565b5b92915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000614de5602d83613aa4565b9150614df082614d89565b604082019050919050565b60006020820190508181036000830152614e1481614dd8565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614e51601983613aa4565b9150614e5c82614e1b565b602082019050919050565b60006020820190508181036000830152614e8081614e44565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614ebd601483613aa4565b9150614ec882614e87565b602082019050919050565b60006020820190508181036000830152614eec81614eb0565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614f4f602583613aa4565b9150614f5a82614ef3565b604082019050919050565b60006020820190508181036000830152614f7e81614f42565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614fe1602483613aa4565b9150614fec82614f85565b604082019050919050565b6000602082019050818103600083015261501081614fd4565b9050919050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6000615073603583613aa4565b915061507e82615017565b604082019050919050565b600060208201905081810360008301526150a281615066565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615105603283613aa4565b9150615110826150a9565b604082019050919050565b60006020820190508181036000830152615134816150f8565b9050919050565b600061514682613b4b565b915061515183613b4b565b92508282019050808211156151695761516861439c565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006151c58261519e565b6151cf81856151a9565b93506151df818560208601613ab5565b6151e881613adf565b840191505092915050565b60006080820190506152086000830187613bae565b6152156020830186613bae565b6152226040830185613c71565b818103606083015261523481846151ba565b905095945050505050565b60008151905061524e8161397f565b92915050565b60006020828403121561526a57615269613949565b5b60006152788482850161523f565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006152b7602083613aa4565b91506152c282615281565b602082019050919050565b600060208201905081810360008301526152e6816152aa565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615323601c83613aa4565b915061532e826152ed565b602082019050919050565b6000602082019050818103600083015261535281615316565b905091905056fea264697066735822122088a7f77d070ab1b916912c20f7ea40f9239c61f9722c2982d6ae77b8a10a5f1964736f6c63430008110033

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

000000000000000000000000f4237be00f63cd07dc62ebffa9de428880c79be7

-----Decoded View---------------
Arg [0] : _czRoar (address): 0xf4237Be00f63cd07DC62EbFFa9De428880c79be7

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f4237be00f63cd07dc62ebffa9de428880c79be7


Deployed Bytecode Sourcemap

87428:7848:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91282:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94633:100;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60118;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61630:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61148:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89207:149;;;:::i;:::-;;94322:188;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95180:93;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76696:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93550:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91067:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;94518:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76364:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90732:298;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94968:106;;;:::i;:::-;;62736:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89915:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76886:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88278:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83664:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90424:248;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93148:373;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59828:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88367:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89399:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94096:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95082:90;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59559:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86529:103;;;:::i;:::-;;85881:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60287:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94741:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61873:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88237:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92567:573;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88108:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88490:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93789:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94218:96;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91507:418;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91933:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90096:320;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62099:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86787:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88319:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94854:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92267:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91282:217;91386:4;91425:26;91410:41;;;:11;:41;;;;:81;;;;91455:36;91479:11;91455:23;:36::i;:::-;91410:81;91403:88;;91282:217;;;:::o;94633:100::-;85767:13;:11;:13::i;:::-;94721:4:::1;94704:14;;:21;;;;;;;;;;;;;;;;;;94633:100:::0;:::o;60118:::-;60172:13;60205:5;60198:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60118:100;:::o;61630:171::-;61706:7;61726:23;61741:7;61726:14;:23::i;:::-;61769:15;:24;61785:7;61769:24;;;;;;;;;;;;;;;;;;;;;61762:31;;61630:171;;;:::o;61148:416::-;61229:13;61245:23;61260:7;61245:14;:23::i;:::-;61229:39;;61293:5;61287:11;;:2;:11;;;61279:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;61387:5;61371:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;61396:37;61413:5;61420:12;:10;:12::i;:::-;61396:16;:37::i;:::-;61371:62;61349:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;61535:21;61544:2;61548:7;61535:8;:21::i;:::-;61218:346;61148:416;;:::o;89207:149::-;83269:19;:17;:19::i;:::-;5959:21:::1;:19;:21::i;:::-;89272:6:::2;;;;;;;;;;;:11;;;89284:12;:10;:12::i;:::-;89310:7;89298:9;;:19;;;;:::i;:::-;89272:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;89329:19;89335:12;:10;:12::i;:::-;89329:5;:19::i;:::-;6003:20:::1;:18;:20::i;:::-;89207:149::o:0;94322:188::-;85767:13;:11;:13::i;:::-;94414:1:::1;94388:28;;:14;;;;;;;;;;;:28;;::::0;94385:59:::1;;94425:19;;;;;;;;;;;;;;94385:59;94459:7;94455:47;;;94468:8;:6;:8::i;:::-;94455:47;;;94492:10;:8;:10::i;:::-;94455:47;94322:188:::0;:::o;95180:93::-;85767:13;:11;:13::i;:::-;95252:7:::1;:13;95260:4;95252:13;;;;;;;;;;;;;;;;95245:20;;;;;;;;;;;95180:93:::0;:::o;76696:113::-;76757:7;76784:10;:17;;;;76777:24;;76696:113;:::o;93550:231::-;5959:21;:19;:21::i;:::-;93683:18:::1;93693:7;93683:9;:18::i;:::-;93680:45;;;93710:15;;;;;;;;;;;;;;93680:45;93736:37;93755:4;93761:2;93765:7;93736:18;:37::i;:::-;6003:20:::0;:18;:20::i;:::-;93550:231;;;:::o;91067:207::-;91156:16;91174:21;91216:14;;;;;;;;;;;91261:4;91244:16;;91232:9;:28;;;;:::i;:::-;:33;;;;:::i;:::-;91208:58;;;;91067:207;;;;;:::o;94518:107::-;85767:13;:11;:13::i;:::-;94611:6:::1;94592:16;:25;;;;94518:107:::0;:::o;76364:256::-;76461:7;76497:23;76514:5;76497:16;:23::i;:::-;76489:5;:31;76481:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;76586:12;:19;76599:5;76586:19;;;;;;;;;;;;;;;:26;76606:5;76586:26;;;;;;;;;;;;76579:33;;76364:256;;;;:::o;90732:298::-;83269:19;:17;:19::i;:::-;89140:7:::1;:21;89148:12;:10;:12::i;:::-;89140:21;;;;;;;;;;;;;;;;;;;;;;;;;89136:45;;89170:11;;;;;;;;;;;;;;89136:45;90827:18:::2;90837:7;90827:9;:18::i;:::-;90823:42;;90854:11;;;;;;;;;;;;;;90823:42;90886:20;90909:17;90918:7;90909:8;:17::i;:::-;90886:40;;90960:15;90937:6;:20;;:38;;;::::0;::::2;91016:6;90988:16;:25;91005:7;90988:25;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;;90812:218;90732:298:::0;:::o;94968:106::-;85767:13;:11;:13::i;:::-;95026:7:::1;:5;:7::i;:::-;95018:25;;:48;95044:21;95018:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;94968:106::o:0;62736:185::-;62874:39;62891:4;62897:2;62901:7;62874:39;;;;;;;;;;;;:16;:39::i;:::-;62736:185;;;:::o;89915:173::-;83269:19;:17;:19::i;:::-;5959:21:::1;:19;:21::i;:::-;89140:7:::2;:21;89148:12;:10;:12::i;:::-;89140:21;;;;;;;;;;;;;;;;;;;;;;;;;89136:45;;89170:11;;;;;;;;;;;;;;89136:45;90047:7:::3;90029:16;90037:7;90029;:16::i;:::-;90017:38;;;;;;;;;;;;90066:14;90072:7;90066:5;:14::i;:::-;6003:20:::1;:18;:20::i;:::-;89915:173:::0;:::o;76886:233::-;76961:7;76997:30;:28;:30::i;:::-;76989:5;:38;76981:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;77094:10;77105:5;77094:17;;;;;;;;:::i;:::-;;;;;;;;;;77087:24;;76886:233;;;:::o;88278:34::-;;;;;;;;;;;;;:::o;83664:86::-;83711:4;83735:7;;;;;;;;;;;83728:14;;83664:86;:::o;90424:248::-;83269:19;:17;:19::i;:::-;5959:21:::1;:19;:21::i;:::-;89140:7:::2;:21;89148:12;:10;:12::i;:::-;89140:21;;;;;;;;;;;;;;;;;;;;;;;;;89136:45;;89170:11;;;;;;;;;;;;;;89136:45;90527:18:::3;90537:7;90527:9;:18::i;:::-;90523:42;;90554:11;;;;;;;;;;;;;;90523:42;90613:16;:25;90630:7;90613:25;;;;;;;;;;;;90606:32:::0;::::3;;;;;;;;;;;;;90651:11;;:13;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;6003:20:::1;:18;:20::i;:::-;90424:248:::0;:::o;93148:373::-;93221:16;93250:23;93276:16;93286:5;93276:9;:16::i;:::-;93250:42;;93303:25;93345:15;93331:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93303:58;;93379:9;93374:112;93394:15;93390:1;:19;93374:112;;;93445:29;93465:5;93472:1;93445:19;:29::i;:::-;93431:8;93440:1;93431:11;;;;;;;;:::i;:::-;;;;;;;:43;;;;;93411:3;;;;;:::i;:::-;;;;93374:112;;;;93505:8;93498:15;;;;93148:373;;;:::o;59828:223::-;59900:7;59920:13;59936:17;59945:7;59936:8;:17::i;:::-;59920:33;;59989:1;59972:19;;:5;:19;;;59964:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;60038:5;60031:12;;;59828:223;;;:::o;88367:30::-;;;;:::o;89399:123::-;83269:19;:17;:19::i;:::-;5959:21:::1;:19;:21::i;:::-;89140:7:::2;:21;89148:12;:10;:12::i;:::-;89140:21;;;;;;;;;;;;;;;;;;;;;;;;;89136:45;;89170:11;;;;;;;;;;;;;;89136:45;89498:16:::3;89504:9;89498:5;:16::i;:::-;6003:20:::1;:18;:20::i;:::-;89399:123:::0;:::o;94096:114::-;85767:13;:11;:13::i;:::-;94199:3:::1;;94175:21;:27;;;;;;;:::i;:::-;;94096:114:::0;;:::o;95082:90::-;85767:13;:11;:13::i;:::-;95160:4:::1;95144:7;:13;95152:4;95144:13;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;95082:90:::0;:::o;59559:207::-;59631:7;59676:1;59659:19;;:5;:19;;;59651:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;59742:9;:16;59752:5;59742:16;;;;;;;;;;;;;;;;59735:23;;59559:207;;;:::o;86529:103::-;85767:13;:11;:13::i;:::-;86594:30:::1;86621:1;86594:18;:30::i;:::-;86529:103::o:0;85881:87::-;85927:7;85954:6;;;;;;;;;;;85947:13;;85881:87;:::o;60287:104::-;60343:13;60376:7;60369:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60287:104;:::o;94741:105::-;85767:13;:11;:13::i;:::-;94830:7:::1;94813:6;;:25;;;;;;;;;;;;;;;;;;94741:105:::0;:::o;61873:155::-;61968:52;61987:12;:10;:12::i;:::-;62001:8;62011;61968:18;:52::i;:::-;61873:155;;:::o;88237:34::-;;;;;;;;;;;;;:::o;92567:573::-;92642:16;92671:17;92691:16;92701:5;92691:9;:16::i;:::-;92671:36;;92718:31;92766:9;92752:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92718:58;;92787:26;92834:8;92830:271;92852:9;92848:1;:13;;;92830:271;;;92883:15;92901:29;92921:5;92928:1;92901:29;;:19;:29::i;:::-;92883:47;;92949:18;92959:7;92949:9;:18::i;:::-;92945:144;;;93026:7;92988:14;93003:19;92988:35;;;;;;;;;;:::i;:::-;;;;;;;:45;;;;;93052:21;;;;;:::i;:::-;;;;92945:144;92868:233;92863:3;;;;;:::i;:::-;;;;92830:271;;;;93118:14;93111:21;;;;;92567:573;;;:::o;88108:21::-;;;;;;;;;;;;;:::o;88490:29::-;;;;;;;;;;;;;:::o;93789:266::-;5959:21;:19;:21::i;:::-;93946:18:::1;93956:7;93946:9;:18::i;:::-;93943:45;;;93973:15;;;;;;;;;;;;;;93943:45;93999:48;94022:4;94028:2;94032:7;94041:5;93999:22;:48::i;:::-;6003:20:::0;:18;:20::i;:::-;93789:266;;;;:::o;94218:96::-;85767:13;:11;:13::i;:::-;94300:6:::1;94287:10;:19;;;;94218:96:::0;:::o;91507:418::-;91580:13;91614:16;91622:7;91614;:16::i;:::-;91606:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;91725:10;;91699:14;:23;91714:7;91699:23;;;;;;;;;;;;91681:15;:41;;;;:::i;:::-;:54;91678:147;;;91781:21;91804:19;91764:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;91750:75;;;;91678:147;91867:21;91890:25;91907:7;91890:16;:25::i;:::-;91850:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;91836:81;;91507:418;;;;:::o;91933:134::-;92009:13;;:::i;:::-;89140:7;:21;89148:12;:10;:12::i;:::-;89140:21;;;;;;;;;;;;;;;;;;;;;;;;;89136:45;;89170:11;;;;;;;;;;;;;;89136:45;92042:17:::1;92051:7;92042:8;:17::i;:::-;92035:24;;91933:134:::0;;;:::o;90096:320::-;83269:19;:17;:19::i;:::-;5959:21:::1;:19;:21::i;:::-;89140:7:::2;:21;89148:12;:10;:12::i;:::-;89140:21;;;;;;;;;;;;;;;;;;;;;;;;;89136:45;;89170:11;;;;;;;;;;;;;;89136:45;90196:18:::3;90206:7;90196:9;:18::i;:::-;90193:45;;;90223:15;;;;;;;;;;;;;;90193:45;90279:95;;;;;;;;90310:7;90279:95;;;;90347:15;90279:95;;::::0;90251:16:::3;:25;90268:7;90251:25;;;;;;;;;;;:123;;;;;;;;;;;;;;;;;;;90395:11;;:13;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;6003:20:::1;:18;:20::i;:::-;90096:320:::0;:::o;62099:164::-;62196:4;62220:18;:25;62239:5;62220:25;;;;;;;;;;;;;;;:35;62246:8;62220:35;;;;;;;;;;;;;;;;;;;;;;;;;62213:42;;62099:164;;;;:::o;86787:201::-;85767:13;:11;:13::i;:::-;86896:1:::1;86876:22;;:8;:22;;::::0;86868:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;86952:28;86971:8;86952:18;:28::i;:::-;86787:201:::0;:::o;88319:41::-;;;;:::o;94854:106::-;85767:13;:11;:13::i;:::-;94940:12:::1;94928:9;:24;;;;94854:106:::0;:::o;92267:116::-;92333:4;92357:18;92367:7;92357:9;:18::i;:::-;92350:25;;92267:116;;;:::o;76056:224::-;76158:4;76197:35;76182:50;;;:11;:50;;;;:90;;;;76236:36;76260:11;76236:23;:36::i;:::-;76182:90;76175:97;;76056:224;;;:::o;86046:132::-;86121:12;:10;:12::i;:::-;86110:23;;:7;:5;:7::i;:::-;:23;;;86102:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;86046:132::o;71449:135::-;71531:16;71539:7;71531;:16::i;:::-;71523:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;71449:135;:::o;43796:98::-;43849:7;43876:10;43869:17;;43796:98;:::o;70728:174::-;70830:2;70803:15;:24;70819:7;70803:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;70886:7;70882:2;70848:46;;70857:23;70872:7;70857:14;:23::i;:::-;70848:46;;;;;;;;;;;;70728:174;;:::o;83823:108::-;83894:8;:6;:8::i;:::-;83893:9;83885:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;83823:108::o;6039:293::-;5441:1;6173:7;;:19;6165:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;5441:1;6306:7;:18;;;;6039:293::o;89530:377::-;89606:10;;89602:1;89588:11;;;;;;;;;;;:15;;;;:::i;:::-;:28;;;89585:58;;;89625:18;;;;;;;;;;;;;;89585:58;89753:15;89721:14;:29;89738:11;;89736:13;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;89721:29;;;;;;;;;;;;;:47;;;;89813:33;89823:9;89834:11;;;;;;;;;;;89813:33;;:9;:33::i;:::-;89887:11;;;;;;;;;;;89864:35;;89876:9;89864:35;;;;;;;;;;;;89530:377;:::o;6340:213::-;5397:1;6523:7;:22;;;;6340:213::o;84260:118::-;83269:19;:17;:19::i;:::-;84330:4:::1;84320:7;;:14;;;;;;;;;;;;;;;;;;84350:20;84357:12;:10;:12::i;:::-;84350:20;;;;;;:::i;:::-;;;;;;;;84260:118::o:0;84519:120::-;83528:16;:14;:16::i;:::-;84588:5:::1;84578:7;;:15;;;;;;;;;;;;;;;;;;84609:22;84618:12;:10;:12::i;:::-;84609:22;;;;;;:::i;:::-;;;;;;;;84519:120::o:0;92389:166::-;92446:4;92504:7;92467:16;:25;92484:7;92467:25;;;;;;;;;;;:33;;;:44;92463:61;;92520:4;92513:11;;;;92463:61;92542:5;92535:12;;92389:166;;;;:::o;62330:335::-;62525:41;62544:12;:10;:12::i;:::-;62558:7;62525:18;:41::i;:::-;62517:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;62629:28;62639:4;62645:2;62649:7;62629:9;:28::i;:::-;62330:335;;;:::o;92073:186::-;92140:13;;:::i;:::-;89140:7;:21;89148:12;:10;:12::i;:::-;89140:21;;;;;;;;;;;;;;;;;;;;;;;;;89136:45;;89170:11;;;;;;;;;;;;;;89136:45;92170:18:::1;92180:7;92170:9;:18::i;:::-;92166:42;;92197:11;;;;;;;;;;;;;;92166:42;92226:16;:25;92243:7;92226:25;;;;;;;;;;;92219:32;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;92073:186:::0;;;:::o;68226:783::-;68286:13;68302:23;68317:7;68302:14;:23::i;:::-;68286:39;;68338:51;68359:5;68374:1;68378:7;68387:1;68338:20;:51::i;:::-;68502:23;68517:7;68502:14;:23::i;:::-;68494:31;;68573:15;:24;68589:7;68573:24;;;;;;;;;;;;68566:31;;;;;;;;;;;68838:1;68818:9;:16;68828:5;68818:16;;;;;;;;;;;;;;;;:21;;;;;;;;;;;68868:7;:16;68876:7;68868:16;;;;;;;;;;;;68861:23;;;;;;;;;;;68930:7;68926:1;68902:36;;68911:5;68902:36;;;;;;;;;;;;68951:50;68971:5;68986:1;68990:7;68999:1;68951:19;:50::i;:::-;68275:734;68226:783;:::o;64622:117::-;64688:7;64715;:16;64723:7;64715:16;;;;;;;;;;;;;;;;;;;;;64708:23;;64622:117;;;:::o;87148:191::-;87222:16;87241:6;;;;;;;;;;;87222:25;;87267:8;87258:6;;:17;;;;;;;;;;;;;;;;;;87322:8;87291:40;;87312:8;87291:40;;;;;;;;;;;;87211:128;87148:191;:::o;71045:315::-;71200:8;71191:17;;:5;:17;;;71183:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;71287:8;71249:18;:25;71268:5;71249:25;;;;;;;;;;;;;;;:35;71275:8;71249:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;71333:8;71311:41;;71326:5;71311:41;;;71343:8;71311:41;;;;;;:::i;:::-;;;;;;;;71045:315;;;:::o;62992:322::-;63166:41;63185:12;:10;:12::i;:::-;63199:7;63166:18;:41::i;:::-;63158:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;63268:38;63282:4;63288:2;63292:7;63301:4;63268:13;:38::i;:::-;62992:322;;;;:::o;65052:128::-;65117:4;65170:1;65141:31;;:17;65150:7;65141:8;:17::i;:::-;:31;;;;65134:38;;65052:128;;;:::o;19865:716::-;19921:13;19972:14;20009:1;19989:17;20000:5;19989:10;:17::i;:::-;:21;19972:38;;20025:20;20059:6;20048:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20025:41;;20081:11;20210:6;20206:2;20202:15;20194:6;20190:28;20183:35;;20247:288;20254:4;20247:288;;;20279:5;;;;;;;;20421:8;20416:2;20409:5;20405:14;20400:30;20395:3;20387:44;20477:2;20468:11;;;;;;:::i;:::-;;;;;20511:1;20502:5;:10;20247:288;20498:21;20247:288;20556:6;20549:13;;;;;19865:716;;;:::o;59190:305::-;59292:4;59344:25;59329:40;;;:11;:40;;;;:105;;;;59401:33;59386:48;;;:11;:48;;;;59329:105;:158;;;;59451:36;59475:11;59451:23;:36::i;:::-;59329:158;59309:178;;59190:305;;;:::o;65953:110::-;66029:26;66039:2;66043:7;66029:26;;;;;;;;;;;;:9;:26::i;:::-;65953:110;;:::o;84008:108::-;84075:8;:6;:8::i;:::-;84067:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;84008:108::o;65347:264::-;65440:4;65457:13;65473:23;65488:7;65473:14;:23::i;:::-;65457:39;;65526:5;65515:16;;:7;:16;;;:52;;;;65535:32;65552:5;65559:7;65535:16;:32::i;:::-;65515:52;:87;;;;65595:7;65571:31;;:20;65583:7;65571:11;:20::i;:::-;:31;;;65515:87;65507:96;;;65347:264;;;;:::o;69346:1263::-;69505:4;69478:31;;:23;69493:7;69478:14;:23::i;:::-;:31;;;69470:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;69584:1;69570:16;;:2;:16;;;69562:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;69640:42;69661:4;69667:2;69671:7;69680:1;69640:20;:42::i;:::-;69812:4;69785:31;;:23;69800:7;69785:14;:23::i;:::-;:31;;;69777:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;69930:15;:24;69946:7;69930:24;;;;;;;;;;;;69923:31;;;;;;;;;;;70425:1;70406:9;:15;70416:4;70406:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;70458:1;70441:9;:13;70451:2;70441:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;70500:2;70481:7;:16;70489:7;70481:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;70539:7;70535:2;70520:27;;70529:4;70520:27;;;;;;;;;;;;70560:41;70580:4;70586:2;70590:7;70599:1;70560:19;:41::i;:::-;69346:1263;;;:::o;77193:915::-;77370:61;77397:4;77403:2;77407:12;77421:9;77370:26;:61::i;:::-;77460:1;77448:9;:13;77444:222;;;77591:63;;;;;;;;;;:::i;:::-;;;;;;;;77444:222;77678:15;77696:12;77678:30;;77741:1;77725:18;;:4;:18;;;77721:187;;77760:40;77792:7;77760:31;:40::i;:::-;77721:187;;;77830:2;77822:10;;:4;:10;;;77818:90;;77849:47;77882:4;77888:7;77849:32;:47::i;:::-;77818:90;77721:187;77936:1;77922:16;;:2;:16;;;77918:183;;77955:45;77992:7;77955:36;:45::i;:::-;77918:183;;;78028:4;78022:10;;:2;:10;;;78018:83;;78049:40;78077:2;78081:7;78049:27;:40::i;:::-;78018:83;77918:183;77359:749;77193:915;;;;:::o;74865:158::-;;;;;:::o;64195:313::-;64351:28;64361:4;64367:2;64371:7;64351:9;:28::i;:::-;64398:47;64421:4;64427:2;64431:7;64440:4;64398:22;:47::i;:::-;64390:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;64195:313;;;;:::o;16731:922::-;16784:7;16804:14;16821:1;16804:18;;16871:6;16862:5;:15;16858:102;;16907:6;16898:15;;;;;;:::i;:::-;;;;;16942:2;16932:12;;;;16858:102;16987:6;16978:5;:15;16974:102;;17023:6;17014:15;;;;;;:::i;:::-;;;;;17058:2;17048:12;;;;16974:102;17103:6;17094:5;:15;17090:102;;17139:6;17130:15;;;;;;:::i;:::-;;;;;17174:2;17164:12;;;;17090:102;17219:5;17210;:14;17206:99;;17254:5;17245:14;;;;;;:::i;:::-;;;;;17288:1;17278:11;;;;17206:99;17332:5;17323;:14;17319:99;;17367:5;17358:14;;;;;;:::i;:::-;;;;;17401:1;17391:11;;;;17319:99;17445:5;17436;:14;17432:99;;17480:5;17471:14;;;;;;:::i;:::-;;;;;17514:1;17504:11;;;;17432:99;17558:5;17549;:14;17545:66;;17594:1;17584:11;;;;17545:66;17639:6;17632:13;;;16731:922;;;:::o;34921:157::-;35006:4;35045:25;35030:40;;;:11;:40;;;;35023:47;;34921:157;;;:::o;66290:319::-;66419:18;66425:2;66429:7;66419:5;:18::i;:::-;66470:53;66501:1;66505:2;66509:7;66518:4;66470:22;:53::i;:::-;66448:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;66290:319;;;:::o;73733:410::-;73923:1;73911:9;:13;73907:229;;;73961:1;73945:18;;:4;:18;;;73941:87;;74003:9;73984;:15;73994:4;73984:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;73941:87;74060:1;74046:16;;:2;:16;;;74042:83;;74100:9;74083;:13;74093:2;74083:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;74042:83;73907:229;73733:410;;;;:::o;78831:164::-;78935:10;:17;;;;78908:15;:24;78924:7;78908:24;;;;;;;;;;;:44;;;;78963:10;78979:7;78963:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78831:164;:::o;79622:988::-;79888:22;79938:1;79913:22;79930:4;79913:16;:22::i;:::-;:26;;;;:::i;:::-;79888:51;;79950:18;79971:17;:26;79989:7;79971:26;;;;;;;;;;;;79950:47;;80118:14;80104:10;:28;80100:328;;80149:19;80171:12;:18;80184:4;80171:18;;;;;;;;;;;;;;;:34;80190:14;80171:34;;;;;;;;;;;;80149:56;;80255:11;80222:12;:18;80235:4;80222:18;;;;;;;;;;;;;;;:30;80241:10;80222:30;;;;;;;;;;;:44;;;;80372:10;80339:17;:30;80357:11;80339:30;;;;;;;;;;;:43;;;;80134:294;80100:328;80524:17;:26;80542:7;80524:26;;;;;;;;;;;80517:33;;;80568:12;:18;80581:4;80568:18;;;;;;;;;;;;;;;:34;80587:14;80568:34;;;;;;;;;;;80561:41;;;79703:907;;79622:988;;:::o;80905:1079::-;81158:22;81203:1;81183:10;:17;;;;:21;;;;:::i;:::-;81158:46;;81215:18;81236:15;:24;81252:7;81236:24;;;;;;;;;;;;81215:45;;81587:19;81609:10;81620:14;81609:26;;;;;;;;:::i;:::-;;;;;;;;;;81587:48;;81673:11;81648:10;81659;81648:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;81784:10;81753:15;:28;81769:11;81753:28;;;;;;;;;;;:41;;;;81925:15;:24;81941:7;81925:24;;;;;;;;;;;81918:31;;;81960:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;80976:1008;;;80905:1079;:::o;78409:221::-;78494:14;78511:20;78528:2;78511:16;:20::i;:::-;78494:37;;78569:7;78542:12;:16;78555:2;78542:16;;;;;;;;;;;;;;;:24;78559:6;78542:24;;;;;;;;;;;:34;;;;78616:6;78587:17;:26;78605:7;78587:26;;;;;;;;;;;:35;;;;78483:147;78409:221;;:::o;72148:853::-;72302:4;72323:15;:2;:13;;;:15::i;:::-;72319:675;;;72375:2;72359:36;;;72396:12;:10;:12::i;:::-;72410:4;72416:7;72425:4;72359:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;72355:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72617:1;72600:6;:13;:18;72596:328;;72643:60;;;;;;;;;;:::i;:::-;;;;;;;;72596:328;72874:6;72868:13;72859:6;72855:2;72851:15;72844:38;72355:584;72491:41;;;72481:51;;;:6;:51;;;;72474:58;;;;;72319:675;72978:4;72971:11;;72148:853;;;;;;;:::o;66945:942::-;67039:1;67025:16;;:2;:16;;;67017:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;67098:16;67106:7;67098;:16::i;:::-;67097:17;67089:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;67160:48;67189:1;67193:2;67197:7;67206:1;67160:20;:48::i;:::-;67307:16;67315:7;67307;:16::i;:::-;67306:17;67298:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;67722:1;67705:9;:13;67715:2;67705:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;67766:2;67747:7;:16;67755:7;67747:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;67811:7;67807:2;67786:33;;67803:1;67786:33;;;;;;;;;;;;67832:47;67860:1;67864:2;67868:7;67877:1;67832:19;:47::i;:::-;66945:942;;:::o;22992:326::-;23052:4;23309:1;23287:7;:19;;;:23;23280:30;;22992:326;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:329::-;2084:6;2133:2;2121:9;2112:7;2108:23;2104:32;2101:119;;;2139:79;;:::i;:::-;2101:119;2259:1;2284:53;2329:7;2320:6;2309:9;2305:22;2284:53;:::i;:::-;2274:63;;2230:117;2025:329;;;;:::o;2360:99::-;2412:6;2446:5;2440:12;2430:22;;2360:99;;;:::o;2465:169::-;2549:11;2583:6;2578:3;2571:19;2623:4;2618:3;2614:14;2599:29;;2465:169;;;;:::o;2640:246::-;2721:1;2731:113;2745:6;2742:1;2739:13;2731:113;;;2830:1;2825:3;2821:11;2815:18;2811:1;2806:3;2802:11;2795:39;2767:2;2764:1;2760:10;2755:15;;2731:113;;;2878:1;2869:6;2864:3;2860:16;2853:27;2702:184;2640:246;;;:::o;2892:102::-;2933:6;2984:2;2980:7;2975:2;2968:5;2964:14;2960:28;2950:38;;2892:102;;;:::o;3000:377::-;3088:3;3116:39;3149:5;3116:39;:::i;:::-;3171:71;3235:6;3230:3;3171:71;:::i;:::-;3164:78;;3251:65;3309:6;3304:3;3297:4;3290:5;3286:16;3251:65;:::i;:::-;3341:29;3363:6;3341:29;:::i;:::-;3336:3;3332:39;3325:46;;3092:285;3000:377;;;;:::o;3383:313::-;3496:4;3534:2;3523:9;3519:18;3511:26;;3583:9;3577:4;3573:20;3569:1;3558:9;3554:17;3547:47;3611:78;3684:4;3675:6;3611:78;:::i;:::-;3603:86;;3383:313;;;;:::o;3702:77::-;3739:7;3768:5;3757:16;;3702:77;;;:::o;3785:122::-;3858:24;3876:5;3858:24;:::i;:::-;3851:5;3848:35;3838:63;;3897:1;3894;3887:12;3838:63;3785:122;:::o;3913:139::-;3959:5;3997:6;3984:20;3975:29;;4013:33;4040:5;4013:33;:::i;:::-;3913:139;;;;:::o;4058:329::-;4117:6;4166:2;4154:9;4145:7;4141:23;4137:32;4134:119;;;4172:79;;:::i;:::-;4134:119;4292:1;4317:53;4362:7;4353:6;4342:9;4338:22;4317:53;:::i;:::-;4307:63;;4263:117;4058:329;;;;:::o;4393:118::-;4480:24;4498:5;4480:24;:::i;:::-;4475:3;4468:37;4393:118;;:::o;4517:222::-;4610:4;4648:2;4637:9;4633:18;4625:26;;4661:71;4729:1;4718:9;4714:17;4705:6;4661:71;:::i;:::-;4517:222;;;;:::o;4745:474::-;4813:6;4821;4870:2;4858:9;4849:7;4845:23;4841:32;4838:119;;;4876:79;;:::i;:::-;4838:119;4996:1;5021:53;5066:7;5057:6;5046:9;5042:22;5021:53;:::i;:::-;5011:63;;4967:117;5123:2;5149:53;5194:7;5185:6;5174:9;5170:22;5149:53;:::i;:::-;5139:63;;5094:118;4745:474;;;;;:::o;5225:116::-;5295:21;5310:5;5295:21;:::i;:::-;5288:5;5285:32;5275:60;;5331:1;5328;5321:12;5275:60;5225:116;:::o;5347:133::-;5390:5;5428:6;5415:20;5406:29;;5444:30;5468:5;5444:30;:::i;:::-;5347:133;;;;:::o;5486:323::-;5542:6;5591:2;5579:9;5570:7;5566:23;5562:32;5559:119;;;5597:79;;:::i;:::-;5559:119;5717:1;5742:50;5784:7;5775:6;5764:9;5760:22;5742:50;:::i;:::-;5732:60;;5688:114;5486:323;;;;:::o;5815:118::-;5902:24;5920:5;5902:24;:::i;:::-;5897:3;5890:37;5815:118;;:::o;5939:222::-;6032:4;6070:2;6059:9;6055:18;6047:26;;6083:71;6151:1;6140:9;6136:17;6127:6;6083:71;:::i;:::-;5939:222;;;;:::o;6167:619::-;6244:6;6252;6260;6309:2;6297:9;6288:7;6284:23;6280:32;6277:119;;;6315:79;;:::i;:::-;6277:119;6435:1;6460:53;6505:7;6496:6;6485:9;6481:22;6460:53;:::i;:::-;6450:63;;6406:117;6562:2;6588:53;6633:7;6624:6;6613:9;6609:22;6588:53;:::i;:::-;6578:63;;6533:118;6690:2;6716:53;6761:7;6752:6;6741:9;6737:22;6716:53;:::i;:::-;6706:63;;6661:118;6167:619;;;;;:::o;6792:474::-;6860:6;6868;6917:2;6905:9;6896:7;6892:23;6888:32;6885:119;;;6923:79;;:::i;:::-;6885:119;7043:1;7068:53;7113:7;7104:6;7093:9;7089:22;7068:53;:::i;:::-;7058:63;;7014:117;7170:2;7196:53;7241:7;7232:6;7221:9;7217:22;7196:53;:::i;:::-;7186:63;;7141:118;6792:474;;;;;:::o;7272:332::-;7393:4;7431:2;7420:9;7416:18;7408:26;;7444:71;7512:1;7501:9;7497:17;7488:6;7444:71;:::i;:::-;7525:72;7593:2;7582:9;7578:18;7569:6;7525:72;:::i;:::-;7272:332;;;;;:::o;7610:89::-;7646:7;7686:6;7679:5;7675:18;7664:29;;7610:89;;;:::o;7705:115::-;7790:23;7807:5;7790:23;:::i;:::-;7785:3;7778:36;7705:115;;:::o;7826:218::-;7917:4;7955:2;7944:9;7940:18;7932:26;;7968:69;8034:1;8023:9;8019:17;8010:6;7968:69;:::i;:::-;7826:218;;;;:::o;8050:114::-;8117:6;8151:5;8145:12;8135:22;;8050:114;;;:::o;8170:184::-;8269:11;8303:6;8298:3;8291:19;8343:4;8338:3;8334:14;8319:29;;8170:184;;;;:::o;8360:132::-;8427:4;8450:3;8442:11;;8480:4;8475:3;8471:14;8463:22;;8360:132;;;:::o;8498:108::-;8575:24;8593:5;8575:24;:::i;:::-;8570:3;8563:37;8498:108;;:::o;8612:179::-;8681:10;8702:46;8744:3;8736:6;8702:46;:::i;:::-;8780:4;8775:3;8771:14;8757:28;;8612:179;;;;:::o;8797:113::-;8867:4;8899;8894:3;8890:14;8882:22;;8797:113;;;:::o;8946:732::-;9065:3;9094:54;9142:5;9094:54;:::i;:::-;9164:86;9243:6;9238:3;9164:86;:::i;:::-;9157:93;;9274:56;9324:5;9274:56;:::i;:::-;9353:7;9384:1;9369:284;9394:6;9391:1;9388:13;9369:284;;;9470:6;9464:13;9497:63;9556:3;9541:13;9497:63;:::i;:::-;9490:70;;9583:60;9636:6;9583:60;:::i;:::-;9573:70;;9429:224;9416:1;9413;9409:9;9404:14;;9369:284;;;9373:14;9669:3;9662:10;;9070:608;;;8946:732;;;;:::o;9684:373::-;9827:4;9865:2;9854:9;9850:18;9842:26;;9914:9;9908:4;9904:20;9900:1;9889:9;9885:17;9878:47;9942:108;10045:4;10036:6;9942:108;:::i;:::-;9934:116;;9684:373;;;;:::o;10063:117::-;10172:1;10169;10162:12;10186:117;10295:1;10292;10285:12;10309:117;10418:1;10415;10408:12;10446:553;10504:8;10514:6;10564:3;10557:4;10549:6;10545:17;10541:27;10531:122;;10572:79;;:::i;:::-;10531:122;10685:6;10672:20;10662:30;;10715:18;10707:6;10704:30;10701:117;;;10737:79;;:::i;:::-;10701:117;10851:4;10843:6;10839:17;10827:29;;10905:3;10897:4;10889:6;10885:17;10875:8;10871:32;10868:41;10865:128;;;10912:79;;:::i;:::-;10865:128;10446:553;;;;;:::o;11005:529::-;11076:6;11084;11133:2;11121:9;11112:7;11108:23;11104:32;11101:119;;;11139:79;;:::i;:::-;11101:119;11287:1;11276:9;11272:17;11259:31;11317:18;11309:6;11306:30;11303:117;;;11339:79;;:::i;:::-;11303:117;11452:65;11509:7;11500:6;11489:9;11485:22;11452:65;:::i;:::-;11434:83;;;;11230:297;11005:529;;;;;:::o;11540:468::-;11605:6;11613;11662:2;11650:9;11641:7;11637:23;11633:32;11630:119;;;11668:79;;:::i;:::-;11630:119;11788:1;11813:53;11858:7;11849:6;11838:9;11834:22;11813:53;:::i;:::-;11803:63;;11759:117;11915:2;11941:50;11983:7;11974:6;11963:9;11959:22;11941:50;:::i;:::-;11931:60;;11886:115;11540:468;;;;;:::o;12014:60::-;12042:3;12063:5;12056:12;;12014:60;;;:::o;12080:142::-;12130:9;12163:53;12181:34;12190:24;12208:5;12190:24;:::i;:::-;12181:34;:::i;:::-;12163:53;:::i;:::-;12150:66;;12080:142;;;:::o;12228:126::-;12278:9;12311:37;12342:5;12311:37;:::i;:::-;12298:50;;12228:126;;;:::o;12360:142::-;12426:9;12459:37;12490:5;12459:37;:::i;:::-;12446:50;;12360:142;;;:::o;12508:163::-;12611:53;12658:5;12611:53;:::i;:::-;12606:3;12599:66;12508:163;;:::o;12677:254::-;12786:4;12824:2;12813:9;12809:18;12801:26;;12837:87;12921:1;12910:9;12906:17;12897:6;12837:87;:::i;:::-;12677:254;;;;:::o;12937:117::-;13046:1;13043;13036:12;13060:180;13108:77;13105:1;13098:88;13205:4;13202:1;13195:15;13229:4;13226:1;13219:15;13246:281;13329:27;13351:4;13329:27;:::i;:::-;13321:6;13317:40;13459:6;13447:10;13444:22;13423:18;13411:10;13408:34;13405:62;13402:88;;;13470:18;;:::i;:::-;13402:88;13510:10;13506:2;13499:22;13289:238;13246:281;;:::o;13533:129::-;13567:6;13594:20;;:::i;:::-;13584:30;;13623:33;13651:4;13643:6;13623:33;:::i;:::-;13533:129;;;:::o;13668:307::-;13729:4;13819:18;13811:6;13808:30;13805:56;;;13841:18;;:::i;:::-;13805:56;13879:29;13901:6;13879:29;:::i;:::-;13871:37;;13963:4;13957;13953:15;13945:23;;13668:307;;;:::o;13981:146::-;14078:6;14073:3;14068;14055:30;14119:1;14110:6;14105:3;14101:16;14094:27;13981:146;;;:::o;14133:423::-;14210:5;14235:65;14251:48;14292:6;14251:48;:::i;:::-;14235:65;:::i;:::-;14226:74;;14323:6;14316:5;14309:21;14361:4;14354:5;14350:16;14399:3;14390:6;14385:3;14381:16;14378:25;14375:112;;;14406:79;;:::i;:::-;14375:112;14496:54;14543:6;14538:3;14533;14496:54;:::i;:::-;14216:340;14133:423;;;;;:::o;14575:338::-;14630:5;14679:3;14672:4;14664:6;14660:17;14656:27;14646:122;;14687:79;;:::i;:::-;14646:122;14804:6;14791:20;14829:78;14903:3;14895:6;14888:4;14880:6;14876:17;14829:78;:::i;:::-;14820:87;;14636:277;14575:338;;;;:::o;14919:943::-;15014:6;15022;15030;15038;15087:3;15075:9;15066:7;15062:23;15058:33;15055:120;;;15094:79;;:::i;:::-;15055:120;15214:1;15239:53;15284:7;15275:6;15264:9;15260:22;15239:53;:::i;:::-;15229:63;;15185:117;15341:2;15367:53;15412:7;15403:6;15392:9;15388:22;15367:53;:::i;:::-;15357:63;;15312:118;15469:2;15495:53;15540:7;15531:6;15520:9;15516:22;15495:53;:::i;:::-;15485:63;;15440:118;15625:2;15614:9;15610:18;15597:32;15656:18;15648:6;15645:30;15642:117;;;15678:79;;:::i;:::-;15642:117;15783:62;15837:7;15828:6;15817:9;15813:22;15783:62;:::i;:::-;15773:72;;15568:287;14919:943;;;;;;;:::o;15928:517::-;16073:4;16068:3;16064:14;16163:4;16156:5;16152:16;16146:23;16182:63;16239:4;16234:3;16230:14;16216:12;16182:63;:::i;:::-;16088:167;16346:4;16339:5;16335:16;16329:23;16365:63;16422:4;16417:3;16413:14;16399:12;16365:63;:::i;:::-;16265:173;16042:403;15928:517;;:::o;16451:318::-;16592:4;16630:2;16619:9;16615:18;16607:26;;16643:119;16759:1;16748:9;16744:17;16735:6;16643:119;:::i;:::-;16451:318;;;;:::o;16775:474::-;16843:6;16851;16900:2;16888:9;16879:7;16875:23;16871:32;16868:119;;;16906:79;;:::i;:::-;16868:119;17026:1;17051:53;17096:7;17087:6;17076:9;17072:22;17051:53;:::i;:::-;17041:63;;16997:117;17153:2;17179:53;17224:7;17215:6;17204:9;17200:22;17179:53;:::i;:::-;17169:63;;17124:118;16775:474;;;;;:::o;17255:180::-;17303:77;17300:1;17293:88;17400:4;17397:1;17390:15;17424:4;17421:1;17414:15;17441:320;17485:6;17522:1;17516:4;17512:12;17502:22;;17569:1;17563:4;17559:12;17590:18;17580:81;;17646:4;17638:6;17634:17;17624:27;;17580:81;17708:2;17700:6;17697:14;17677:18;17674:38;17671:84;;17727:18;;:::i;:::-;17671:84;17492:269;17441:320;;;:::o;17767:220::-;17907:34;17903:1;17895:6;17891:14;17884:58;17976:3;17971:2;17963:6;17959:15;17952:28;17767:220;:::o;17993:366::-;18135:3;18156:67;18220:2;18215:3;18156:67;:::i;:::-;18149:74;;18232:93;18321:3;18232:93;:::i;:::-;18350:2;18345:3;18341:12;18334:19;;17993:366;;;:::o;18365:419::-;18531:4;18569:2;18558:9;18554:18;18546:26;;18618:9;18612:4;18608:20;18604:1;18593:9;18589:17;18582:47;18646:131;18772:4;18646:131;:::i;:::-;18638:139;;18365:419;;;:::o;18790:248::-;18930:34;18926:1;18918:6;18914:14;18907:58;18999:31;18994:2;18986:6;18982:15;18975:56;18790:248;:::o;19044:366::-;19186:3;19207:67;19271:2;19266:3;19207:67;:::i;:::-;19200:74;;19283:93;19372:3;19283:93;:::i;:::-;19401:2;19396:3;19392:12;19385:19;;19044:366;;;:::o;19416:419::-;19582:4;19620:2;19609:9;19605:18;19597:26;;19669:9;19663:4;19659:20;19655:1;19644:9;19640:17;19633:47;19697:131;19823:4;19697:131;:::i;:::-;19689:139;;19416:419;;;:::o;19841:180::-;19889:77;19886:1;19879:88;19986:4;19983:1;19976:15;20010:4;20007:1;20000:15;20027:410;20067:7;20090:20;20108:1;20090:20;:::i;:::-;20085:25;;20124:20;20142:1;20124:20;:::i;:::-;20119:25;;20179:1;20176;20172:9;20201:30;20219:11;20201:30;:::i;:::-;20190:41;;20380:1;20371:7;20367:15;20364:1;20361:22;20341:1;20334:9;20314:83;20291:139;;20410:18;;:::i;:::-;20291:139;20075:362;20027:410;;;;:::o;20443:180::-;20491:77;20488:1;20481:88;20588:4;20585:1;20578:15;20612:4;20609:1;20602:15;20629:185;20669:1;20686:20;20704:1;20686:20;:::i;:::-;20681:25;;20720:20;20738:1;20720:20;:::i;:::-;20715:25;;20759:1;20749:35;;20764:18;;:::i;:::-;20749:35;20806:1;20803;20799:9;20794:14;;20629:185;;;;:::o;20820:230::-;20960:34;20956:1;20948:6;20944:14;20937:58;21029:13;21024:2;21016:6;21012:15;21005:38;20820:230;:::o;21056:366::-;21198:3;21219:67;21283:2;21278:3;21219:67;:::i;:::-;21212:74;;21295:93;21384:3;21295:93;:::i;:::-;21413:2;21408:3;21404:12;21397:19;;21056:366;;;:::o;21428:419::-;21594:4;21632:2;21621:9;21617:18;21609:26;;21681:9;21675:4;21671:20;21667:1;21656:9;21652:17;21645:47;21709:131;21835:4;21709:131;:::i;:::-;21701:139;;21428:419;;;:::o;21853:231::-;21993:34;21989:1;21981:6;21977:14;21970:58;22062:14;22057:2;22049:6;22045:15;22038:39;21853:231;:::o;22090:366::-;22232:3;22253:67;22317:2;22312:3;22253:67;:::i;:::-;22246:74;;22329:93;22418:3;22329:93;:::i;:::-;22447:2;22442:3;22438:12;22431:19;;22090:366;;;:::o;22462:419::-;22628:4;22666:2;22655:9;22651:18;22643:26;;22715:9;22709:4;22705:20;22701:1;22690:9;22686:17;22679:47;22743:131;22869:4;22743:131;:::i;:::-;22735:139;;22462:419;;;:::o;22887:180::-;22935:77;22932:1;22925:88;23032:4;23029:1;23022:15;23056:4;23053:1;23046:15;23073:169;23111:3;23134:23;23151:5;23134:23;:::i;:::-;23125:32;;23179:4;23172:5;23169:15;23166:41;;23187:18;;:::i;:::-;23166:41;23234:1;23227:5;23223:13;23216:20;;23073:169;;;:::o;23248:233::-;23287:3;23310:24;23328:5;23310:24;:::i;:::-;23301:33;;23356:66;23349:5;23346:77;23343:103;;23426:18;;:::i;:::-;23343:103;23473:1;23466:5;23462:13;23455:20;;23248:233;;;:::o;23487:174::-;23627:26;23623:1;23615:6;23611:14;23604:50;23487:174;:::o;23667:366::-;23809:3;23830:67;23894:2;23889:3;23830:67;:::i;:::-;23823:74;;23906:93;23995:3;23906:93;:::i;:::-;24024:2;24019:3;24015:12;24008:19;;23667:366;;;:::o;24039:419::-;24205:4;24243:2;24232:9;24228:18;24220:26;;24292:9;24286:4;24282:20;24278:1;24267:9;24263:17;24256:47;24320:131;24446:4;24320:131;:::i;:::-;24312:139;;24039:419;;;:::o;24464:97::-;24523:6;24551:3;24541:13;;24464:97;;;;:::o;24567:141::-;24616:4;24639:3;24631:11;;24662:3;24659:1;24652:14;24696:4;24693:1;24683:18;24675:26;;24567:141;;;:::o;24714:93::-;24751:6;24798:2;24793;24786:5;24782:14;24778:23;24768:33;;24714:93;;;:::o;24813:107::-;24857:8;24907:5;24901:4;24897:16;24876:37;;24813:107;;;;:::o;24926:393::-;24995:6;25045:1;25033:10;25029:18;25068:97;25098:66;25087:9;25068:97;:::i;:::-;25186:39;25216:8;25205:9;25186:39;:::i;:::-;25174:51;;25258:4;25254:9;25247:5;25243:21;25234:30;;25307:4;25297:8;25293:19;25286:5;25283:30;25273:40;;25002:317;;24926:393;;;;;:::o;25325:142::-;25375:9;25408:53;25426:34;25435:24;25453:5;25435:24;:::i;:::-;25426:34;:::i;:::-;25408:53;:::i;:::-;25395:66;;25325:142;;;:::o;25473:75::-;25516:3;25537:5;25530:12;;25473:75;;;:::o;25554:269::-;25664:39;25695:7;25664:39;:::i;:::-;25725:91;25774:41;25798:16;25774:41;:::i;:::-;25766:6;25759:4;25753:11;25725:91;:::i;:::-;25719:4;25712:105;25630:193;25554:269;;;:::o;25829:73::-;25874:3;25829:73;:::o;25908:189::-;25985:32;;:::i;:::-;26026:65;26084:6;26076;26070:4;26026:65;:::i;:::-;25961:136;25908:189;;:::o;26103:186::-;26163:120;26180:3;26173:5;26170:14;26163:120;;;26234:39;26271:1;26264:5;26234:39;:::i;:::-;26207:1;26200:5;26196:13;26187:22;;26163:120;;;26103:186;;:::o;26295:543::-;26396:2;26391:3;26388:11;26385:446;;;26430:38;26462:5;26430:38;:::i;:::-;26514:29;26532:10;26514:29;:::i;:::-;26504:8;26500:44;26697:2;26685:10;26682:18;26679:49;;;26718:8;26703:23;;26679:49;26741:80;26797:22;26815:3;26797:22;:::i;:::-;26787:8;26783:37;26770:11;26741:80;:::i;:::-;26400:431;;26385:446;26295:543;;;:::o;26844:117::-;26898:8;26948:5;26942:4;26938:16;26917:37;;26844:117;;;;:::o;26967:169::-;27011:6;27044:51;27092:1;27088:6;27080:5;27077:1;27073:13;27044:51;:::i;:::-;27040:56;27125:4;27119;27115:15;27105:25;;27018:118;26967:169;;;;:::o;27141:295::-;27217:4;27363:29;27388:3;27382:4;27363:29;:::i;:::-;27355:37;;27425:3;27422:1;27418:11;27412:4;27409:21;27401:29;;27141:295;;;;:::o;27441:1403::-;27565:44;27605:3;27600;27565:44;:::i;:::-;27674:18;27666:6;27663:30;27660:56;;;27696:18;;:::i;:::-;27660:56;27740:38;27772:4;27766:11;27740:38;:::i;:::-;27825:67;27885:6;27877;27871:4;27825:67;:::i;:::-;27919:1;27948:2;27940:6;27937:14;27965:1;27960:632;;;;28636:1;28653:6;28650:84;;;28709:9;28704:3;28700:19;28687:33;28678:42;;28650:84;28760:67;28820:6;28813:5;28760:67;:::i;:::-;28754:4;28747:81;28609:229;27930:908;;27960:632;28012:4;28008:9;28000:6;27996:22;28046:37;28078:4;28046:37;:::i;:::-;28105:1;28119:215;28133:7;28130:1;28127:14;28119:215;;;28219:9;28214:3;28210:19;28197:33;28189:6;28182:49;28270:1;28262:6;28258:14;28248:24;;28317:2;28306:9;28302:18;28289:31;;28156:4;28153:1;28149:12;28144:17;;28119:215;;;28362:6;28353:7;28350:19;28347:186;;;28427:9;28422:3;28418:19;28405:33;28470:48;28512:4;28504:6;28500:17;28489:9;28470:48;:::i;:::-;28462:6;28455:64;28370:163;28347:186;28579:1;28575;28567:6;28563:14;28559:22;28553:4;28546:36;27967:625;;;27930:908;;27540:1304;;;27441:1403;;;:::o;28850:228::-;28990:34;28986:1;28978:6;28974:14;28967:58;29059:11;29054:2;29046:6;29042:15;29035:36;28850:228;:::o;29084:366::-;29226:3;29247:67;29311:2;29306:3;29247:67;:::i;:::-;29240:74;;29323:93;29412:3;29323:93;:::i;:::-;29441:2;29436:3;29432:12;29425:19;;29084:366;;;:::o;29456:419::-;29622:4;29660:2;29649:9;29645:18;29637:26;;29709:9;29703:4;29699:20;29695:1;29684:9;29680:17;29673:47;29737:131;29863:4;29737:131;:::i;:::-;29729:139;;29456:419;;;:::o;29881:171::-;29919:3;29942:23;29959:5;29942:23;:::i;:::-;29933:32;;29987:6;29980:5;29977:17;29974:43;;29997:18;;:::i;:::-;29974:43;30044:1;30037:5;30033:13;30026:20;;29881:171;;;:::o;30058:182::-;30198:34;30194:1;30186:6;30182:14;30175:58;30058:182;:::o;30246:366::-;30388:3;30409:67;30473:2;30468:3;30409:67;:::i;:::-;30402:74;;30485:93;30574:3;30485:93;:::i;:::-;30603:2;30598:3;30594:12;30587:19;;30246:366;;;:::o;30618:419::-;30784:4;30822:2;30811:9;30807:18;30799:26;;30871:9;30865:4;30861:20;30857:1;30846:9;30842:17;30835:47;30899:131;31025:4;30899:131;:::i;:::-;30891:139;;30618:419;;;:::o;31043:194::-;31083:4;31103:20;31121:1;31103:20;:::i;:::-;31098:25;;31137:20;31155:1;31137:20;:::i;:::-;31132:25;;31181:1;31178;31174:9;31166:17;;31205:1;31199:4;31196:11;31193:37;;;31210:18;;:::i;:::-;31193:37;31043:194;;;;:::o;31243:148::-;31345:11;31382:3;31367:18;;31243:148;;;;:::o;31421:874::-;31524:3;31561:5;31555:12;31590:36;31616:9;31590:36;:::i;:::-;31642:89;31724:6;31719:3;31642:89;:::i;:::-;31635:96;;31762:1;31751:9;31747:17;31778:1;31773:166;;;;31953:1;31948:341;;;;31740:549;;31773:166;31857:4;31853:9;31842;31838:25;31833:3;31826:38;31919:6;31912:14;31905:22;31897:6;31893:35;31888:3;31884:45;31877:52;;31773:166;;31948:341;32015:38;32047:5;32015:38;:::i;:::-;32075:1;32089:154;32103:6;32100:1;32097:13;32089:154;;;32177:7;32171:14;32167:1;32162:3;32158:11;32151:35;32227:1;32218:7;32214:15;32203:26;;32125:4;32122:1;32118:12;32113:17;;32089:154;;;32272:6;32267:3;32263:16;32256:23;;31955:334;;31740:549;;31528:767;;31421:874;;;;:::o;32301:423::-;32475:3;32497:92;32585:3;32576:6;32497:92;:::i;:::-;32490:99;;32606:92;32694:3;32685:6;32606:92;:::i;:::-;32599:99;;32715:3;32708:10;;32301:423;;;;;:::o;32730:390::-;32836:3;32864:39;32897:5;32864:39;:::i;:::-;32919:89;33001:6;32996:3;32919:89;:::i;:::-;32912:96;;33017:65;33075:6;33070:3;33063:4;33056:5;33052:16;33017:65;:::i;:::-;33107:6;33102:3;33098:16;33091:23;;32840:280;32730:390;;;;:::o;33126:429::-;33303:3;33325:92;33413:3;33404:6;33325:92;:::i;:::-;33318:99;;33434:95;33525:3;33516:6;33434:95;:::i;:::-;33427:102;;33546:3;33539:10;;33126:429;;;;;:::o;33561:225::-;33701:34;33697:1;33689:6;33685:14;33678:58;33770:8;33765:2;33757:6;33753:15;33746:33;33561:225;:::o;33792:366::-;33934:3;33955:67;34019:2;34014:3;33955:67;:::i;:::-;33948:74;;34031:93;34120:3;34031:93;:::i;:::-;34149:2;34144:3;34140:12;34133:19;;33792:366;;;:::o;34164:419::-;34330:4;34368:2;34357:9;34353:18;34345:26;;34417:9;34411:4;34407:20;34403:1;34392:9;34388:17;34381:47;34445:131;34571:4;34445:131;:::i;:::-;34437:139;;34164:419;;;:::o;34589:182::-;34729:34;34725:1;34717:6;34713:14;34706:58;34589:182;:::o;34777:366::-;34919:3;34940:67;35004:2;34999:3;34940:67;:::i;:::-;34933:74;;35016:93;35105:3;35016:93;:::i;:::-;35134:2;35129:3;35125:12;35118:19;;34777:366;;;:::o;35149:419::-;35315:4;35353:2;35342:9;35338:18;35330:26;;35402:9;35396:4;35392:20;35388:1;35377:9;35373:17;35366:47;35430:131;35556:4;35430:131;:::i;:::-;35422:139;;35149:419;;;:::o;35574:166::-;35714:18;35710:1;35702:6;35698:14;35691:42;35574:166;:::o;35746:366::-;35888:3;35909:67;35973:2;35968:3;35909:67;:::i;:::-;35902:74;;35985:93;36074:3;35985:93;:::i;:::-;36103:2;36098:3;36094:12;36087:19;;35746:366;;;:::o;36118:419::-;36284:4;36322:2;36311:9;36307:18;36299:26;;36371:9;36365:4;36361:20;36357:1;36346:9;36342:17;36335:47;36399:131;36525:4;36399:131;:::i;:::-;36391:139;;36118:419;;;:::o;36543:181::-;36683:33;36679:1;36671:6;36667:14;36660:57;36543:181;:::o;36730:366::-;36872:3;36893:67;36957:2;36952:3;36893:67;:::i;:::-;36886:74;;36969:93;37058:3;36969:93;:::i;:::-;37087:2;37082:3;37078:12;37071:19;;36730:366;;;:::o;37102:419::-;37268:4;37306:2;37295:9;37291:18;37283:26;;37355:9;37349:4;37345:20;37341:1;37330:9;37326:17;37319:47;37383:131;37509:4;37383:131;:::i;:::-;37375:139;;37102:419;;;:::o;37527:193::-;37566:3;37585:19;37602:1;37585:19;:::i;:::-;37580:24;;37618:19;37635:1;37618:19;:::i;:::-;37613:24;;37660:1;37657;37653:9;37646:16;;37683:6;37678:3;37675:15;37672:41;;;37693:18;;:::i;:::-;37672:41;37527:193;;;;:::o;37726:232::-;37866:34;37862:1;37854:6;37850:14;37843:58;37935:15;37930:2;37922:6;37918:15;37911:40;37726:232;:::o;37964:366::-;38106:3;38127:67;38191:2;38186:3;38127:67;:::i;:::-;38120:74;;38203:93;38292:3;38203:93;:::i;:::-;38321:2;38316:3;38312:12;38305:19;;37964:366;;;:::o;38336:419::-;38502:4;38540:2;38529:9;38525:18;38517:26;;38589:9;38583:4;38579:20;38575:1;38564:9;38560:17;38553:47;38617:131;38743:4;38617:131;:::i;:::-;38609:139;;38336:419;;;:::o;38761:175::-;38901:27;38897:1;38889:6;38885:14;38878:51;38761:175;:::o;38942:366::-;39084:3;39105:67;39169:2;39164:3;39105:67;:::i;:::-;39098:74;;39181:93;39270:3;39181:93;:::i;:::-;39299:2;39294:3;39290:12;39283:19;;38942:366;;;:::o;39314:419::-;39480:4;39518:2;39507:9;39503:18;39495:26;;39567:9;39561:4;39557:20;39553:1;39542:9;39538:17;39531:47;39595:131;39721:4;39595:131;:::i;:::-;39587:139;;39314:419;;;:::o;39739:170::-;39879:22;39875:1;39867:6;39863:14;39856:46;39739:170;:::o;39915:366::-;40057:3;40078:67;40142:2;40137:3;40078:67;:::i;:::-;40071:74;;40154:93;40243:3;40154:93;:::i;:::-;40272:2;40267:3;40263:12;40256:19;;39915:366;;;:::o;40287:419::-;40453:4;40491:2;40480:9;40476:18;40468:26;;40540:9;40534:4;40530:20;40526:1;40515:9;40511:17;40504:47;40568:131;40694:4;40568:131;:::i;:::-;40560:139;;40287:419;;;:::o;40712:224::-;40852:34;40848:1;40840:6;40836:14;40829:58;40921:7;40916:2;40908:6;40904:15;40897:32;40712:224;:::o;40942:366::-;41084:3;41105:67;41169:2;41164:3;41105:67;:::i;:::-;41098:74;;41181:93;41270:3;41181:93;:::i;:::-;41299:2;41294:3;41290:12;41283:19;;40942:366;;;:::o;41314:419::-;41480:4;41518:2;41507:9;41503:18;41495:26;;41567:9;41561:4;41557:20;41553:1;41542:9;41538:17;41531:47;41595:131;41721:4;41595:131;:::i;:::-;41587:139;;41314:419;;;:::o;41739:223::-;41879:34;41875:1;41867:6;41863:14;41856:58;41948:6;41943:2;41935:6;41931:15;41924:31;41739:223;:::o;41968:366::-;42110:3;42131:67;42195:2;42190:3;42131:67;:::i;:::-;42124:74;;42207:93;42296:3;42207:93;:::i;:::-;42325:2;42320:3;42316:12;42309:19;;41968:366;;;:::o;42340:419::-;42506:4;42544:2;42533:9;42529:18;42521:26;;42593:9;42587:4;42583:20;42579:1;42568:9;42564:17;42557:47;42621:131;42747:4;42621:131;:::i;:::-;42613:139;;42340:419;;;:::o;42765:240::-;42905:34;42901:1;42893:6;42889:14;42882:58;42974:23;42969:2;42961:6;42957:15;42950:48;42765:240;:::o;43011:366::-;43153:3;43174:67;43238:2;43233:3;43174:67;:::i;:::-;43167:74;;43250:93;43339:3;43250:93;:::i;:::-;43368:2;43363:3;43359:12;43352:19;;43011:366;;;:::o;43383:419::-;43549:4;43587:2;43576:9;43572:18;43564:26;;43636:9;43630:4;43626:20;43622:1;43611:9;43607:17;43600:47;43664:131;43790:4;43664:131;:::i;:::-;43656:139;;43383:419;;;:::o;43808:237::-;43948:34;43944:1;43936:6;43932:14;43925:58;44017:20;44012:2;44004:6;44000:15;43993:45;43808:237;:::o;44051:366::-;44193:3;44214:67;44278:2;44273:3;44214:67;:::i;:::-;44207:74;;44290:93;44379:3;44290:93;:::i;:::-;44408:2;44403:3;44399:12;44392:19;;44051:366;;;:::o;44423:419::-;44589:4;44627:2;44616:9;44612:18;44604:26;;44676:9;44670:4;44666:20;44662:1;44651:9;44647:17;44640:47;44704:131;44830:4;44704:131;:::i;:::-;44696:139;;44423:419;;;:::o;44848:191::-;44888:3;44907:20;44925:1;44907:20;:::i;:::-;44902:25;;44941:20;44959:1;44941:20;:::i;:::-;44936:25;;44984:1;44981;44977:9;44970:16;;45005:3;45002:1;44999:10;44996:36;;;45012:18;;:::i;:::-;44996:36;44848:191;;;;:::o;45045:180::-;45093:77;45090:1;45083:88;45190:4;45187:1;45180:15;45214:4;45211:1;45204:15;45231:98;45282:6;45316:5;45310:12;45300:22;;45231:98;;;:::o;45335:168::-;45418:11;45452:6;45447:3;45440:19;45492:4;45487:3;45483:14;45468:29;;45335:168;;;;:::o;45509:373::-;45595:3;45623:38;45655:5;45623:38;:::i;:::-;45677:70;45740:6;45735:3;45677:70;:::i;:::-;45670:77;;45756:65;45814:6;45809:3;45802:4;45795:5;45791:16;45756:65;:::i;:::-;45846:29;45868:6;45846:29;:::i;:::-;45841:3;45837:39;45830:46;;45599:283;45509:373;;;;:::o;45888:640::-;46083:4;46121:3;46110:9;46106:19;46098:27;;46135:71;46203:1;46192:9;46188:17;46179:6;46135:71;:::i;:::-;46216:72;46284:2;46273:9;46269:18;46260:6;46216:72;:::i;:::-;46298;46366:2;46355:9;46351:18;46342:6;46298:72;:::i;:::-;46417:9;46411:4;46407:20;46402:2;46391:9;46387:18;46380:48;46445:76;46516:4;46507:6;46445:76;:::i;:::-;46437:84;;45888:640;;;;;;;:::o;46534:141::-;46590:5;46621:6;46615:13;46606:22;;46637:32;46663:5;46637:32;:::i;:::-;46534:141;;;;:::o;46681:349::-;46750:6;46799:2;46787:9;46778:7;46774:23;46770:32;46767:119;;;46805:79;;:::i;:::-;46767:119;46925:1;46950:63;47005:7;46996:6;46985:9;46981:22;46950:63;:::i;:::-;46940:73;;46896:127;46681:349;;;;:::o;47036:182::-;47176:34;47172:1;47164:6;47160:14;47153:58;47036:182;:::o;47224:366::-;47366:3;47387:67;47451:2;47446:3;47387:67;:::i;:::-;47380:74;;47463:93;47552:3;47463:93;:::i;:::-;47581:2;47576:3;47572:12;47565:19;;47224:366;;;:::o;47596:419::-;47762:4;47800:2;47789:9;47785:18;47777:26;;47849:9;47843:4;47839:20;47835:1;47824:9;47820:17;47813:47;47877:131;48003:4;47877:131;:::i;:::-;47869:139;;47596:419;;;:::o;48021:178::-;48161:30;48157:1;48149:6;48145:14;48138:54;48021:178;:::o;48205:366::-;48347:3;48368:67;48432:2;48427:3;48368:67;:::i;:::-;48361:74;;48444:93;48533:3;48444:93;:::i;:::-;48562:2;48557:3;48553:12;48546:19;;48205:366;;;:::o;48577:419::-;48743:4;48781:2;48770:9;48766:18;48758:26;;48830:9;48824:4;48820:20;48816:1;48805:9;48801:17;48794:47;48858:131;48984:4;48858:131;:::i;:::-;48850:139;;48577:419;;;:::o

Swarm Source

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