ETH Price: $3,294.45 (-0.56%)
Gas: 7 Gwei

Token

GolemZ Genesis (GLZG)
 

Overview

Max Total Supply

888 GLZG

Holders

500

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GLZG
0x58Ba1BC548b4F5CB439E07a8D2ccEa2987b424a2
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A project made by IsmToys, the GolemZ Genesis is a collection of 888 hand-drawn NFTs with accompanying/matching 1of1 hand-painted toys connected through NFC technology.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GolemZ

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

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


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;




/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

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

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

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

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

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

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

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

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

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

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

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

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

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

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

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

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

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

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

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

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

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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


// 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/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _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: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

        _balances[to] += 1;
        _owners[tokenId] = to;

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: GolemZ.sol


pragma solidity ^0.8.11;






contract GolemZ is ERC721, Ownable, PaymentSplitter {
    using Counters for Counters.Counter;
    using SafeMath for uint256;

    Counters.Counter private _tokenIdCounter;
    
    //---------Variables-------------
    //  Max amount of tokens
    uint256 public maxAmntTokens;
    //  Max amount of tokens per transaction
    uint256 public maxTknPerTxs;
    //  Price per NFT
    uint256 public price;
    //  Max NFTs pre sale per wallet
    uint256 public maxNFTsPresale;
    //  Max mints pre sale
    uint256 public maxMintsPreSale;
    //  URI control
    string newURI;
    //  Sale is active
    bool public saleIsActive;
    //  URI locked
    bool public URIlocked;
    //  Ownership Locked
    bool public ownershipLocked;
    //  Pre sale control
    bool public preSaleIsActive;
    //   Reserve List Pre-Sale
    mapping(address => bool) public reserveListPreSale;
    //   Reserve List Pre-Sale counter
    mapping(address => uint) public reserveListPreSaleCounter;

    constructor(address[] memory _payees, uint256[] memory _shares) ERC721("GolemZ Genesis", "GLZG") PaymentSplitter(_payees, _shares) payable {
        //  Max amount of tokens
        maxAmntTokens = 888;
        //  Max tokens per transaction
        maxTknPerTxs = 3;
        //  Price per NFT in wei
        price = 100000000000000000 wei;
        //  Deactivate sale
        saleIsActive = false;
        //  Unlock URI
        URIlocked = false;
        //  Ownership locked
        ownershipLocked = false;
        //  Max NFTs pre sale per wallet
        maxNFTsPresale = 1;
        //  Pre sale control
        preSaleIsActive = false;
        //  Max mints pre sale
        maxMintsPreSale = 1;
    }

    // Add addresses to the reserveListPreSale mapping
    function addPreSaleAddresses(address[] calldata _users) public onlyOwner {
        for(uint i = 0; i < _users.length; i++) {
            reserveListPreSale[_users[i]] = true;
        }    
    }

    //  Controls pre sale
    function flipPreSaleState () public onlyOwner {
        preSaleIsActive = !preSaleIsActive;
    }

    //  Total supply for etherscan
    function totalSupply() public view returns (uint256) {
        return maxAmntTokens;
    } 
    
    //  Flip sale state
    function flipSaleState() public onlyOwner{
        saleIsActive = !saleIsActive;
    }
    
    //  Reserve NFTs, this won't cost ETH 
    function reserveNFT(uint256 reservedTokens)public onlyOwner{
        require ((reservedTokens.add(checkMintedTokens()) <= maxAmntTokens), "You are minting more NFTs than there are available, mint less tokens!");
        require (reservedTokens <= 20, "Sorry, the max amount of reserved tokens per transaction is set to 20");
        
        for (uint i=0; i<reservedTokens; i++){
            safeMint(msg.sender);
        }
    }
    
    //  Modify URI
    function changeURI(string calldata _newURI) public onlyOwner{
        require (URIlocked == false, "URI locked, you can't change it anymore");
        newURI = _newURI;
    }

    //  Lock URI
    function lockURI() public onlyOwner {
        require(URIlocked == false, "URI already locked");
        URIlocked = true;
    }
    
    //  Base URI function, this won't be callable, you will use the changeURI function instead
    function _baseURI() internal view override returns (string memory) {
        return newURI;
    }
    
    //  Base mint function, this won't be callable, you will use the mintNFT function instead
    function safeMint(address to) internal{
        _safeMint(to, _tokenIdCounter.current());
        _tokenIdCounter.increment();
    }
    
    //  Check amount of already minted NFTs
    function checkMintedTokens() public view returns(uint256) {
        return(_tokenIdCounter._value);
    }
    
    //  Function to mint tokens, this is the function that you are going to use
    //  instead of safeMint
    function mintNFT(uint256 amountTokens) public payable {

        if (preSaleIsActive) {
            require (reserveListPreSale[msg.sender], "You are not part of the pre sale.");
            require (amountTokens + reserveListPreSaleCounter[msg.sender] == maxMintsPreSale, "You are allowed to mint a max of 1 NFTs in the presale phase.");             
        }
        
        //  Requires that the sale state is active
        require(saleIsActive, "Sale is not active at this moment");
        
        //  Requires that the amount of tokens user wants to mint + already minted tokens don't surpass the available tokens
        require ((amountTokens.add(checkMintedTokens()) <= maxAmntTokens), "You are minting more NFTs than there are available, mint less tokens!");
        require (amountTokens <= maxTknPerTxs, "Sorry, the max amount of tokens per transaction is set to 3");
        
        //  Requires the correct amount of ETH
        require (msg.value == (price.mul(amountTokens)), "Amount of Ether incorrect, try again.");
        
        //  Internal mint function
        for (uint i=0; i<amountTokens; i++){
            safeMint(msg.sender);
        }

        if (preSaleIsActive) {
            //  Update the mint count of the user
            reserveListPreSaleCounter[msg.sender] += amountTokens;
        }
        
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_payees","type":"address[]"},{"internalType":"uint256[]","name":"_shares","type":"uint256[]"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"URIlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addPreSaleAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"changeURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checkMintedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxAmntTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPreSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNFTsPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTknPerTxs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountTokens","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","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":"ownershipLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"reserveListPreSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"reserveListPreSaleCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reservedTokens","type":"uint256"}],"name":"reserveNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526040516200637338038062006373833981810160405281019062000029919062000946565b81816040518060400160405280600e81526020017f476f6c656d5a2047656e657369730000000000000000000000000000000000008152506040518060400160405280600481526020017f474c5a47000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000af92919062000597565b508060019080519060200190620000c892919062000597565b505050620000eb620000df6200028f60201b60201c565b6200029760201b60201c565b805182511462000132576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001299062000a52565b60405180910390fd5b600082511162000179576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001709062000ac4565b60405180910390fd5b60005b8251811015620001e857620001d2838281518110620001a0576200019f62000ae6565b5b6020026020010151838381518110620001be57620001bd62000ae6565b5b60200260200101516200035d60201b60201c565b8080620001df9062000b44565b9150506200017c565b505050610378600f81905550600360108190555067016345785d8a00006011819055506000601560006101000a81548160ff0219169083151502179055506000601560016101000a81548160ff0219169083151502179055506000601560026101000a81548160ff02191690831515021790555060016012819055506000601560036101000a81548160ff0219169083151502179055506001601381905550505062000e45565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c79062000c08565b60405180910390fd5b6000811162000416576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200040d9062000c7a565b60405180910390fd5b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146200049b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004929062000d12565b60405180910390fd5b600b829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508060075462000552919062000d34565b6007819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac82826040516200058b92919062000db3565b60405180910390a15050565b828054620005a59062000e0f565b90600052602060002090601f016020900481019282620005c9576000855562000615565b82601f10620005e457805160ff191683800117855562000615565b8280016001018555821562000615579182015b8281111562000614578251825591602001919060010190620005f7565b5b50905062000624919062000628565b5090565b5b808211156200064357600081600090555060010162000629565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620006ab8262000660565b810181811067ffffffffffffffff82111715620006cd57620006cc62000671565b5b80604052505050565b6000620006e262000647565b9050620006f08282620006a0565b919050565b600067ffffffffffffffff82111562000713576200071262000671565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007568262000729565b9050919050565b620007688162000749565b81146200077457600080fd5b50565b60008151905062000788816200075d565b92915050565b6000620007a56200079f84620006f5565b620006d6565b90508083825260208201905060208402830185811115620007cb57620007ca62000724565b5b835b81811015620007f85780620007e3888262000777565b845260208401935050602081019050620007cd565b5050509392505050565b600082601f8301126200081a57620008196200065b565b5b81516200082c8482602086016200078e565b91505092915050565b600067ffffffffffffffff82111562000853576200085262000671565b5b602082029050602081019050919050565b6000819050919050565b620008798162000864565b81146200088557600080fd5b50565b60008151905062000899816200086e565b92915050565b6000620008b6620008b08462000835565b620006d6565b90508083825260208201905060208402830185811115620008dc57620008db62000724565b5b835b81811015620009095780620008f4888262000888565b845260208401935050602081019050620008de565b5050509392505050565b600082601f8301126200092b576200092a6200065b565b5b81516200093d8482602086016200089f565b91505092915050565b6000806040838503121562000960576200095f62000651565b5b600083015167ffffffffffffffff81111562000981576200098062000656565b5b6200098f8582860162000802565b925050602083015167ffffffffffffffff811115620009b357620009b262000656565b5b620009c18582860162000913565b9150509250929050565b600082825260208201905092915050565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b600062000a3a603283620009cb565b915062000a4782620009dc565b604082019050919050565b6000602082019050818103600083015262000a6d8162000a2b565b9050919050565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b600062000aac601a83620009cb565b915062000ab98262000a74565b602082019050919050565b6000602082019050818103600083015262000adf8162000a9d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b518262000864565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000b875762000b8662000b15565b5b600182019050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b600062000bf0602c83620009cb565b915062000bfd8262000b92565b604082019050919050565b6000602082019050818103600083015262000c238162000be1565b9050919050565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b600062000c62601d83620009cb565b915062000c6f8262000c2a565b602082019050919050565b6000602082019050818103600083015262000c958162000c53565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b600062000cfa602b83620009cb565b915062000d078262000c9c565b604082019050919050565b6000602082019050818103600083015262000d2d8162000ceb565b9050919050565b600062000d418262000864565b915062000d4e8362000864565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d865762000d8562000b15565b5b828201905092915050565b62000d9c8162000749565b82525050565b62000dad8162000864565b82525050565b600060408201905062000dca600083018562000d91565b62000dd9602083018462000da2565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e2857607f821691505b6020821081141562000e3f5762000e3e62000de0565b5b50919050565b61551e8062000e556000396000f3fe6080604052600436106102765760003560e01c80637dd96a051161014f578063c87b56dd116100c1578063e41c75db1161007a578063e41c75db146109ca578063e5e01c11146109f5578063e985e9c514610a1e578063eb8d244414610a5b578063f032554914610a86578063f2fde38b14610a9d576102bd565b8063c87b56dd14610892578063ce7c2ac2146108cf578063d79779b21461090c578063dfe6425c14610949578063e07f37a714610974578063e33b7de31461099f576102bd565b80639264274411610113578063926427441461079157806395d89b41146107ad5780639852595c146107d8578063a035b1fe14610815578063a22cb46514610840578063b88d4fde14610869576102bd565b80637dd96a05146106bc57806384263d09146106e75780638b83209b146107125780638da5cb5b1461074f5780638e021c061461077a576102bd565b8063397be3fd116101e857806348b75044116101ac57806348b75044146105ae5780635a01f953146105d757806362625fb4146106005780636352211e1461062b57806370a0823114610668578063715018a6146106a5576102bd565b8063397be3fd146104b75780633a98ef39146104e05780633b213e921461050b578063406072a91461054857806342842e0e14610585576102bd565b806318160ddd1161023a57806318160ddd146103cd57806319165587146103f85780631d677431146104215780631f0234d81461044c57806323b872dd1461047757806334918dfd146104a0576102bd565b806301ffc9a7146102c257806306fdde03146102ff578063081812fc1461032a578063095ea7b31461036757806314368c8e14610390576102bd565b366102bd577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102a4610ac6565b346040516102b3929190613614565b60405180910390a1005b600080fd5b3480156102ce57600080fd5b506102e960048036038101906102e491906136a9565b610ace565b6040516102f691906136f1565b60405180910390f35b34801561030b57600080fd5b50610314610bb0565b60405161032191906137a5565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c91906137f3565b610c42565b60405161035e9190613820565b60405180910390f35b34801561037357600080fd5b5061038e60048036038101906103899190613867565b610cc7565b005b34801561039c57600080fd5b506103b760048036038101906103b291906138a7565b610ddf565b6040516103c491906138d4565b60405180910390f35b3480156103d957600080fd5b506103e2610df7565b6040516103ef91906138d4565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a919061392d565b610e01565b005b34801561042d57600080fd5b50610436610fac565b60405161044391906138d4565b60405180910390f35b34801561045857600080fd5b50610461610fb2565b60405161046e91906136f1565b60405180910390f35b34801561048357600080fd5b5061049e6004803603810190610499919061395a565b610fc5565b005b3480156104ac57600080fd5b506104b5611025565b005b3480156104c357600080fd5b506104de60048036038101906104d991906137f3565b6110cd565b005b3480156104ec57600080fd5b506104f5611216565b60405161050291906138d4565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d91906138a7565b611220565b60405161053f91906136f1565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a91906139eb565b611240565b60405161057c91906138d4565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a7919061395a565b6112c7565b005b3480156105ba57600080fd5b506105d560048036038101906105d091906139eb565b6112e7565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190613a90565b6115a0565b005b34801561060c57600080fd5b506106156116c1565b60405161062291906138d4565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d91906137f3565b6116c7565b60405161065f9190613820565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a91906138a7565b611779565b60405161069c91906138d4565b60405180910390f35b3480156106b157600080fd5b506106ba611831565b005b3480156106c857600080fd5b506106d16118b9565b6040516106de91906138d4565b60405180910390f35b3480156106f357600080fd5b506106fc6118bf565b60405161070991906138d4565b60405180910390f35b34801561071e57600080fd5b50610739600480360381019061073491906137f3565b6118c5565b6040516107469190613820565b60405180910390f35b34801561075b57600080fd5b5061076461190d565b6040516107719190613820565b60405180910390f35b34801561078657600080fd5b5061078f611937565b005b6107ab60048036038101906107a691906137f3565b611a26565b005b3480156107b957600080fd5b506107c2611d35565b6040516107cf91906137a5565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa91906138a7565b611dc7565b60405161080c91906138d4565b60405180910390f35b34801561082157600080fd5b5061082a611e10565b60405161083791906138d4565b60405180910390f35b34801561084c57600080fd5b5061086760048036038101906108629190613b09565b611e16565b005b34801561087557600080fd5b50610890600480360381019061088b9190613c79565b611e2c565b005b34801561089e57600080fd5b506108b960048036038101906108b491906137f3565b611e8e565b6040516108c691906137a5565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f191906138a7565b611f35565b60405161090391906138d4565b60405180910390f35b34801561091857600080fd5b50610933600480360381019061092e9190613cfc565b611f7e565b60405161094091906138d4565b60405180910390f35b34801561095557600080fd5b5061095e611fc7565b60405161096b91906138d4565b60405180910390f35b34801561098057600080fd5b50610989611fd4565b60405161099691906136f1565b60405180910390f35b3480156109ab57600080fd5b506109b4611fe7565b6040516109c191906138d4565b60405180910390f35b3480156109d657600080fd5b506109df611ff1565b6040516109ec91906136f1565b60405180910390f35b348015610a0157600080fd5b50610a1c6004803603810190610a179190613d7f565b612004565b005b348015610a2a57600080fd5b50610a456004803603810190610a409190613dcc565b6120ec565b604051610a5291906136f1565b60405180910390f35b348015610a6757600080fd5b50610a70612180565b604051610a7d91906136f1565b60405180910390f35b348015610a9257600080fd5b50610a9b612193565b005b348015610aa957600080fd5b50610ac46004803603810190610abf91906138a7565b61223b565b005b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b9957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ba95750610ba882612333565b5b9050919050565b606060008054610bbf90613e3b565b80601f0160208091040260200160405190810160405280929190818152602001828054610beb90613e3b565b8015610c385780601f10610c0d57610100808354040283529160200191610c38565b820191906000526020600020905b815481529060010190602001808311610c1b57829003601f168201915b5050505050905090565b6000610c4d8261239d565b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390613edf565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cd2826116c7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90613f71565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d62610ac6565b73ffffffffffffffffffffffffffffffffffffffff161480610d915750610d9081610d8b610ac6565b6120ec565b5b610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790614003565b60405180910390fd5b610dda8383612409565b505050565b60176020528060005260406000206000915090505481565b6000600f54905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90614095565b60405180910390fd5b6000610e8d611fe7565b47610e9891906140e4565b90506000610eaf8383610eaa86611dc7565b6124c2565b90506000811415610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec906141ac565b60405180910390fd5b80600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f4491906140e4565b925050819055508060086000828254610f5d91906140e4565b92505081905550610f6e8382612530565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610f9f92919061422b565b60405180910390a1505050565b600f5481565b601560039054906101000a900460ff1681565b610fd6610fd0610ac6565b82612624565b611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c906142c6565b60405180910390fd5b611020838383612702565b505050565b61102d610ac6565b73ffffffffffffffffffffffffffffffffffffffff1661104b61190d565b73ffffffffffffffffffffffffffffffffffffffff16146110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890614332565b60405180910390fd5b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550565b6110d5610ac6565b73ffffffffffffffffffffffffffffffffffffffff166110f361190d565b73ffffffffffffffffffffffffffffffffffffffff1614611149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114090614332565b60405180910390fd5b600f54611166611157611fc7565b8361295e90919063ffffffff16565b11156111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e906143ea565b60405180910390fd5b60148111156111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e2906144a2565b60405180910390fd5b60005b81811015611212576111ff33612974565b808061120a906144c2565b9150506111ee565b5050565b6000600754905090565b60166020528060005260406000206000915054906101000a900460ff1681565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6112e283838360405180602001604052806000815250611e2c565b505050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136090614095565b60405180910390fd5b600061137483611f7e565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113ad9190613820565b602060405180830381865afa1580156113ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ee9190614520565b6113f891906140e4565b90506000611410838361140b8787611240565b6124c2565b90506000811415611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d906141ac565b60405180910390fd5b80600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114e291906140e4565b9250508190555080600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461153891906140e4565b9250508190555061154a848483612994565b8373ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a8483604051611592929190613614565b60405180910390a250505050565b6115a8610ac6565b73ffffffffffffffffffffffffffffffffffffffff166115c661190d565b73ffffffffffffffffffffffffffffffffffffffff161461161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390614332565b60405180910390fd5b60005b828290508110156116bc576001601660008585858181106116435761164261454d565b5b905060200201602081019061165891906138a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806116b4906144c2565b91505061161f565b505050565b60125481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611767906145ee565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190614680565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611839610ac6565b73ffffffffffffffffffffffffffffffffffffffff1661185761190d565b73ffffffffffffffffffffffffffffffffffffffff16146118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a490614332565b60405180910390fd5b6118b76000612a1a565b565b60105481565b60135481565b6000600b82815481106118db576118da61454d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61193f610ac6565b73ffffffffffffffffffffffffffffffffffffffff1661195d61190d565b73ffffffffffffffffffffffffffffffffffffffff16146119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90614332565b60405180910390fd5b60001515601560019054906101000a900460ff16151514611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a00906146ec565b60405180910390fd5b6001601560016101000a81548160ff021916908315150217905550565b601560039054906101000a900460ff1615611b5657601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe9061477e565b60405180910390fd5b601354601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482611b1591906140e4565b14611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c90614810565b60405180910390fd5b5b601560009054906101000a900460ff16611ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9c906148a2565b60405180910390fd5b600f54611bc2611bb3611fc7565b8361295e90919063ffffffff16565b1115611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa906143ea565b60405180910390fd5b601054811115611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f90614934565b60405180910390fd5b611c5d81601154612ae090919063ffffffff16565b3414611c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c95906149c6565b60405180910390fd5b60005b81811015611cc557611cb233612974565b8080611cbd906144c2565b915050611ca1565b50601560039054906101000a900460ff1615611d325780601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d2a91906140e4565b925050819055505b50565b606060018054611d4490613e3b565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7090613e3b565b8015611dbd5780601f10611d9257610100808354040283529160200191611dbd565b820191906000526020600020905b815481529060010190602001808311611da057829003601f168201915b5050505050905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60115481565b611e28611e21610ac6565b8383612af6565b5050565b611e3d611e37610ac6565b83612624565b611e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e73906142c6565b60405180910390fd5b611e8884848484612c63565b50505050565b6060611e998261239d565b611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf90614a58565b60405180910390fd5b6000611ee2612cbf565b90506000815111611f025760405180602001604052806000815250611f2d565b80611f0c84612d51565b604051602001611f1d929190614ab4565b6040516020818303038152906040525b915050919050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600e60000154905090565b601560029054906101000a900460ff1681565b6000600854905090565b601560019054906101000a900460ff1681565b61200c610ac6565b73ffffffffffffffffffffffffffffffffffffffff1661202a61190d565b73ffffffffffffffffffffffffffffffffffffffff1614612080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207790614332565b60405180910390fd5b60001515601560019054906101000a900460ff161515146120d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cd90614b4a565b60405180910390fd5b8181601491906120e7929190613517565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601560009054906101000a900460ff1681565b61219b610ac6565b73ffffffffffffffffffffffffffffffffffffffff166121b961190d565b73ffffffffffffffffffffffffffffffffffffffff161461220f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220690614332565b60405180910390fd5b601560039054906101000a900460ff1615601560036101000a81548160ff021916908315150217905550565b612243610ac6565b73ffffffffffffffffffffffffffffffffffffffff1661226161190d565b73ffffffffffffffffffffffffffffffffffffffff16146122b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ae90614332565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231e90614bdc565b60405180910390fd5b61233081612a1a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661247c836116c7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600754600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054856125139190614bfc565b61251d9190614c85565b6125279190614cb6565b90509392505050565b80471015612573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256a90614d36565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161259990614d87565b60006040518083038185875af1925050503d80600081146125d6576040519150601f19603f3d011682016040523d82523d6000602084013e6125db565b606091505b505090508061261f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261690614e0e565b60405180910390fd5b505050565b600061262f8261239d565b61266e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266590614ea0565b60405180910390fd5b6000612679836116c7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126e857508373ffffffffffffffffffffffffffffffffffffffff166126d084610c42565b73ffffffffffffffffffffffffffffffffffffffff16145b806126f957506126f881856120ec565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612722826116c7565b73ffffffffffffffffffffffffffffffffffffffff1614612778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276f90614f32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127df90614fc4565b60405180910390fd5b6127f3838383612eb2565b6127fe600082612409565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461284e9190614cb6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128a591906140e4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000818361296c91906140e4565b905092915050565b61298781612982600e612eb7565b612ec5565b612991600e612ee3565b50565b612a158363a9059cbb60e01b84846040516024016129b3929190613614565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612ef9565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612aee9190614bfc565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5c90615030565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c5691906136f1565b60405180910390a3505050565b612c6e848484612702565b612c7a84848484612fc0565b612cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb0906150c2565b60405180910390fd5b50505050565b606060148054612cce90613e3b565b80601f0160208091040260200160405190810160405280929190818152602001828054612cfa90613e3b565b8015612d475780601f10612d1c57610100808354040283529160200191612d47565b820191906000526020600020905b815481529060010190602001808311612d2a57829003601f168201915b5050505050905090565b60606000821415612d99576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ead565b600082905060005b60008214612dcb578080612db4906144c2565b915050600a82612dc49190614c85565b9150612da1565b60008167ffffffffffffffff811115612de757612de6613b4e565b5b6040519080825280601f01601f191660200182016040528015612e195781602001600182028036833780820191505090505b5090505b60008514612ea657600182612e329190614cb6565b9150600a85612e4191906150e2565b6030612e4d91906140e4565b60f81b818381518110612e6357612e6261454d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e9f9190614c85565b9450612e1d565b8093505050505b919050565b505050565b600081600001549050919050565b612edf828260405180602001604052806000815250613148565b5050565b6001816000016000828254019250508190555050565b6000612f5b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166131a39092919063ffffffff16565b9050600081511115612fbb5780806020019051810190612f7b9190615128565b612fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb1906151c7565b60405180910390fd5b5b505050565b6000612fe18473ffffffffffffffffffffffffffffffffffffffff166131bb565b1561313b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261300a610ac6565b8786866040518563ffffffff1660e01b815260040161302c949392919061523c565b6020604051808303816000875af192505050801561306857506040513d601f19601f82011682018060405250810190613065919061529d565b60015b6130eb573d8060008114613098576040519150601f19603f3d011682016040523d82523d6000602084013e61309d565b606091505b506000815114156130e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130da906150c2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613140565b600190505b949350505050565b61315283836131ce565b61315f6000848484612fc0565b61319e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613195906150c2565b60405180910390fd5b505050565b60606131b2848460008561339c565b90509392505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561323e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323590615316565b60405180910390fd5b6132478161239d565b15613287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327e90615382565b60405180910390fd5b61329360008383612eb2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132e391906140e4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6060824710156133e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d890615414565b60405180910390fd5b6133ea856131bb565b613429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342090615480565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161345291906154d1565b60006040518083038185875af1925050503d806000811461348f576040519150601f19603f3d011682016040523d82523d6000602084013e613494565b606091505b50915091506134a48282866134b0565b92505050949350505050565b606083156134c057829050613510565b6000835111156134d35782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350791906137a5565b60405180910390fd5b9392505050565b82805461352390613e3b565b90600052602060002090601f016020900481019282613545576000855561358c565b82601f1061355e57803560ff191683800117855561358c565b8280016001018555821561358c579182015b8281111561358b578235825591602001919060010190613570565b5b509050613599919061359d565b5090565b5b808211156135b657600081600090555060010161359e565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135e5826135ba565b9050919050565b6135f5816135da565b82525050565b6000819050919050565b61360e816135fb565b82525050565b600060408201905061362960008301856135ec565b6136366020830184613605565b9392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61368681613651565b811461369157600080fd5b50565b6000813590506136a38161367d565b92915050565b6000602082840312156136bf576136be613647565b5b60006136cd84828501613694565b91505092915050565b60008115159050919050565b6136eb816136d6565b82525050565b600060208201905061370660008301846136e2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561374657808201518184015260208101905061372b565b83811115613755576000848401525b50505050565b6000601f19601f8301169050919050565b60006137778261370c565b6137818185613717565b9350613791818560208601613728565b61379a8161375b565b840191505092915050565b600060208201905081810360008301526137bf818461376c565b905092915050565b6137d0816135fb565b81146137db57600080fd5b50565b6000813590506137ed816137c7565b92915050565b60006020828403121561380957613808613647565b5b6000613817848285016137de565b91505092915050565b600060208201905061383560008301846135ec565b92915050565b613844816135da565b811461384f57600080fd5b50565b6000813590506138618161383b565b92915050565b6000806040838503121561387e5761387d613647565b5b600061388c85828601613852565b925050602061389d858286016137de565b9150509250929050565b6000602082840312156138bd576138bc613647565b5b60006138cb84828501613852565b91505092915050565b60006020820190506138e96000830184613605565b92915050565b60006138fa826135ba565b9050919050565b61390a816138ef565b811461391557600080fd5b50565b60008135905061392781613901565b92915050565b60006020828403121561394357613942613647565b5b600061395184828501613918565b91505092915050565b60008060006060848603121561397357613972613647565b5b600061398186828701613852565b935050602061399286828701613852565b92505060406139a3868287016137de565b9150509250925092565b60006139b8826135da565b9050919050565b6139c8816139ad565b81146139d357600080fd5b50565b6000813590506139e5816139bf565b92915050565b60008060408385031215613a0257613a01613647565b5b6000613a10858286016139d6565b9250506020613a2185828601613852565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112613a5057613a4f613a2b565b5b8235905067ffffffffffffffff811115613a6d57613a6c613a30565b5b602083019150836020820283011115613a8957613a88613a35565b5b9250929050565b60008060208385031215613aa757613aa6613647565b5b600083013567ffffffffffffffff811115613ac557613ac461364c565b5b613ad185828601613a3a565b92509250509250929050565b613ae6816136d6565b8114613af157600080fd5b50565b600081359050613b0381613add565b92915050565b60008060408385031215613b2057613b1f613647565b5b6000613b2e85828601613852565b9250506020613b3f85828601613af4565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b868261375b565b810181811067ffffffffffffffff82111715613ba557613ba4613b4e565b5b80604052505050565b6000613bb861363d565b9050613bc48282613b7d565b919050565b600067ffffffffffffffff821115613be457613be3613b4e565b5b613bed8261375b565b9050602081019050919050565b82818337600083830152505050565b6000613c1c613c1784613bc9565b613bae565b905082815260208101848484011115613c3857613c37613b49565b5b613c43848285613bfa565b509392505050565b600082601f830112613c6057613c5f613a2b565b5b8135613c70848260208601613c09565b91505092915050565b60008060008060808587031215613c9357613c92613647565b5b6000613ca187828801613852565b9450506020613cb287828801613852565b9350506040613cc3878288016137de565b925050606085013567ffffffffffffffff811115613ce457613ce361364c565b5b613cf087828801613c4b565b91505092959194509250565b600060208284031215613d1257613d11613647565b5b6000613d20848285016139d6565b91505092915050565b60008083601f840112613d3f57613d3e613a2b565b5b8235905067ffffffffffffffff811115613d5c57613d5b613a30565b5b602083019150836001820283011115613d7857613d77613a35565b5b9250929050565b60008060208385031215613d9657613d95613647565b5b600083013567ffffffffffffffff811115613db457613db361364c565b5b613dc085828601613d29565b92509250509250929050565b60008060408385031215613de357613de2613647565b5b6000613df185828601613852565b9250506020613e0285828601613852565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e5357607f821691505b60208210811415613e6757613e66613e0c565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613ec9602c83613717565b9150613ed482613e6d565b604082019050919050565b60006020820190508181036000830152613ef881613ebc565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f5b602183613717565b9150613f6682613eff565b604082019050919050565b60006020820190508181036000830152613f8a81613f4e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613fed603883613717565b9150613ff882613f91565b604082019050919050565b6000602082019050818103600083015261401c81613fe0565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b600061407f602683613717565b915061408a82614023565b604082019050919050565b600060208201905081810360008301526140ae81614072565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140ef826135fb565b91506140fa836135fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561412f5761412e6140b5565b5b828201905092915050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b6000614196602b83613717565b91506141a18261413a565b604082019050919050565b600060208201905081810360008301526141c581614189565b9050919050565b6000819050919050565b60006141f16141ec6141e7846135ba565b6141cc565b6135ba565b9050919050565b6000614203826141d6565b9050919050565b6000614215826141f8565b9050919050565b6142258161420a565b82525050565b6000604082019050614240600083018561421c565b61424d6020830184613605565b9392505050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006142b0603183613717565b91506142bb82614254565b604082019050919050565b600060208201905081810360008301526142df816142a3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061431c602083613717565b9150614327826142e6565b602082019050919050565b6000602082019050818103600083015261434b8161430f565b9050919050565b7f596f7520617265206d696e74696e67206d6f7265204e465473207468616e207460008201527f686572652061726520617661696c61626c652c206d696e74206c65737320746f60208201527f6b656e7321000000000000000000000000000000000000000000000000000000604082015250565b60006143d4604583613717565b91506143df82614352565b606082019050919050565b60006020820190508181036000830152614403816143c7565b9050919050565b7f536f7272792c20746865206d617820616d6f756e74206f66207265736572766560008201527f6420746f6b656e7320706572207472616e73616374696f6e206973207365742060208201527f746f203230000000000000000000000000000000000000000000000000000000604082015250565b600061448c604583613717565b91506144978261440a565b606082019050919050565b600060208201905081810360008301526144bb8161447f565b9050919050565b60006144cd826135fb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614500576144ff6140b5565b5b600182019050919050565b60008151905061451a816137c7565b92915050565b60006020828403121561453657614535613647565b5b60006145448482850161450b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006145d8602983613717565b91506145e38261457c565b604082019050919050565b60006020820190508181036000830152614607816145cb565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061466a602a83613717565b91506146758261460e565b604082019050919050565b600060208201905081810360008301526146998161465d565b9050919050565b7f55524920616c7265616479206c6f636b65640000000000000000000000000000600082015250565b60006146d6601283613717565b91506146e1826146a0565b602082019050919050565b60006020820190508181036000830152614705816146c9565b9050919050565b7f596f7520617265206e6f742070617274206f6620746865207072652073616c6560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000614768602183613717565b91506147738261470c565b604082019050919050565b600060208201905081810360008301526147978161475b565b9050919050565b7f596f752061726520616c6c6f77656420746f206d696e742061206d6178206f6660008201527f2031204e46547320696e207468652070726573616c652070686173652e000000602082015250565b60006147fa603d83613717565b91506148058261479e565b604082019050919050565b60006020820190508181036000830152614829816147ed565b9050919050565b7f53616c65206973206e6f74206163746976652061742074686973206d6f6d656e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b600061488c602183613717565b915061489782614830565b604082019050919050565b600060208201905081810360008301526148bb8161487f565b9050919050565b7f536f7272792c20746865206d617820616d6f756e74206f6620746f6b656e732060008201527f706572207472616e73616374696f6e2069732073657420746f20330000000000602082015250565b600061491e603b83613717565b9150614929826148c2565b604082019050919050565b6000602082019050818103600083015261494d81614911565b9050919050565b7f416d6f756e74206f6620457468657220696e636f72726563742c20747279206160008201527f6761696e2e000000000000000000000000000000000000000000000000000000602082015250565b60006149b0602583613717565b91506149bb82614954565b604082019050919050565b600060208201905081810360008301526149df816149a3565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614a42602f83613717565b9150614a4d826149e6565b604082019050919050565b60006020820190508181036000830152614a7181614a35565b9050919050565b600081905092915050565b6000614a8e8261370c565b614a988185614a78565b9350614aa8818560208601613728565b80840191505092915050565b6000614ac08285614a83565b9150614acc8284614a83565b91508190509392505050565b7f555249206c6f636b65642c20796f752063616e2774206368616e67652069742060008201527f616e796d6f726500000000000000000000000000000000000000000000000000602082015250565b6000614b34602783613717565b9150614b3f82614ad8565b604082019050919050565b60006020820190508181036000830152614b6381614b27565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614bc6602683613717565b9150614bd182614b6a565b604082019050919050565b60006020820190508181036000830152614bf581614bb9565b9050919050565b6000614c07826135fb565b9150614c12836135fb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c4b57614c4a6140b5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c90826135fb565b9150614c9b836135fb565b925082614cab57614caa614c56565b5b828204905092915050565b6000614cc1826135fb565b9150614ccc836135fb565b925082821015614cdf57614cde6140b5565b5b828203905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614d20601d83613717565b9150614d2b82614cea565b602082019050919050565b60006020820190508181036000830152614d4f81614d13565b9050919050565b600081905092915050565b50565b6000614d71600083614d56565b9150614d7c82614d61565b600082019050919050565b6000614d9282614d64565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614df8603a83613717565b9150614e0382614d9c565b604082019050919050565b60006020820190508181036000830152614e2781614deb565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614e8a602c83613717565b9150614e9582614e2e565b604082019050919050565b60006020820190508181036000830152614eb981614e7d565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614f1c602983613717565b9150614f2782614ec0565b604082019050919050565b60006020820190508181036000830152614f4b81614f0f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614fae602483613717565b9150614fb982614f52565b604082019050919050565b60006020820190508181036000830152614fdd81614fa1565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061501a601983613717565b915061502582614fe4565b602082019050919050565b600060208201905081810360008301526150498161500d565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006150ac603283613717565b91506150b782615050565b604082019050919050565b600060208201905081810360008301526150db8161509f565b9050919050565b60006150ed826135fb565b91506150f8836135fb565b92508261510857615107614c56565b5b828206905092915050565b60008151905061512281613add565b92915050565b60006020828403121561513e5761513d613647565b5b600061514c84828501615113565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b60006151b1602a83613717565b91506151bc82615155565b604082019050919050565b600060208201905081810360008301526151e0816151a4565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061520e826151e7565b61521881856151f2565b9350615228818560208601613728565b6152318161375b565b840191505092915050565b600060808201905061525160008301876135ec565b61525e60208301866135ec565b61526b6040830185613605565b818103606083015261527d8184615203565b905095945050505050565b6000815190506152978161367d565b92915050565b6000602082840312156152b3576152b2613647565b5b60006152c184828501615288565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615300602083613717565b915061530b826152ca565b602082019050919050565b6000602082019050818103600083015261532f816152f3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061536c601c83613717565b915061537782615336565b602082019050919050565b6000602082019050818103600083015261539b8161535f565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b60006153fe602683613717565b9150615409826153a2565b604082019050919050565b6000602082019050818103600083015261542d816153f1565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b600061546a601d83613717565b915061547582615434565b602082019050919050565b600060208201905081810360008301526154998161545d565b9050919050565b60006154ab826151e7565b6154b58185614d56565b93506154c5818560208601613728565b80840191505092915050565b60006154dd82846154a0565b91508190509291505056fea2646970667358221220318c49e80099695db70ba944f93abdcb0f90d987849d6c7ce00d851b57d325a464736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000bbb9dcee02742d9e4ed04e6452800be6e8db7c47000000000000000000000000a0e6cab3f8de86720439e911f443c0a204c88d4e0000000000000000000000005a7d97c88e9dbbe1748fb24d5fb7875745d7a152000000000000000000000000ebec918d4bb22dc75221d865e645added4e72a8a00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000384000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000000019

Deployed Bytecode

0x6080604052600436106102765760003560e01c80637dd96a051161014f578063c87b56dd116100c1578063e41c75db1161007a578063e41c75db146109ca578063e5e01c11146109f5578063e985e9c514610a1e578063eb8d244414610a5b578063f032554914610a86578063f2fde38b14610a9d576102bd565b8063c87b56dd14610892578063ce7c2ac2146108cf578063d79779b21461090c578063dfe6425c14610949578063e07f37a714610974578063e33b7de31461099f576102bd565b80639264274411610113578063926427441461079157806395d89b41146107ad5780639852595c146107d8578063a035b1fe14610815578063a22cb46514610840578063b88d4fde14610869576102bd565b80637dd96a05146106bc57806384263d09146106e75780638b83209b146107125780638da5cb5b1461074f5780638e021c061461077a576102bd565b8063397be3fd116101e857806348b75044116101ac57806348b75044146105ae5780635a01f953146105d757806362625fb4146106005780636352211e1461062b57806370a0823114610668578063715018a6146106a5576102bd565b8063397be3fd146104b75780633a98ef39146104e05780633b213e921461050b578063406072a91461054857806342842e0e14610585576102bd565b806318160ddd1161023a57806318160ddd146103cd57806319165587146103f85780631d677431146104215780631f0234d81461044c57806323b872dd1461047757806334918dfd146104a0576102bd565b806301ffc9a7146102c257806306fdde03146102ff578063081812fc1461032a578063095ea7b31461036757806314368c8e14610390576102bd565b366102bd577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102a4610ac6565b346040516102b3929190613614565b60405180910390a1005b600080fd5b3480156102ce57600080fd5b506102e960048036038101906102e491906136a9565b610ace565b6040516102f691906136f1565b60405180910390f35b34801561030b57600080fd5b50610314610bb0565b60405161032191906137a5565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c91906137f3565b610c42565b60405161035e9190613820565b60405180910390f35b34801561037357600080fd5b5061038e60048036038101906103899190613867565b610cc7565b005b34801561039c57600080fd5b506103b760048036038101906103b291906138a7565b610ddf565b6040516103c491906138d4565b60405180910390f35b3480156103d957600080fd5b506103e2610df7565b6040516103ef91906138d4565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a919061392d565b610e01565b005b34801561042d57600080fd5b50610436610fac565b60405161044391906138d4565b60405180910390f35b34801561045857600080fd5b50610461610fb2565b60405161046e91906136f1565b60405180910390f35b34801561048357600080fd5b5061049e6004803603810190610499919061395a565b610fc5565b005b3480156104ac57600080fd5b506104b5611025565b005b3480156104c357600080fd5b506104de60048036038101906104d991906137f3565b6110cd565b005b3480156104ec57600080fd5b506104f5611216565b60405161050291906138d4565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d91906138a7565b611220565b60405161053f91906136f1565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a91906139eb565b611240565b60405161057c91906138d4565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a7919061395a565b6112c7565b005b3480156105ba57600080fd5b506105d560048036038101906105d091906139eb565b6112e7565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190613a90565b6115a0565b005b34801561060c57600080fd5b506106156116c1565b60405161062291906138d4565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d91906137f3565b6116c7565b60405161065f9190613820565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a91906138a7565b611779565b60405161069c91906138d4565b60405180910390f35b3480156106b157600080fd5b506106ba611831565b005b3480156106c857600080fd5b506106d16118b9565b6040516106de91906138d4565b60405180910390f35b3480156106f357600080fd5b506106fc6118bf565b60405161070991906138d4565b60405180910390f35b34801561071e57600080fd5b50610739600480360381019061073491906137f3565b6118c5565b6040516107469190613820565b60405180910390f35b34801561075b57600080fd5b5061076461190d565b6040516107719190613820565b60405180910390f35b34801561078657600080fd5b5061078f611937565b005b6107ab60048036038101906107a691906137f3565b611a26565b005b3480156107b957600080fd5b506107c2611d35565b6040516107cf91906137a5565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa91906138a7565b611dc7565b60405161080c91906138d4565b60405180910390f35b34801561082157600080fd5b5061082a611e10565b60405161083791906138d4565b60405180910390f35b34801561084c57600080fd5b5061086760048036038101906108629190613b09565b611e16565b005b34801561087557600080fd5b50610890600480360381019061088b9190613c79565b611e2c565b005b34801561089e57600080fd5b506108b960048036038101906108b491906137f3565b611e8e565b6040516108c691906137a5565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f191906138a7565b611f35565b60405161090391906138d4565b60405180910390f35b34801561091857600080fd5b50610933600480360381019061092e9190613cfc565b611f7e565b60405161094091906138d4565b60405180910390f35b34801561095557600080fd5b5061095e611fc7565b60405161096b91906138d4565b60405180910390f35b34801561098057600080fd5b50610989611fd4565b60405161099691906136f1565b60405180910390f35b3480156109ab57600080fd5b506109b4611fe7565b6040516109c191906138d4565b60405180910390f35b3480156109d657600080fd5b506109df611ff1565b6040516109ec91906136f1565b60405180910390f35b348015610a0157600080fd5b50610a1c6004803603810190610a179190613d7f565b612004565b005b348015610a2a57600080fd5b50610a456004803603810190610a409190613dcc565b6120ec565b604051610a5291906136f1565b60405180910390f35b348015610a6757600080fd5b50610a70612180565b604051610a7d91906136f1565b60405180910390f35b348015610a9257600080fd5b50610a9b612193565b005b348015610aa957600080fd5b50610ac46004803603810190610abf91906138a7565b61223b565b005b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b9957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ba95750610ba882612333565b5b9050919050565b606060008054610bbf90613e3b565b80601f0160208091040260200160405190810160405280929190818152602001828054610beb90613e3b565b8015610c385780601f10610c0d57610100808354040283529160200191610c38565b820191906000526020600020905b815481529060010190602001808311610c1b57829003601f168201915b5050505050905090565b6000610c4d8261239d565b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390613edf565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cd2826116c7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90613f71565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d62610ac6565b73ffffffffffffffffffffffffffffffffffffffff161480610d915750610d9081610d8b610ac6565b6120ec565b5b610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790614003565b60405180910390fd5b610dda8383612409565b505050565b60176020528060005260406000206000915090505481565b6000600f54905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90614095565b60405180910390fd5b6000610e8d611fe7565b47610e9891906140e4565b90506000610eaf8383610eaa86611dc7565b6124c2565b90506000811415610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec906141ac565b60405180910390fd5b80600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f4491906140e4565b925050819055508060086000828254610f5d91906140e4565b92505081905550610f6e8382612530565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610f9f92919061422b565b60405180910390a1505050565b600f5481565b601560039054906101000a900460ff1681565b610fd6610fd0610ac6565b82612624565b611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c906142c6565b60405180910390fd5b611020838383612702565b505050565b61102d610ac6565b73ffffffffffffffffffffffffffffffffffffffff1661104b61190d565b73ffffffffffffffffffffffffffffffffffffffff16146110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890614332565b60405180910390fd5b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550565b6110d5610ac6565b73ffffffffffffffffffffffffffffffffffffffff166110f361190d565b73ffffffffffffffffffffffffffffffffffffffff1614611149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114090614332565b60405180910390fd5b600f54611166611157611fc7565b8361295e90919063ffffffff16565b11156111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e906143ea565b60405180910390fd5b60148111156111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e2906144a2565b60405180910390fd5b60005b81811015611212576111ff33612974565b808061120a906144c2565b9150506111ee565b5050565b6000600754905090565b60166020528060005260406000206000915054906101000a900460ff1681565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6112e283838360405180602001604052806000815250611e2c565b505050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136090614095565b60405180910390fd5b600061137483611f7e565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113ad9190613820565b602060405180830381865afa1580156113ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ee9190614520565b6113f891906140e4565b90506000611410838361140b8787611240565b6124c2565b90506000811415611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d906141ac565b60405180910390fd5b80600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114e291906140e4565b9250508190555080600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461153891906140e4565b9250508190555061154a848483612994565b8373ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a8483604051611592929190613614565b60405180910390a250505050565b6115a8610ac6565b73ffffffffffffffffffffffffffffffffffffffff166115c661190d565b73ffffffffffffffffffffffffffffffffffffffff161461161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390614332565b60405180910390fd5b60005b828290508110156116bc576001601660008585858181106116435761164261454d565b5b905060200201602081019061165891906138a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806116b4906144c2565b91505061161f565b505050565b60125481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611767906145ee565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190614680565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611839610ac6565b73ffffffffffffffffffffffffffffffffffffffff1661185761190d565b73ffffffffffffffffffffffffffffffffffffffff16146118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a490614332565b60405180910390fd5b6118b76000612a1a565b565b60105481565b60135481565b6000600b82815481106118db576118da61454d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61193f610ac6565b73ffffffffffffffffffffffffffffffffffffffff1661195d61190d565b73ffffffffffffffffffffffffffffffffffffffff16146119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90614332565b60405180910390fd5b60001515601560019054906101000a900460ff16151514611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a00906146ec565b60405180910390fd5b6001601560016101000a81548160ff021916908315150217905550565b601560039054906101000a900460ff1615611b5657601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe9061477e565b60405180910390fd5b601354601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482611b1591906140e4565b14611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c90614810565b60405180910390fd5b5b601560009054906101000a900460ff16611ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9c906148a2565b60405180910390fd5b600f54611bc2611bb3611fc7565b8361295e90919063ffffffff16565b1115611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa906143ea565b60405180910390fd5b601054811115611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f90614934565b60405180910390fd5b611c5d81601154612ae090919063ffffffff16565b3414611c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c95906149c6565b60405180910390fd5b60005b81811015611cc557611cb233612974565b8080611cbd906144c2565b915050611ca1565b50601560039054906101000a900460ff1615611d325780601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d2a91906140e4565b925050819055505b50565b606060018054611d4490613e3b565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7090613e3b565b8015611dbd5780601f10611d9257610100808354040283529160200191611dbd565b820191906000526020600020905b815481529060010190602001808311611da057829003601f168201915b5050505050905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60115481565b611e28611e21610ac6565b8383612af6565b5050565b611e3d611e37610ac6565b83612624565b611e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e73906142c6565b60405180910390fd5b611e8884848484612c63565b50505050565b6060611e998261239d565b611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf90614a58565b60405180910390fd5b6000611ee2612cbf565b90506000815111611f025760405180602001604052806000815250611f2d565b80611f0c84612d51565b604051602001611f1d929190614ab4565b6040516020818303038152906040525b915050919050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600e60000154905090565b601560029054906101000a900460ff1681565b6000600854905090565b601560019054906101000a900460ff1681565b61200c610ac6565b73ffffffffffffffffffffffffffffffffffffffff1661202a61190d565b73ffffffffffffffffffffffffffffffffffffffff1614612080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207790614332565b60405180910390fd5b60001515601560019054906101000a900460ff161515146120d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cd90614b4a565b60405180910390fd5b8181601491906120e7929190613517565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601560009054906101000a900460ff1681565b61219b610ac6565b73ffffffffffffffffffffffffffffffffffffffff166121b961190d565b73ffffffffffffffffffffffffffffffffffffffff161461220f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220690614332565b60405180910390fd5b601560039054906101000a900460ff1615601560036101000a81548160ff021916908315150217905550565b612243610ac6565b73ffffffffffffffffffffffffffffffffffffffff1661226161190d565b73ffffffffffffffffffffffffffffffffffffffff16146122b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ae90614332565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231e90614bdc565b60405180910390fd5b61233081612a1a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661247c836116c7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600754600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054856125139190614bfc565b61251d9190614c85565b6125279190614cb6565b90509392505050565b80471015612573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256a90614d36565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161259990614d87565b60006040518083038185875af1925050503d80600081146125d6576040519150601f19603f3d011682016040523d82523d6000602084013e6125db565b606091505b505090508061261f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261690614e0e565b60405180910390fd5b505050565b600061262f8261239d565b61266e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266590614ea0565b60405180910390fd5b6000612679836116c7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126e857508373ffffffffffffffffffffffffffffffffffffffff166126d084610c42565b73ffffffffffffffffffffffffffffffffffffffff16145b806126f957506126f881856120ec565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612722826116c7565b73ffffffffffffffffffffffffffffffffffffffff1614612778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276f90614f32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127df90614fc4565b60405180910390fd5b6127f3838383612eb2565b6127fe600082612409565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461284e9190614cb6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128a591906140e4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000818361296c91906140e4565b905092915050565b61298781612982600e612eb7565b612ec5565b612991600e612ee3565b50565b612a158363a9059cbb60e01b84846040516024016129b3929190613614565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612ef9565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612aee9190614bfc565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5c90615030565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c5691906136f1565b60405180910390a3505050565b612c6e848484612702565b612c7a84848484612fc0565b612cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb0906150c2565b60405180910390fd5b50505050565b606060148054612cce90613e3b565b80601f0160208091040260200160405190810160405280929190818152602001828054612cfa90613e3b565b8015612d475780601f10612d1c57610100808354040283529160200191612d47565b820191906000526020600020905b815481529060010190602001808311612d2a57829003601f168201915b5050505050905090565b60606000821415612d99576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ead565b600082905060005b60008214612dcb578080612db4906144c2565b915050600a82612dc49190614c85565b9150612da1565b60008167ffffffffffffffff811115612de757612de6613b4e565b5b6040519080825280601f01601f191660200182016040528015612e195781602001600182028036833780820191505090505b5090505b60008514612ea657600182612e329190614cb6565b9150600a85612e4191906150e2565b6030612e4d91906140e4565b60f81b818381518110612e6357612e6261454d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e9f9190614c85565b9450612e1d565b8093505050505b919050565b505050565b600081600001549050919050565b612edf828260405180602001604052806000815250613148565b5050565b6001816000016000828254019250508190555050565b6000612f5b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166131a39092919063ffffffff16565b9050600081511115612fbb5780806020019051810190612f7b9190615128565b612fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb1906151c7565b60405180910390fd5b5b505050565b6000612fe18473ffffffffffffffffffffffffffffffffffffffff166131bb565b1561313b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261300a610ac6565b8786866040518563ffffffff1660e01b815260040161302c949392919061523c565b6020604051808303816000875af192505050801561306857506040513d601f19601f82011682018060405250810190613065919061529d565b60015b6130eb573d8060008114613098576040519150601f19603f3d011682016040523d82523d6000602084013e61309d565b606091505b506000815114156130e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130da906150c2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613140565b600190505b949350505050565b61315283836131ce565b61315f6000848484612fc0565b61319e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613195906150c2565b60405180910390fd5b505050565b60606131b2848460008561339c565b90509392505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561323e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323590615316565b60405180910390fd5b6132478161239d565b15613287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327e90615382565b60405180910390fd5b61329360008383612eb2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132e391906140e4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6060824710156133e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d890615414565b60405180910390fd5b6133ea856131bb565b613429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342090615480565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161345291906154d1565b60006040518083038185875af1925050503d806000811461348f576040519150601f19603f3d011682016040523d82523d6000602084013e613494565b606091505b50915091506134a48282866134b0565b92505050949350505050565b606083156134c057829050613510565b6000835111156134d35782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350791906137a5565b60405180910390fd5b9392505050565b82805461352390613e3b565b90600052602060002090601f016020900481019282613545576000855561358c565b82601f1061355e57803560ff191683800117855561358c565b8280016001018555821561358c579182015b8281111561358b578235825591602001919060010190613570565b5b509050613599919061359d565b5090565b5b808211156135b657600081600090555060010161359e565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135e5826135ba565b9050919050565b6135f5816135da565b82525050565b6000819050919050565b61360e816135fb565b82525050565b600060408201905061362960008301856135ec565b6136366020830184613605565b9392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61368681613651565b811461369157600080fd5b50565b6000813590506136a38161367d565b92915050565b6000602082840312156136bf576136be613647565b5b60006136cd84828501613694565b91505092915050565b60008115159050919050565b6136eb816136d6565b82525050565b600060208201905061370660008301846136e2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561374657808201518184015260208101905061372b565b83811115613755576000848401525b50505050565b6000601f19601f8301169050919050565b60006137778261370c565b6137818185613717565b9350613791818560208601613728565b61379a8161375b565b840191505092915050565b600060208201905081810360008301526137bf818461376c565b905092915050565b6137d0816135fb565b81146137db57600080fd5b50565b6000813590506137ed816137c7565b92915050565b60006020828403121561380957613808613647565b5b6000613817848285016137de565b91505092915050565b600060208201905061383560008301846135ec565b92915050565b613844816135da565b811461384f57600080fd5b50565b6000813590506138618161383b565b92915050565b6000806040838503121561387e5761387d613647565b5b600061388c85828601613852565b925050602061389d858286016137de565b9150509250929050565b6000602082840312156138bd576138bc613647565b5b60006138cb84828501613852565b91505092915050565b60006020820190506138e96000830184613605565b92915050565b60006138fa826135ba565b9050919050565b61390a816138ef565b811461391557600080fd5b50565b60008135905061392781613901565b92915050565b60006020828403121561394357613942613647565b5b600061395184828501613918565b91505092915050565b60008060006060848603121561397357613972613647565b5b600061398186828701613852565b935050602061399286828701613852565b92505060406139a3868287016137de565b9150509250925092565b60006139b8826135da565b9050919050565b6139c8816139ad565b81146139d357600080fd5b50565b6000813590506139e5816139bf565b92915050565b60008060408385031215613a0257613a01613647565b5b6000613a10858286016139d6565b9250506020613a2185828601613852565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112613a5057613a4f613a2b565b5b8235905067ffffffffffffffff811115613a6d57613a6c613a30565b5b602083019150836020820283011115613a8957613a88613a35565b5b9250929050565b60008060208385031215613aa757613aa6613647565b5b600083013567ffffffffffffffff811115613ac557613ac461364c565b5b613ad185828601613a3a565b92509250509250929050565b613ae6816136d6565b8114613af157600080fd5b50565b600081359050613b0381613add565b92915050565b60008060408385031215613b2057613b1f613647565b5b6000613b2e85828601613852565b9250506020613b3f85828601613af4565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b868261375b565b810181811067ffffffffffffffff82111715613ba557613ba4613b4e565b5b80604052505050565b6000613bb861363d565b9050613bc48282613b7d565b919050565b600067ffffffffffffffff821115613be457613be3613b4e565b5b613bed8261375b565b9050602081019050919050565b82818337600083830152505050565b6000613c1c613c1784613bc9565b613bae565b905082815260208101848484011115613c3857613c37613b49565b5b613c43848285613bfa565b509392505050565b600082601f830112613c6057613c5f613a2b565b5b8135613c70848260208601613c09565b91505092915050565b60008060008060808587031215613c9357613c92613647565b5b6000613ca187828801613852565b9450506020613cb287828801613852565b9350506040613cc3878288016137de565b925050606085013567ffffffffffffffff811115613ce457613ce361364c565b5b613cf087828801613c4b565b91505092959194509250565b600060208284031215613d1257613d11613647565b5b6000613d20848285016139d6565b91505092915050565b60008083601f840112613d3f57613d3e613a2b565b5b8235905067ffffffffffffffff811115613d5c57613d5b613a30565b5b602083019150836001820283011115613d7857613d77613a35565b5b9250929050565b60008060208385031215613d9657613d95613647565b5b600083013567ffffffffffffffff811115613db457613db361364c565b5b613dc085828601613d29565b92509250509250929050565b60008060408385031215613de357613de2613647565b5b6000613df185828601613852565b9250506020613e0285828601613852565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e5357607f821691505b60208210811415613e6757613e66613e0c565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613ec9602c83613717565b9150613ed482613e6d565b604082019050919050565b60006020820190508181036000830152613ef881613ebc565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f5b602183613717565b9150613f6682613eff565b604082019050919050565b60006020820190508181036000830152613f8a81613f4e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613fed603883613717565b9150613ff882613f91565b604082019050919050565b6000602082019050818103600083015261401c81613fe0565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b600061407f602683613717565b915061408a82614023565b604082019050919050565b600060208201905081810360008301526140ae81614072565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140ef826135fb565b91506140fa836135fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561412f5761412e6140b5565b5b828201905092915050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b6000614196602b83613717565b91506141a18261413a565b604082019050919050565b600060208201905081810360008301526141c581614189565b9050919050565b6000819050919050565b60006141f16141ec6141e7846135ba565b6141cc565b6135ba565b9050919050565b6000614203826141d6565b9050919050565b6000614215826141f8565b9050919050565b6142258161420a565b82525050565b6000604082019050614240600083018561421c565b61424d6020830184613605565b9392505050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006142b0603183613717565b91506142bb82614254565b604082019050919050565b600060208201905081810360008301526142df816142a3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061431c602083613717565b9150614327826142e6565b602082019050919050565b6000602082019050818103600083015261434b8161430f565b9050919050565b7f596f7520617265206d696e74696e67206d6f7265204e465473207468616e207460008201527f686572652061726520617661696c61626c652c206d696e74206c65737320746f60208201527f6b656e7321000000000000000000000000000000000000000000000000000000604082015250565b60006143d4604583613717565b91506143df82614352565b606082019050919050565b60006020820190508181036000830152614403816143c7565b9050919050565b7f536f7272792c20746865206d617820616d6f756e74206f66207265736572766560008201527f6420746f6b656e7320706572207472616e73616374696f6e206973207365742060208201527f746f203230000000000000000000000000000000000000000000000000000000604082015250565b600061448c604583613717565b91506144978261440a565b606082019050919050565b600060208201905081810360008301526144bb8161447f565b9050919050565b60006144cd826135fb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614500576144ff6140b5565b5b600182019050919050565b60008151905061451a816137c7565b92915050565b60006020828403121561453657614535613647565b5b60006145448482850161450b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006145d8602983613717565b91506145e38261457c565b604082019050919050565b60006020820190508181036000830152614607816145cb565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061466a602a83613717565b91506146758261460e565b604082019050919050565b600060208201905081810360008301526146998161465d565b9050919050565b7f55524920616c7265616479206c6f636b65640000000000000000000000000000600082015250565b60006146d6601283613717565b91506146e1826146a0565b602082019050919050565b60006020820190508181036000830152614705816146c9565b9050919050565b7f596f7520617265206e6f742070617274206f6620746865207072652073616c6560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000614768602183613717565b91506147738261470c565b604082019050919050565b600060208201905081810360008301526147978161475b565b9050919050565b7f596f752061726520616c6c6f77656420746f206d696e742061206d6178206f6660008201527f2031204e46547320696e207468652070726573616c652070686173652e000000602082015250565b60006147fa603d83613717565b91506148058261479e565b604082019050919050565b60006020820190508181036000830152614829816147ed565b9050919050565b7f53616c65206973206e6f74206163746976652061742074686973206d6f6d656e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b600061488c602183613717565b915061489782614830565b604082019050919050565b600060208201905081810360008301526148bb8161487f565b9050919050565b7f536f7272792c20746865206d617820616d6f756e74206f6620746f6b656e732060008201527f706572207472616e73616374696f6e2069732073657420746f20330000000000602082015250565b600061491e603b83613717565b9150614929826148c2565b604082019050919050565b6000602082019050818103600083015261494d81614911565b9050919050565b7f416d6f756e74206f6620457468657220696e636f72726563742c20747279206160008201527f6761696e2e000000000000000000000000000000000000000000000000000000602082015250565b60006149b0602583613717565b91506149bb82614954565b604082019050919050565b600060208201905081810360008301526149df816149a3565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614a42602f83613717565b9150614a4d826149e6565b604082019050919050565b60006020820190508181036000830152614a7181614a35565b9050919050565b600081905092915050565b6000614a8e8261370c565b614a988185614a78565b9350614aa8818560208601613728565b80840191505092915050565b6000614ac08285614a83565b9150614acc8284614a83565b91508190509392505050565b7f555249206c6f636b65642c20796f752063616e2774206368616e67652069742060008201527f616e796d6f726500000000000000000000000000000000000000000000000000602082015250565b6000614b34602783613717565b9150614b3f82614ad8565b604082019050919050565b60006020820190508181036000830152614b6381614b27565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614bc6602683613717565b9150614bd182614b6a565b604082019050919050565b60006020820190508181036000830152614bf581614bb9565b9050919050565b6000614c07826135fb565b9150614c12836135fb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c4b57614c4a6140b5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c90826135fb565b9150614c9b836135fb565b925082614cab57614caa614c56565b5b828204905092915050565b6000614cc1826135fb565b9150614ccc836135fb565b925082821015614cdf57614cde6140b5565b5b828203905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614d20601d83613717565b9150614d2b82614cea565b602082019050919050565b60006020820190508181036000830152614d4f81614d13565b9050919050565b600081905092915050565b50565b6000614d71600083614d56565b9150614d7c82614d61565b600082019050919050565b6000614d9282614d64565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614df8603a83613717565b9150614e0382614d9c565b604082019050919050565b60006020820190508181036000830152614e2781614deb565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614e8a602c83613717565b9150614e9582614e2e565b604082019050919050565b60006020820190508181036000830152614eb981614e7d565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614f1c602983613717565b9150614f2782614ec0565b604082019050919050565b60006020820190508181036000830152614f4b81614f0f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614fae602483613717565b9150614fb982614f52565b604082019050919050565b60006020820190508181036000830152614fdd81614fa1565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061501a601983613717565b915061502582614fe4565b602082019050919050565b600060208201905081810360008301526150498161500d565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006150ac603283613717565b91506150b782615050565b604082019050919050565b600060208201905081810360008301526150db8161509f565b9050919050565b60006150ed826135fb565b91506150f8836135fb565b92508261510857615107614c56565b5b828206905092915050565b60008151905061512281613add565b92915050565b60006020828403121561513e5761513d613647565b5b600061514c84828501615113565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b60006151b1602a83613717565b91506151bc82615155565b604082019050919050565b600060208201905081810360008301526151e0816151a4565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061520e826151e7565b61521881856151f2565b9350615228818560208601613728565b6152318161375b565b840191505092915050565b600060808201905061525160008301876135ec565b61525e60208301866135ec565b61526b6040830185613605565b818103606083015261527d8184615203565b905095945050505050565b6000815190506152978161367d565b92915050565b6000602082840312156152b3576152b2613647565b5b60006152c184828501615288565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615300602083613717565b915061530b826152ca565b602082019050919050565b6000602082019050818103600083015261532f816152f3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061536c601c83613717565b915061537782615336565b602082019050919050565b6000602082019050818103600083015261539b8161535f565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b60006153fe602683613717565b9150615409826153a2565b604082019050919050565b6000602082019050818103600083015261542d816153f1565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b600061546a601d83613717565b915061547582615434565b602082019050919050565b600060208201905081810360008301526154998161545d565b9050919050565b60006154ab826151e7565b6154b58185614d56565b93506154c5818560208601613728565b80840191505092915050565b60006154dd82846154a0565b91508190509291505056fea2646970667358221220318c49e80099695db70ba944f93abdcb0f90d987849d6c7ce00d851b57d325a464736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000bbb9dcee02742d9e4ed04e6452800be6e8db7c47000000000000000000000000a0e6cab3f8de86720439e911f443c0a204c88d4e0000000000000000000000005a7d97c88e9dbbe1748fb24d5fb7875745d7a152000000000000000000000000ebec918d4bb22dc75221d865e645added4e72a8a00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000384000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000000019

-----Decoded View---------------
Arg [0] : _payees (address[]): 0xbBb9DCee02742D9e4eD04E6452800BE6E8DB7C47,0xA0e6CAb3f8De86720439e911f443c0A204c88D4E,0x5a7d97C88e9dbBE1748Fb24D5fb7875745d7A152,0xebEc918D4bB22Dc75221d865e645ADdeD4e72A8a
Arg [1] : _shares (uint256[]): 900,50,25,25

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 000000000000000000000000bbb9dcee02742d9e4ed04e6452800be6e8db7c47
Arg [4] : 000000000000000000000000a0e6cab3f8de86720439e911f443c0a204c88d4e
Arg [5] : 0000000000000000000000005a7d97c88e9dbbe1748fb24d5fb7875745d7a152
Arg [6] : 000000000000000000000000ebec918d4bb22dc75221d865e645added4e72a8a
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000384
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000019


Deployed Bytecode Sourcemap

59229:5374:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32323:40;32339:12;:10;:12::i;:::-;32353:9;32323:40;;;;;;;:::i;:::-;;;;;;;;59229:5374;;;;;46726:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47671:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49230:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48753:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60184:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61416:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34109:566;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59487:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60021:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49980:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61546:88;;;;;;;;;;;;;:::i;:::-;;61690:437;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32454:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60087:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33583:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50390:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34943:641;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61040:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59690:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47365:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47095:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16118:103;;;;;;;;;;;;;:::i;:::-;;59568:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59754:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33809:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15467:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62362:131;;;;;;;;;;;;;:::i;:::-;;63228:1372;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47840:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33305:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59625:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49523:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50646:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48015:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33101:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32891:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62999:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59961:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32639:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59907:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62159:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49749:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59856:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61273:99;;;;;;;;;;;;;:::i;:::-;;16376:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14191:98;14244:7;14271:10;14264:17;;14191:98;:::o;46726:305::-;46828:4;46880:25;46865:40;;;:11;:40;;;;:105;;;;46937:33;46922:48;;;:11;:48;;;;46865:105;:158;;;;46987:36;47011:11;46987:23;:36::i;:::-;46865:158;46845:178;;46726:305;;;:::o;47671:100::-;47725:13;47758:5;47751:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47671:100;:::o;49230:221::-;49306:7;49334:16;49342:7;49334;:16::i;:::-;49326:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49419:15;:24;49435:7;49419:24;;;;;;;;;;;;;;;;;;;;;49412:31;;49230:221;;;:::o;48753:411::-;48834:13;48850:23;48865:7;48850:14;:23::i;:::-;48834:39;;48898:5;48892:11;;:2;:11;;;;48884:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;48992:5;48976:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;49001:37;49018:5;49025:12;:10;:12::i;:::-;49001:16;:37::i;:::-;48976:62;48954:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;49135:21;49144:2;49148:7;49135:8;:21::i;:::-;48823:341;48753:411;;:::o;60184:57::-;;;;;;;;;;;;;;;;;:::o;61416:92::-;61460:7;61487:13;;61480:20;;61416:92;:::o;34109:566::-;34204:1;34185:7;:16;34193:7;34185:16;;;;;;;;;;;;;;;;:20;34177:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;34261:21;34309:15;:13;:15::i;:::-;34285:21;:39;;;;:::i;:::-;34261:63;;34335:15;34353:58;34369:7;34378:13;34393:17;34402:7;34393:8;:17::i;:::-;34353:15;:58::i;:::-;34335:76;;34443:1;34432:7;:12;;34424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34527:7;34505:9;:18;34515:7;34505:18;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;34563:7;34545:14;;:25;;;;;;;:::i;:::-;;;;;;;;34583:35;34601:7;34610;34583:17;:35::i;:::-;34634:33;34650:7;34659;34634:33;;;;;;;:::i;:::-;;;;;;;;34166:509;;34109:566;:::o;59487:28::-;;;;:::o;60021:27::-;;;;;;;;;;;;;:::o;49980:339::-;50175:41;50194:12;:10;:12::i;:::-;50208:7;50175:18;:41::i;:::-;50167:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;50283:28;50293:4;50299:2;50303:7;50283:9;:28::i;:::-;49980:339;;;:::o;61546:88::-;15698:12;:10;:12::i;:::-;15687:23;;:7;:5;:7::i;:::-;:23;;;15679:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61614:12:::1;;;;;;;;;;;61613:13;61598:12;;:28;;;;;;;;;;;;;;;;;;61546:88::o:0;61690:437::-;15698:12;:10;:12::i;:::-;15687:23;;:7;:5;:7::i;:::-;:23;;;15679:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61813:13:::1;;61770:39;61789:19;:17;:19::i;:::-;61770:14;:18;;:39;;;;:::i;:::-;:56;;61760:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;61939:2;61921:14;:20;;61912:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;62041:6;62036:84;62053:14;62051:1;:16;62036:84;;;62088:20;62097:10;62088:8;:20::i;:::-;62069:3;;;;;:::i;:::-;;;;62036:84;;;;61690:437:::0;:::o;32454:91::-;32498:7;32525:12;;32518:19;;32454:91;:::o;60087:50::-;;;;;;;;;;;;;;;;;;;;;;:::o;33583:135::-;33653:7;33680:14;:21;33695:5;33680:21;;;;;;;;;;;;;;;:30;33702:7;33680:30;;;;;;;;;;;;;;;;33673:37;;33583:135;;;;:::o;50390:185::-;50528:39;50545:4;50551:2;50555:7;50528:39;;;;;;;;;;;;:16;:39::i;:::-;50390:185;;;:::o;34943:641::-;35044:1;35025:7;:16;35033:7;35025:16;;;;;;;;;;;;;;;;:20;35017:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;35101:21;35158:20;35172:5;35158:13;:20::i;:::-;35125:5;:15;;;35149:4;35125:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;35101:77;;35189:15;35207:65;35223:7;35232:13;35247:24;35256:5;35263:7;35247:8;:24::i;:::-;35207:15;:65::i;:::-;35189:83;;35304:1;35293:7;:12;;35285:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35400:7;35366:14;:21;35381:5;35366:21;;;;;;;;;;;;;;;:30;35388:7;35366:30;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;35448:7;35418:19;:26;35438:5;35418:26;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;35468:47;35491:5;35498:7;35507;35468:22;:47::i;:::-;35552:5;35531:45;;;35559:7;35568;35531:45;;;;;;;:::i;:::-;;;;;;;;35006:578;;34943:641;;:::o;61040:198::-;15698:12;:10;:12::i;:::-;15687:23;;:7;:5;:7::i;:::-;:23;;;15679:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61128:6:::1;61124:103;61144:6;;:13;;61140:1;:17;61124:103;;;61211:4;61179:18;:29;61198:6;;61205:1;61198:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;61179:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;61159:3;;;;;:::i;:::-;;;;61124:103;;;;61040:198:::0;;:::o;59690:29::-;;;;:::o;47365:239::-;47437:7;47457:13;47473:7;:16;47481:7;47473:16;;;;;;;;;;;;;;;;;;;;;47457:32;;47525:1;47508:19;;:5;:19;;;;47500:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;47591:5;47584:12;;;47365:239;;;:::o;47095:208::-;47167:7;47212:1;47195:19;;:5;:19;;;;47187:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;47279:9;:16;47289:5;47279:16;;;;;;;;;;;;;;;;47272:23;;47095:208;;;:::o;16118:103::-;15698:12;:10;:12::i;:::-;15687:23;;:7;:5;:7::i;:::-;:23;;;15679:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16183:30:::1;16210:1;16183:18;:30::i;:::-;16118:103::o:0;59568:27::-;;;;:::o;59754:30::-;;;;:::o;33809:100::-;33860:7;33887;33895:5;33887:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33880:21;;33809:100;;;:::o;15467:87::-;15513:7;15540:6;;;;;;;;;;;15533:13;;15467:87;:::o;62362:131::-;15698:12;:10;:12::i;:::-;15687:23;;:7;:5;:7::i;:::-;:23;;;15679:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62430:5:::1;62417:18;;:9;;;;;;;;;;;:18;;;62409:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;62481:4;62469:9;;:16;;;;;;;;;;;;;;;;;;62362:131::o:0;63228:1372::-;63299:15;;;;;;;;;;;63295:299;;;63340:18;:30;63359:10;63340:30;;;;;;;;;;;;;;;;;;;;;;;;;63331:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;63488:15;;63447:25;:37;63473:10;63447:37;;;;;;;;;;;;;;;;63432:12;:52;;;;:::i;:::-;:71;63423:146;;;;;;;;;;;;:::i;:::-;;;;;;;;;63295:299;63674:12;;;;;;;;;;;63666:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;63922:13;;63881:37;63898:19;:17;:19::i;:::-;63881:12;:16;;:37;;;;:::i;:::-;:54;;63871:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;64046:12;;64030;:28;;64021:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;64214:23;64224:12;64214:5;;:9;;:23;;;;:::i;:::-;64200:9;:38;64191:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;64342:6;64337:82;64354:12;64352:1;:14;64337:82;;;64387:20;64396:10;64387:8;:20::i;:::-;64368:3;;;;;:::i;:::-;;;;64337:82;;;;64435:15;;;;;;;;;;;64431:152;;;64559:12;64518:25;:37;64544:10;64518:37;;;;;;;;;;;;;;;;:53;;;;;;;:::i;:::-;;;;;;;;64431:152;63228:1372;:::o;47840:104::-;47896:13;47929:7;47922:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47840:104;:::o;33305:109::-;33361:7;33388:9;:18;33398:7;33388:18;;;;;;;;;;;;;;;;33381:25;;33305:109;;;:::o;59625:20::-;;;;:::o;49523:155::-;49618:52;49637:12;:10;:12::i;:::-;49651:8;49661;49618:18;:52::i;:::-;49523:155;;:::o;50646:328::-;50821:41;50840:12;:10;:12::i;:::-;50854:7;50821:18;:41::i;:::-;50813:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;50927:39;50941:4;50947:2;50951:7;50960:5;50927:13;:39::i;:::-;50646:328;;;;:::o;48015:334::-;48088:13;48122:16;48130:7;48122;:16::i;:::-;48114:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;48203:21;48227:10;:8;:10::i;:::-;48203:34;;48279:1;48261:7;48255:21;:25;:86;;;;;;;;;;;;;;;;;48307:7;48316:18;:7;:16;:18::i;:::-;48290:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48255:86;48248:93;;;48015:334;;;:::o;33101:105::-;33155:7;33182;:16;33190:7;33182:16;;;;;;;;;;;;;;;;33175:23;;33101:105;;;:::o;32891:119::-;32949:7;32976:19;:26;32996:5;32976:26;;;;;;;;;;;;;;;;32969:33;;32891:119;;;:::o;62999:107::-;63048:7;63075:15;:22;;;63068:30;;62999:107;:::o;59961:27::-;;;;;;;;;;;;;:::o;32639:95::-;32685:7;32712:14;;32705:21;;32639:95;:::o;59907:21::-;;;;;;;;;;;;;:::o;62159:177::-;15698:12;:10;:12::i;:::-;15687:23;;:7;:5;:7::i;:::-;:23;;;15679:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62252:5:::1;62239:18;;:9;;;;;;;;;;;:18;;;62230:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;62321:7;;62312:6;:16;;;;;;;:::i;:::-;;62159:177:::0;;:::o;49749:164::-;49846:4;49870:18;:25;49889:5;49870:25;;;;;;;;;;;;;;;:35;49896:8;49870:35;;;;;;;;;;;;;;;;;;;;;;;;;49863:42;;49749:164;;;;:::o;59856:24::-;;;;;;;;;;;;;:::o;61273:99::-;15698:12;:10;:12::i;:::-;15687:23;;:7;:5;:7::i;:::-;:23;;;15679:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61349:15:::1;;;;;;;;;;;61348:16;61330:15;;:34;;;;;;;;;;;;;;;;;;61273:99::o:0;16376:201::-;15698:12;:10;:12::i;:::-;15687:23;;:7;:5;:7::i;:::-;:23;;;15679:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16485:1:::1;16465:22;;:8;:22;;;;16457:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16541:28;16560:8;16541:18;:28::i;:::-;16376:201:::0;:::o;39495:157::-;39580:4;39619:25;39604:40;;;:11;:40;;;;39597:47;;39495:157;;;:::o;52484:127::-;52549:4;52601:1;52573:30;;:7;:16;52581:7;52573:16;;;;;;;;;;;;;;;;;;;;;:30;;;;52566:37;;52484:127;;;:::o;56466:174::-;56568:2;56541:15;:24;56557:7;56541:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;56624:7;56620:2;56586:46;;56595:23;56610:7;56595:14;:23::i;:::-;56586:46;;;;;;;;;;;;56466:174;;:::o;35762:248::-;35908:7;35987:15;35972:12;;35952:7;:16;35960:7;35952:16;;;;;;;;;;;;;;;;35936:13;:32;;;;:::i;:::-;35935:49;;;;:::i;:::-;:67;;;;:::i;:::-;35928:74;;35762:248;;;;;:::o;19077:317::-;19192:6;19167:21;:31;;19159:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19246:12;19264:9;:14;;19286:6;19264:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19245:52;;;19316:7;19308:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;19148:246;19077:317;;:::o;52778:348::-;52871:4;52896:16;52904:7;52896;:16::i;:::-;52888:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;52972:13;52988:23;53003:7;52988:14;:23::i;:::-;52972:39;;53041:5;53030:16;;:7;:16;;;:51;;;;53074:7;53050:31;;:20;53062:7;53050:11;:20::i;:::-;:31;;;53030:51;:87;;;;53085:32;53102:5;53109:7;53085:16;:32::i;:::-;53030:87;53022:96;;;52778:348;;;;:::o;55770:578::-;55929:4;55902:31;;:23;55917:7;55902:14;:23::i;:::-;:31;;;55894:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;56012:1;55998:16;;:2;:16;;;;55990:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;56068:39;56089:4;56095:2;56099:7;56068:20;:39::i;:::-;56172:29;56189:1;56193:7;56172:8;:29::i;:::-;56233:1;56214:9;:15;56224:4;56214:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;56262:1;56245:9;:13;56255:2;56245:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;56293:2;56274:7;:16;56282:7;56274:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;56332:7;56328:2;56313:27;;56322:4;56313:27;;;;;;;;;;;;55770:578;;;:::o;5758:98::-;5816:7;5847:1;5843;:5;;;;:::i;:::-;5836:12;;5758:98;;;;:::o;62807:135::-;62856:40;62866:2;62870:25;:15;:23;:25::i;:::-;62856:9;:40::i;:::-;62907:27;:15;:25;:27::i;:::-;62807:135;:::o;25783:211::-;25900:86;25920:5;25950:23;;;25975:2;25979:5;25927:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25900:19;:86::i;:::-;25783:211;;;:::o;16737:191::-;16811:16;16830:6;;;;;;;;;;;16811:25;;16856:8;16847:6;;:17;;;;;;;;;;;;;;;;;;16911:8;16880:40;;16901:8;16880:40;;;;;;;;;;;;16800:128;16737:191;:::o;6496:98::-;6554:7;6585:1;6581;:5;;;;:::i;:::-;6574:12;;6496:98;;;;:::o;56782:315::-;56937:8;56928:17;;:5;:17;;;;56920:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;57024:8;56986:18;:25;57005:5;56986:25;;;;;;;;;;;;;;;:35;57012:8;56986:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;57070:8;57048:41;;57063:5;57048:41;;;57080:8;57048:41;;;;;;:::i;:::-;;;;;;;;56782:315;;;:::o;51856:::-;52013:28;52023:4;52029:2;52033:7;52013:9;:28::i;:::-;52060:48;52083:4;52089:2;52093:7;52102:5;52060:22;:48::i;:::-;52052:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;51856:315;;;;:::o;62601:99::-;62653:13;62686:6;62679:13;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62601:99;:::o;11753:723::-;11809:13;12039:1;12030:5;:10;12026:53;;;12057:10;;;;;;;;;;;;;;;;;;;;;12026:53;12089:12;12104:5;12089:20;;12120:14;12145:78;12160:1;12152:4;:9;12145:78;;12178:8;;;;;:::i;:::-;;;;12209:2;12201:10;;;;;:::i;:::-;;;12145:78;;;12233:19;12265:6;12255:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12233:39;;12283:154;12299:1;12290:5;:10;12283:154;;12327:1;12317:11;;;;;:::i;:::-;;;12394:2;12386:5;:10;;;;:::i;:::-;12373:2;:24;;;;:::i;:::-;12360:39;;12343:6;12350;12343:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;12423:2;12414:11;;;;;:::i;:::-;;;12283:154;;;12461:6;12447:21;;;;;11753:723;;;;:::o;59033:126::-;;;;:::o;10795:114::-;10860:7;10887;:14;;;10880:21;;10795:114;;;:::o;53468:110::-;53544:26;53554:2;53558:7;53544:26;;;;;;;;;;;;:9;:26::i;:::-;53468:110;;:::o;10917:127::-;11024:1;11006:7;:14;;;:19;;;;;;;;;;;10917:127;:::o;28356:716::-;28780:23;28806:69;28834:4;28806:69;;;;;;;;;;;;;;;;;28814:5;28806:27;;;;:69;;;;;:::i;:::-;28780:95;;28910:1;28890:10;:17;:21;28886:179;;;28987:10;28976:30;;;;;;;;;;;;:::i;:::-;28968:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;28886:179;28426:646;28356:716;;:::o;57662:799::-;57817:4;57838:15;:2;:13;;;:15::i;:::-;57834:620;;;57890:2;57874:36;;;57911:12;:10;:12::i;:::-;57925:4;57931:7;57940:5;57874:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;57870:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58133:1;58116:6;:13;:18;58112:272;;;58159:60;;;;;;;;;;:::i;:::-;;;;;;;;58112:272;58334:6;58328:13;58319:6;58315:2;58311:15;58304:38;57870:529;58007:41;;;57997:51;;;:6;:51;;;;57990:58;;;;;57834:620;58438:4;58431:11;;57662:799;;;;;;;:::o;53805:321::-;53935:18;53941:2;53945:7;53935:5;:18::i;:::-;53986:54;54017:1;54021:2;54025:7;54034:5;53986:22;:54::i;:::-;53964:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;53805:321;;;:::o;20561:229::-;20698:12;20730:52;20752:6;20760:4;20766:1;20769:12;20730:21;:52::i;:::-;20723:59;;20561:229;;;;;:::o;17755:387::-;17815:4;18023:12;18090:7;18078:20;18070:28;;18133:1;18126:4;:8;18119:15;;;17755:387;;;:::o;54462:382::-;54556:1;54542:16;;:2;:16;;;;54534:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;54615:16;54623:7;54615;:16::i;:::-;54614:17;54606:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;54677:45;54706:1;54710:2;54714:7;54677:20;:45::i;:::-;54752:1;54735:9;:13;54745:2;54735:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;54783:2;54764:7;:16;54772:7;54764:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;54828:7;54824:2;54803:33;;54820:1;54803:33;;;;;;;;;;;;54462:382;;:::o;21681:510::-;21851:12;21909:5;21884:21;:30;;21876:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;21976:18;21987:6;21976:10;:18::i;:::-;21968:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;22042:12;22056:23;22083:6;:11;;22102:5;22109:4;22083:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22041:73;;;;22132:51;22149:7;22158:10;22170:12;22132:16;:51::i;:::-;22125:58;;;;21681:510;;;;;;:::o;24367:712::-;24517:12;24546:7;24542:530;;;24577:10;24570:17;;;;24542:530;24711:1;24691:10;:17;:21;24687:374;;;24889:10;24883:17;24950:15;24937:10;24933:2;24929:19;24922:44;24687:374;25032:12;25025:20;;;;;;;;;;;:::i;:::-;;;;;;;;24367:712;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:77::-;402:7;431:5;420:16;;365:77;;;:::o;448:118::-;535:24;553:5;535:24;:::i;:::-;530:3;523:37;448:118;;:::o;572:332::-;693:4;731:2;720:9;716:18;708:26;;744:71;812:1;801:9;797:17;788:6;744:71;:::i;:::-;825:72;893:2;882:9;878:18;869:6;825:72;:::i;:::-;572:332;;;;;:::o;910:75::-;943:6;976:2;970:9;960:19;;910:75;:::o;991:117::-;1100:1;1097;1090:12;1114:117;1223:1;1220;1213:12;1237:149;1273:7;1313:66;1306:5;1302:78;1291:89;;1237:149;;;:::o;1392:120::-;1464:23;1481:5;1464:23;:::i;:::-;1457:5;1454:34;1444:62;;1502:1;1499;1492:12;1444:62;1392:120;:::o;1518:137::-;1563:5;1601:6;1588:20;1579:29;;1617:32;1643:5;1617:32;:::i;:::-;1518:137;;;;:::o;1661:327::-;1719:6;1768:2;1756:9;1747:7;1743:23;1739:32;1736:119;;;1774:79;;:::i;:::-;1736:119;1894:1;1919:52;1963:7;1954:6;1943:9;1939:22;1919:52;:::i;:::-;1909:62;;1865:116;1661:327;;;;:::o;1994:90::-;2028:7;2071:5;2064:13;2057:21;2046:32;;1994:90;;;:::o;2090:109::-;2171:21;2186:5;2171:21;:::i;:::-;2166:3;2159:34;2090:109;;:::o;2205:210::-;2292:4;2330:2;2319:9;2315:18;2307:26;;2343:65;2405:1;2394:9;2390:17;2381:6;2343:65;:::i;:::-;2205:210;;;;:::o;2421:99::-;2473:6;2507:5;2501:12;2491:22;;2421:99;;;:::o;2526:169::-;2610:11;2644:6;2639:3;2632:19;2684:4;2679:3;2675:14;2660:29;;2526:169;;;;:::o;2701:307::-;2769:1;2779:113;2793:6;2790:1;2787:13;2779:113;;;2878:1;2873:3;2869:11;2863:18;2859:1;2854:3;2850:11;2843:39;2815:2;2812:1;2808:10;2803:15;;2779:113;;;2910:6;2907:1;2904:13;2901:101;;;2990:1;2981:6;2976:3;2972:16;2965:27;2901:101;2750:258;2701:307;;;:::o;3014:102::-;3055:6;3106:2;3102:7;3097:2;3090:5;3086:14;3082:28;3072:38;;3014:102;;;:::o;3122:364::-;3210:3;3238:39;3271:5;3238:39;:::i;:::-;3293:71;3357:6;3352:3;3293:71;:::i;:::-;3286:78;;3373:52;3418:6;3413:3;3406:4;3399:5;3395:16;3373:52;:::i;:::-;3450:29;3472:6;3450:29;:::i;:::-;3445:3;3441:39;3434:46;;3214:272;3122:364;;;;:::o;3492:313::-;3605:4;3643:2;3632:9;3628:18;3620:26;;3692:9;3686:4;3682:20;3678:1;3667:9;3663:17;3656:47;3720:78;3793:4;3784:6;3720:78;:::i;:::-;3712:86;;3492:313;;;;:::o;3811:122::-;3884:24;3902:5;3884:24;:::i;:::-;3877:5;3874:35;3864:63;;3923:1;3920;3913:12;3864:63;3811:122;:::o;3939:139::-;3985:5;4023:6;4010:20;4001:29;;4039:33;4066:5;4039:33;:::i;:::-;3939:139;;;;:::o;4084:329::-;4143:6;4192:2;4180:9;4171:7;4167:23;4163:32;4160:119;;;4198:79;;:::i;:::-;4160:119;4318:1;4343:53;4388:7;4379:6;4368:9;4364:22;4343:53;:::i;:::-;4333:63;;4289:117;4084:329;;;;:::o;4419:222::-;4512:4;4550:2;4539:9;4535:18;4527:26;;4563:71;4631:1;4620:9;4616:17;4607:6;4563:71;:::i;:::-;4419:222;;;;:::o;4647:122::-;4720:24;4738:5;4720:24;:::i;:::-;4713:5;4710:35;4700:63;;4759:1;4756;4749:12;4700:63;4647:122;:::o;4775:139::-;4821:5;4859:6;4846:20;4837:29;;4875:33;4902:5;4875:33;:::i;:::-;4775:139;;;;:::o;4920:474::-;4988:6;4996;5045:2;5033:9;5024:7;5020:23;5016:32;5013:119;;;5051:79;;:::i;:::-;5013:119;5171:1;5196:53;5241:7;5232:6;5221:9;5217:22;5196:53;:::i;:::-;5186:63;;5142:117;5298:2;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5269:118;4920:474;;;;;:::o;5400:329::-;5459:6;5508:2;5496:9;5487:7;5483:23;5479:32;5476:119;;;5514:79;;:::i;:::-;5476:119;5634:1;5659:53;5704:7;5695:6;5684:9;5680:22;5659:53;:::i;:::-;5649:63;;5605:117;5400:329;;;;:::o;5735:222::-;5828:4;5866:2;5855:9;5851:18;5843:26;;5879:71;5947:1;5936:9;5932:17;5923:6;5879:71;:::i;:::-;5735:222;;;;:::o;5963:104::-;6008:7;6037:24;6055:5;6037:24;:::i;:::-;6026:35;;5963:104;;;:::o;6073:138::-;6154:32;6180:5;6154:32;:::i;:::-;6147:5;6144:43;6134:71;;6201:1;6198;6191:12;6134:71;6073:138;:::o;6217:155::-;6271:5;6309:6;6296:20;6287:29;;6325:41;6360:5;6325:41;:::i;:::-;6217:155;;;;:::o;6378:345::-;6445:6;6494:2;6482:9;6473:7;6469:23;6465:32;6462:119;;;6500:79;;:::i;:::-;6462:119;6620:1;6645:61;6698:7;6689:6;6678:9;6674:22;6645:61;:::i;:::-;6635:71;;6591:125;6378:345;;;;:::o;6729:619::-;6806:6;6814;6822;6871:2;6859:9;6850:7;6846:23;6842:32;6839:119;;;6877:79;;:::i;:::-;6839:119;6997:1;7022:53;7067:7;7058:6;7047:9;7043:22;7022:53;:::i;:::-;7012:63;;6968:117;7124:2;7150:53;7195:7;7186:6;7175:9;7171:22;7150:53;:::i;:::-;7140:63;;7095:118;7252:2;7278:53;7323:7;7314:6;7303:9;7299:22;7278:53;:::i;:::-;7268:63;;7223:118;6729:619;;;;;:::o;7354:109::-;7404:7;7433:24;7451:5;7433:24;:::i;:::-;7422:35;;7354:109;;;:::o;7469:148::-;7555:37;7586:5;7555:37;:::i;:::-;7548:5;7545:48;7535:76;;7607:1;7604;7597:12;7535:76;7469:148;:::o;7623:165::-;7682:5;7720:6;7707:20;7698:29;;7736:46;7776:5;7736:46;:::i;:::-;7623:165;;;;:::o;7794:500::-;7875:6;7883;7932:2;7920:9;7911:7;7907:23;7903:32;7900:119;;;7938:79;;:::i;:::-;7900:119;8058:1;8083:66;8141:7;8132:6;8121:9;8117:22;8083:66;:::i;:::-;8073:76;;8029:130;8198:2;8224:53;8269:7;8260:6;8249:9;8245:22;8224:53;:::i;:::-;8214:63;;8169:118;7794:500;;;;;:::o;8300:117::-;8409:1;8406;8399:12;8423:117;8532:1;8529;8522:12;8546:117;8655:1;8652;8645:12;8686:568;8759:8;8769:6;8819:3;8812:4;8804:6;8800:17;8796:27;8786:122;;8827:79;;:::i;:::-;8786:122;8940:6;8927:20;8917:30;;8970:18;8962:6;8959:30;8956:117;;;8992:79;;:::i;:::-;8956:117;9106:4;9098:6;9094:17;9082:29;;9160:3;9152:4;9144:6;9140:17;9130:8;9126:32;9123:41;9120:128;;;9167:79;;:::i;:::-;9120:128;8686:568;;;;;:::o;9260:559::-;9346:6;9354;9403:2;9391:9;9382:7;9378:23;9374:32;9371:119;;;9409:79;;:::i;:::-;9371:119;9557:1;9546:9;9542:17;9529:31;9587:18;9579:6;9576:30;9573:117;;;9609:79;;:::i;:::-;9573:117;9722:80;9794:7;9785:6;9774:9;9770:22;9722:80;:::i;:::-;9704:98;;;;9500:312;9260:559;;;;;:::o;9825:116::-;9895:21;9910:5;9895:21;:::i;:::-;9888:5;9885:32;9875:60;;9931:1;9928;9921:12;9875:60;9825:116;:::o;9947:133::-;9990:5;10028:6;10015:20;10006:29;;10044:30;10068:5;10044:30;:::i;:::-;9947:133;;;;:::o;10086:468::-;10151:6;10159;10208:2;10196:9;10187:7;10183:23;10179:32;10176:119;;;10214:79;;:::i;:::-;10176:119;10334:1;10359:53;10404:7;10395:6;10384:9;10380:22;10359:53;:::i;:::-;10349:63;;10305:117;10461:2;10487:50;10529:7;10520:6;10509:9;10505:22;10487:50;:::i;:::-;10477:60;;10432:115;10086:468;;;;;:::o;10560:117::-;10669:1;10666;10659:12;10683:180;10731:77;10728:1;10721:88;10828:4;10825:1;10818:15;10852:4;10849:1;10842:15;10869:281;10952:27;10974:4;10952:27;:::i;:::-;10944:6;10940:40;11082:6;11070:10;11067:22;11046:18;11034:10;11031:34;11028:62;11025:88;;;11093:18;;:::i;:::-;11025:88;11133:10;11129:2;11122:22;10912:238;10869:281;;:::o;11156:129::-;11190:6;11217:20;;:::i;:::-;11207:30;;11246:33;11274:4;11266:6;11246:33;:::i;:::-;11156:129;;;:::o;11291:307::-;11352:4;11442:18;11434:6;11431:30;11428:56;;;11464:18;;:::i;:::-;11428:56;11502:29;11524:6;11502:29;:::i;:::-;11494:37;;11586:4;11580;11576:15;11568:23;;11291:307;;;:::o;11604:154::-;11688:6;11683:3;11678;11665:30;11750:1;11741:6;11736:3;11732:16;11725:27;11604:154;;;:::o;11764:410::-;11841:5;11866:65;11882:48;11923:6;11882:48;:::i;:::-;11866:65;:::i;:::-;11857:74;;11954:6;11947:5;11940:21;11992:4;11985:5;11981:16;12030:3;12021:6;12016:3;12012:16;12009:25;12006:112;;;12037:79;;:::i;:::-;12006:112;12127:41;12161:6;12156:3;12151;12127:41;:::i;:::-;11847:327;11764:410;;;;;:::o;12193:338::-;12248:5;12297:3;12290:4;12282:6;12278:17;12274:27;12264:122;;12305:79;;:::i;:::-;12264:122;12422:6;12409:20;12447:78;12521:3;12513:6;12506:4;12498:6;12494:17;12447:78;:::i;:::-;12438:87;;12254:277;12193:338;;;;:::o;12537:943::-;12632:6;12640;12648;12656;12705:3;12693:9;12684:7;12680:23;12676:33;12673:120;;;12712:79;;:::i;:::-;12673:120;12832:1;12857:53;12902:7;12893:6;12882:9;12878:22;12857:53;:::i;:::-;12847:63;;12803:117;12959:2;12985:53;13030:7;13021:6;13010:9;13006:22;12985:53;:::i;:::-;12975:63;;12930:118;13087:2;13113:53;13158:7;13149:6;13138:9;13134:22;13113:53;:::i;:::-;13103:63;;13058:118;13243:2;13232:9;13228:18;13215:32;13274:18;13266:6;13263:30;13260:117;;;13296:79;;:::i;:::-;13260:117;13401:62;13455:7;13446:6;13435:9;13431:22;13401:62;:::i;:::-;13391:72;;13186:287;12537:943;;;;;;;:::o;13486:355::-;13558:6;13607:2;13595:9;13586:7;13582:23;13578:32;13575:119;;;13613:79;;:::i;:::-;13575:119;13733:1;13758:66;13816:7;13807:6;13796:9;13792:22;13758:66;:::i;:::-;13748:76;;13704:130;13486:355;;;;:::o;13861:553::-;13919:8;13929:6;13979:3;13972:4;13964:6;13960:17;13956:27;13946:122;;13987:79;;:::i;:::-;13946:122;14100:6;14087:20;14077:30;;14130:18;14122:6;14119:30;14116:117;;;14152:79;;:::i;:::-;14116:117;14266:4;14258:6;14254:17;14242:29;;14320:3;14312:4;14304:6;14300:17;14290:8;14286:32;14283:41;14280:128;;;14327:79;;:::i;:::-;14280:128;13861:553;;;;;:::o;14420:529::-;14491:6;14499;14548:2;14536:9;14527:7;14523:23;14519:32;14516:119;;;14554:79;;:::i;:::-;14516:119;14702:1;14691:9;14687:17;14674:31;14732:18;14724:6;14721:30;14718:117;;;14754:79;;:::i;:::-;14718:117;14867:65;14924:7;14915:6;14904:9;14900:22;14867:65;:::i;:::-;14849:83;;;;14645:297;14420:529;;;;;:::o;14955:474::-;15023:6;15031;15080:2;15068:9;15059:7;15055:23;15051:32;15048:119;;;15086:79;;:::i;:::-;15048:119;15206:1;15231:53;15276:7;15267:6;15256:9;15252:22;15231:53;:::i;:::-;15221:63;;15177:117;15333:2;15359:53;15404:7;15395:6;15384:9;15380:22;15359:53;:::i;:::-;15349:63;;15304:118;14955:474;;;;;:::o;15435:180::-;15483:77;15480:1;15473:88;15580:4;15577:1;15570:15;15604:4;15601:1;15594:15;15621:320;15665:6;15702:1;15696:4;15692:12;15682:22;;15749:1;15743:4;15739:12;15770:18;15760:81;;15826:4;15818:6;15814:17;15804:27;;15760:81;15888:2;15880:6;15877:14;15857:18;15854:38;15851:84;;;15907:18;;:::i;:::-;15851:84;15672:269;15621:320;;;:::o;15947:231::-;16087:34;16083:1;16075:6;16071:14;16064:58;16156:14;16151:2;16143:6;16139:15;16132:39;15947:231;:::o;16184:366::-;16326:3;16347:67;16411:2;16406:3;16347:67;:::i;:::-;16340:74;;16423:93;16512:3;16423:93;:::i;:::-;16541:2;16536:3;16532:12;16525:19;;16184:366;;;:::o;16556:419::-;16722:4;16760:2;16749:9;16745:18;16737:26;;16809:9;16803:4;16799:20;16795:1;16784:9;16780:17;16773:47;16837:131;16963:4;16837:131;:::i;:::-;16829:139;;16556:419;;;:::o;16981:220::-;17121:34;17117:1;17109:6;17105:14;17098:58;17190:3;17185:2;17177:6;17173:15;17166:28;16981:220;:::o;17207:366::-;17349:3;17370:67;17434:2;17429:3;17370:67;:::i;:::-;17363:74;;17446:93;17535:3;17446:93;:::i;:::-;17564:2;17559:3;17555:12;17548:19;;17207:366;;;:::o;17579:419::-;17745:4;17783:2;17772:9;17768:18;17760:26;;17832:9;17826:4;17822:20;17818:1;17807:9;17803:17;17796:47;17860:131;17986:4;17860:131;:::i;:::-;17852:139;;17579:419;;;:::o;18004:243::-;18144:34;18140:1;18132:6;18128:14;18121:58;18213:26;18208:2;18200:6;18196:15;18189:51;18004:243;:::o;18253:366::-;18395:3;18416:67;18480:2;18475:3;18416:67;:::i;:::-;18409:74;;18492:93;18581:3;18492:93;:::i;:::-;18610:2;18605:3;18601:12;18594:19;;18253:366;;;:::o;18625:419::-;18791:4;18829:2;18818:9;18814:18;18806:26;;18878:9;18872:4;18868:20;18864:1;18853:9;18849:17;18842:47;18906:131;19032:4;18906:131;:::i;:::-;18898:139;;18625:419;;;:::o;19050:225::-;19190:34;19186:1;19178:6;19174:14;19167:58;19259:8;19254:2;19246:6;19242:15;19235:33;19050:225;:::o;19281:366::-;19423:3;19444:67;19508:2;19503:3;19444:67;:::i;:::-;19437:74;;19520:93;19609:3;19520:93;:::i;:::-;19638:2;19633:3;19629:12;19622:19;;19281:366;;;:::o;19653:419::-;19819:4;19857:2;19846:9;19842:18;19834:26;;19906:9;19900:4;19896:20;19892:1;19881:9;19877:17;19870:47;19934:131;20060:4;19934:131;:::i;:::-;19926:139;;19653:419;;;:::o;20078:180::-;20126:77;20123:1;20116:88;20223:4;20220:1;20213:15;20247:4;20244:1;20237:15;20264:305;20304:3;20323:20;20341:1;20323:20;:::i;:::-;20318:25;;20357:20;20375:1;20357:20;:::i;:::-;20352:25;;20511:1;20443:66;20439:74;20436:1;20433:81;20430:107;;;20517:18;;:::i;:::-;20430:107;20561:1;20558;20554:9;20547:16;;20264:305;;;;:::o;20575:230::-;20715:34;20711:1;20703:6;20699:14;20692:58;20784:13;20779:2;20771:6;20767:15;20760:38;20575:230;:::o;20811:366::-;20953:3;20974:67;21038:2;21033:3;20974:67;:::i;:::-;20967:74;;21050:93;21139:3;21050:93;:::i;:::-;21168:2;21163:3;21159:12;21152:19;;20811:366;;;:::o;21183:419::-;21349:4;21387:2;21376:9;21372:18;21364:26;;21436:9;21430:4;21426:20;21422:1;21411:9;21407:17;21400:47;21464:131;21590:4;21464:131;:::i;:::-;21456:139;;21183:419;;;:::o;21608:60::-;21636:3;21657:5;21650:12;;21608:60;;;:::o;21674:142::-;21724:9;21757:53;21775:34;21784:24;21802:5;21784:24;:::i;:::-;21775:34;:::i;:::-;21757:53;:::i;:::-;21744:66;;21674:142;;;:::o;21822:126::-;21872:9;21905:37;21936:5;21905:37;:::i;:::-;21892:50;;21822:126;;;:::o;21954:134::-;22012:9;22045:37;22076:5;22045:37;:::i;:::-;22032:50;;21954:134;;;:::o;22094:147::-;22189:45;22228:5;22189:45;:::i;:::-;22184:3;22177:58;22094:147;;:::o;22247:348::-;22376:4;22414:2;22403:9;22399:18;22391:26;;22427:79;22503:1;22492:9;22488:17;22479:6;22427:79;:::i;:::-;22516:72;22584:2;22573:9;22569:18;22560:6;22516:72;:::i;:::-;22247:348;;;;;:::o;22601:236::-;22741:34;22737:1;22729:6;22725:14;22718:58;22810:19;22805:2;22797:6;22793:15;22786:44;22601:236;:::o;22843:366::-;22985:3;23006:67;23070:2;23065:3;23006:67;:::i;:::-;22999:74;;23082:93;23171:3;23082:93;:::i;:::-;23200:2;23195:3;23191:12;23184:19;;22843:366;;;:::o;23215:419::-;23381:4;23419:2;23408:9;23404:18;23396:26;;23468:9;23462:4;23458:20;23454:1;23443:9;23439:17;23432:47;23496:131;23622:4;23496:131;:::i;:::-;23488:139;;23215:419;;;:::o;23640:182::-;23780:34;23776:1;23768:6;23764:14;23757:58;23640:182;:::o;23828:366::-;23970:3;23991:67;24055:2;24050:3;23991:67;:::i;:::-;23984:74;;24067:93;24156:3;24067:93;:::i;:::-;24185:2;24180:3;24176:12;24169:19;;23828:366;;;:::o;24200:419::-;24366:4;24404:2;24393:9;24389:18;24381:26;;24453:9;24447:4;24443:20;24439:1;24428:9;24424:17;24417:47;24481:131;24607:4;24481:131;:::i;:::-;24473:139;;24200:419;;;:::o;24625:293::-;24765:34;24761:1;24753:6;24749:14;24742:58;24834:34;24829:2;24821:6;24817:15;24810:59;24903:7;24898:2;24890:6;24886:15;24879:32;24625:293;:::o;24924:366::-;25066:3;25087:67;25151:2;25146:3;25087:67;:::i;:::-;25080:74;;25163:93;25252:3;25163:93;:::i;:::-;25281:2;25276:3;25272:12;25265:19;;24924:366;;;:::o;25296:419::-;25462:4;25500:2;25489:9;25485:18;25477:26;;25549:9;25543:4;25539:20;25535:1;25524:9;25520:17;25513:47;25577:131;25703:4;25577:131;:::i;:::-;25569:139;;25296:419;;;:::o;25721:293::-;25861:34;25857:1;25849:6;25845:14;25838:58;25930:34;25925:2;25917:6;25913:15;25906:59;25999:7;25994:2;25986:6;25982:15;25975:32;25721:293;:::o;26020:366::-;26162:3;26183:67;26247:2;26242:3;26183:67;:::i;:::-;26176:74;;26259:93;26348:3;26259:93;:::i;:::-;26377:2;26372:3;26368:12;26361:19;;26020:366;;;:::o;26392:419::-;26558:4;26596:2;26585:9;26581:18;26573:26;;26645:9;26639:4;26635:20;26631:1;26620:9;26616:17;26609:47;26673:131;26799:4;26673:131;:::i;:::-;26665:139;;26392:419;;;:::o;26817:233::-;26856:3;26879:24;26897:5;26879:24;:::i;:::-;26870:33;;26925:66;26918:5;26915:77;26912:103;;;26995:18;;:::i;:::-;26912:103;27042:1;27035:5;27031:13;27024:20;;26817:233;;;:::o;27056:143::-;27113:5;27144:6;27138:13;27129:22;;27160:33;27187:5;27160:33;:::i;:::-;27056:143;;;;:::o;27205:351::-;27275:6;27324:2;27312:9;27303:7;27299:23;27295:32;27292:119;;;27330:79;;:::i;:::-;27292:119;27450:1;27475:64;27531:7;27522:6;27511:9;27507:22;27475:64;:::i;:::-;27465:74;;27421:128;27205:351;;;;:::o;27562:180::-;27610:77;27607:1;27600:88;27707:4;27704:1;27697:15;27731:4;27728:1;27721:15;27748:228;27888:34;27884:1;27876:6;27872:14;27865:58;27957:11;27952:2;27944:6;27940:15;27933:36;27748:228;:::o;27982:366::-;28124:3;28145:67;28209:2;28204:3;28145:67;:::i;:::-;28138:74;;28221:93;28310:3;28221:93;:::i;:::-;28339:2;28334:3;28330:12;28323:19;;27982:366;;;:::o;28354:419::-;28520:4;28558:2;28547:9;28543:18;28535:26;;28607:9;28601:4;28597:20;28593:1;28582:9;28578:17;28571:47;28635:131;28761:4;28635:131;:::i;:::-;28627:139;;28354:419;;;:::o;28779:229::-;28919:34;28915:1;28907:6;28903:14;28896:58;28988:12;28983:2;28975:6;28971:15;28964:37;28779:229;:::o;29014:366::-;29156:3;29177:67;29241:2;29236:3;29177:67;:::i;:::-;29170:74;;29253:93;29342:3;29253:93;:::i;:::-;29371:2;29366:3;29362:12;29355:19;;29014:366;;;:::o;29386:419::-;29552:4;29590:2;29579:9;29575:18;29567:26;;29639:9;29633:4;29629:20;29625:1;29614:9;29610:17;29603:47;29667:131;29793:4;29667:131;:::i;:::-;29659:139;;29386:419;;;:::o;29811:168::-;29951:20;29947:1;29939:6;29935:14;29928:44;29811:168;:::o;29985:366::-;30127:3;30148:67;30212:2;30207:3;30148:67;:::i;:::-;30141:74;;30224:93;30313:3;30224:93;:::i;:::-;30342:2;30337:3;30333:12;30326:19;;29985:366;;;:::o;30357:419::-;30523:4;30561:2;30550:9;30546:18;30538:26;;30610:9;30604:4;30600:20;30596:1;30585:9;30581:17;30574:47;30638:131;30764:4;30638:131;:::i;:::-;30630:139;;30357:419;;;:::o;30782:220::-;30922:34;30918:1;30910:6;30906:14;30899:58;30991:3;30986:2;30978:6;30974:15;30967:28;30782:220;:::o;31008:366::-;31150:3;31171:67;31235:2;31230:3;31171:67;:::i;:::-;31164:74;;31247:93;31336:3;31247:93;:::i;:::-;31365:2;31360:3;31356:12;31349:19;;31008:366;;;:::o;31380:419::-;31546:4;31584:2;31573:9;31569:18;31561:26;;31633:9;31627:4;31623:20;31619:1;31608:9;31604:17;31597:47;31661:131;31787:4;31661:131;:::i;:::-;31653:139;;31380:419;;;:::o;31805:248::-;31945:34;31941:1;31933:6;31929:14;31922:58;32014:31;32009:2;32001:6;31997:15;31990:56;31805:248;:::o;32059:366::-;32201:3;32222:67;32286:2;32281:3;32222:67;:::i;:::-;32215:74;;32298:93;32387:3;32298:93;:::i;:::-;32416:2;32411:3;32407:12;32400:19;;32059:366;;;:::o;32431:419::-;32597:4;32635:2;32624:9;32620:18;32612:26;;32684:9;32678:4;32674:20;32670:1;32659:9;32655:17;32648:47;32712:131;32838:4;32712:131;:::i;:::-;32704:139;;32431:419;;;:::o;32856:220::-;32996:34;32992:1;32984:6;32980:14;32973:58;33065:3;33060:2;33052:6;33048:15;33041:28;32856:220;:::o;33082:366::-;33224:3;33245:67;33309:2;33304:3;33245:67;:::i;:::-;33238:74;;33321:93;33410:3;33321:93;:::i;:::-;33439:2;33434:3;33430:12;33423:19;;33082:366;;;:::o;33454:419::-;33620:4;33658:2;33647:9;33643:18;33635:26;;33707:9;33701:4;33697:20;33693:1;33682:9;33678:17;33671:47;33735:131;33861:4;33735:131;:::i;:::-;33727:139;;33454:419;;;:::o;33879:246::-;34019:34;34015:1;34007:6;34003:14;33996:58;34088:29;34083:2;34075:6;34071:15;34064:54;33879:246;:::o;34131:366::-;34273:3;34294:67;34358:2;34353:3;34294:67;:::i;:::-;34287:74;;34370:93;34459:3;34370:93;:::i;:::-;34488:2;34483:3;34479:12;34472:19;;34131:366;;;:::o;34503:419::-;34669:4;34707:2;34696:9;34692:18;34684:26;;34756:9;34750:4;34746:20;34742:1;34731:9;34727:17;34720:47;34784:131;34910:4;34784:131;:::i;:::-;34776:139;;34503:419;;;:::o;34928:224::-;35068:34;35064:1;35056:6;35052:14;35045:58;35137:7;35132:2;35124:6;35120:15;35113:32;34928:224;:::o;35158:366::-;35300:3;35321:67;35385:2;35380:3;35321:67;:::i;:::-;35314:74;;35397:93;35486:3;35397:93;:::i;:::-;35515:2;35510:3;35506:12;35499:19;;35158:366;;;:::o;35530:419::-;35696:4;35734:2;35723:9;35719:18;35711:26;;35783:9;35777:4;35773:20;35769:1;35758:9;35754:17;35747:47;35811:131;35937:4;35811:131;:::i;:::-;35803:139;;35530:419;;;:::o;35955:234::-;36095:34;36091:1;36083:6;36079:14;36072:58;36164:17;36159:2;36151:6;36147:15;36140:42;35955:234;:::o;36195:366::-;36337:3;36358:67;36422:2;36417:3;36358:67;:::i;:::-;36351:74;;36434:93;36523:3;36434:93;:::i;:::-;36552:2;36547:3;36543:12;36536:19;;36195:366;;;:::o;36567:419::-;36733:4;36771:2;36760:9;36756:18;36748:26;;36820:9;36814:4;36810:20;36806:1;36795:9;36791:17;36784:47;36848:131;36974:4;36848:131;:::i;:::-;36840:139;;36567:419;;;:::o;36992:148::-;37094:11;37131:3;37116:18;;36992:148;;;;:::o;37146:377::-;37252:3;37280:39;37313:5;37280:39;:::i;:::-;37335:89;37417:6;37412:3;37335:89;:::i;:::-;37328:96;;37433:52;37478:6;37473:3;37466:4;37459:5;37455:16;37433:52;:::i;:::-;37510:6;37505:3;37501:16;37494:23;;37256:267;37146:377;;;;:::o;37529:435::-;37709:3;37731:95;37822:3;37813:6;37731:95;:::i;:::-;37724:102;;37843:95;37934:3;37925:6;37843:95;:::i;:::-;37836:102;;37955:3;37948:10;;37529:435;;;;;:::o;37970:226::-;38110:34;38106:1;38098:6;38094:14;38087:58;38179:9;38174:2;38166:6;38162:15;38155:34;37970:226;:::o;38202:366::-;38344:3;38365:67;38429:2;38424:3;38365:67;:::i;:::-;38358:74;;38441:93;38530:3;38441:93;:::i;:::-;38559:2;38554:3;38550:12;38543:19;;38202:366;;;:::o;38574:419::-;38740:4;38778:2;38767:9;38763:18;38755:26;;38827:9;38821:4;38817:20;38813:1;38802:9;38798:17;38791:47;38855:131;38981:4;38855:131;:::i;:::-;38847:139;;38574:419;;;:::o;38999:225::-;39139:34;39135:1;39127:6;39123:14;39116:58;39208:8;39203:2;39195:6;39191:15;39184:33;38999:225;:::o;39230:366::-;39372:3;39393:67;39457:2;39452:3;39393:67;:::i;:::-;39386:74;;39469:93;39558:3;39469:93;:::i;:::-;39587:2;39582:3;39578:12;39571:19;;39230:366;;;:::o;39602:419::-;39768:4;39806:2;39795:9;39791:18;39783:26;;39855:9;39849:4;39845:20;39841:1;39830:9;39826:17;39819:47;39883:131;40009:4;39883:131;:::i;:::-;39875:139;;39602:419;;;:::o;40027:348::-;40067:7;40090:20;40108:1;40090:20;:::i;:::-;40085:25;;40124:20;40142:1;40124:20;:::i;:::-;40119:25;;40312:1;40244:66;40240:74;40237:1;40234:81;40229:1;40222:9;40215:17;40211:105;40208:131;;;40319:18;;:::i;:::-;40208:131;40367:1;40364;40360:9;40349:20;;40027:348;;;;:::o;40381:180::-;40429:77;40426:1;40419:88;40526:4;40523:1;40516:15;40550:4;40547:1;40540:15;40567:185;40607:1;40624:20;40642:1;40624:20;:::i;:::-;40619:25;;40658:20;40676:1;40658:20;:::i;:::-;40653:25;;40697:1;40687:35;;40702:18;;:::i;:::-;40687:35;40744:1;40741;40737:9;40732:14;;40567:185;;;;:::o;40758:191::-;40798:4;40818:20;40836:1;40818:20;:::i;:::-;40813:25;;40852:20;40870:1;40852:20;:::i;:::-;40847:25;;40891:1;40888;40885:8;40882:34;;;40896:18;;:::i;:::-;40882:34;40941:1;40938;40934:9;40926:17;;40758:191;;;;:::o;40955:179::-;41095:31;41091:1;41083:6;41079:14;41072:55;40955:179;:::o;41140:366::-;41282:3;41303:67;41367:2;41362:3;41303:67;:::i;:::-;41296:74;;41379:93;41468:3;41379:93;:::i;:::-;41497:2;41492:3;41488:12;41481:19;;41140:366;;;:::o;41512:419::-;41678:4;41716:2;41705:9;41701:18;41693:26;;41765:9;41759:4;41755:20;41751:1;41740:9;41736:17;41729:47;41793:131;41919:4;41793:131;:::i;:::-;41785:139;;41512:419;;;:::o;41937:147::-;42038:11;42075:3;42060:18;;41937:147;;;;:::o;42090:114::-;;:::o;42210:398::-;42369:3;42390:83;42471:1;42466:3;42390:83;:::i;:::-;42383:90;;42482:93;42571:3;42482:93;:::i;:::-;42600:1;42595:3;42591:11;42584:18;;42210:398;;;:::o;42614:379::-;42798:3;42820:147;42963:3;42820:147;:::i;:::-;42813:154;;42984:3;42977:10;;42614:379;;;:::o;42999:245::-;43139:34;43135:1;43127:6;43123:14;43116:58;43208:28;43203:2;43195:6;43191:15;43184:53;42999:245;:::o;43250:366::-;43392:3;43413:67;43477:2;43472:3;43413:67;:::i;:::-;43406:74;;43489:93;43578:3;43489:93;:::i;:::-;43607:2;43602:3;43598:12;43591:19;;43250:366;;;:::o;43622:419::-;43788:4;43826:2;43815:9;43811:18;43803:26;;43875:9;43869:4;43865:20;43861:1;43850:9;43846:17;43839:47;43903:131;44029:4;43903:131;:::i;:::-;43895:139;;43622:419;;;:::o;44047:231::-;44187:34;44183:1;44175:6;44171:14;44164:58;44256:14;44251:2;44243:6;44239:15;44232:39;44047:231;:::o;44284:366::-;44426:3;44447:67;44511:2;44506:3;44447:67;:::i;:::-;44440:74;;44523:93;44612:3;44523:93;:::i;:::-;44641:2;44636:3;44632:12;44625:19;;44284:366;;;:::o;44656:419::-;44822:4;44860:2;44849:9;44845:18;44837:26;;44909:9;44903:4;44899:20;44895:1;44884:9;44880:17;44873:47;44937:131;45063:4;44937:131;:::i;:::-;44929:139;;44656:419;;;:::o;45081:228::-;45221:34;45217:1;45209:6;45205:14;45198:58;45290:11;45285:2;45277:6;45273:15;45266:36;45081:228;:::o;45315:366::-;45457:3;45478:67;45542:2;45537:3;45478:67;:::i;:::-;45471:74;;45554:93;45643:3;45554:93;:::i;:::-;45672:2;45667:3;45663:12;45656:19;;45315:366;;;:::o;45687:419::-;45853:4;45891:2;45880:9;45876:18;45868:26;;45940:9;45934:4;45930:20;45926:1;45915:9;45911:17;45904:47;45968:131;46094:4;45968:131;:::i;:::-;45960:139;;45687:419;;;:::o;46112:223::-;46252:34;46248:1;46240:6;46236:14;46229:58;46321:6;46316:2;46308:6;46304:15;46297:31;46112:223;:::o;46341:366::-;46483:3;46504:67;46568:2;46563:3;46504:67;:::i;:::-;46497:74;;46580:93;46669:3;46580:93;:::i;:::-;46698:2;46693:3;46689:12;46682:19;;46341:366;;;:::o;46713:419::-;46879:4;46917:2;46906:9;46902:18;46894:26;;46966:9;46960:4;46956:20;46952:1;46941:9;46937:17;46930:47;46994:131;47120:4;46994:131;:::i;:::-;46986:139;;46713:419;;;:::o;47138:175::-;47278:27;47274:1;47266:6;47262:14;47255:51;47138:175;:::o;47319:366::-;47461:3;47482:67;47546:2;47541:3;47482:67;:::i;:::-;47475:74;;47558:93;47647:3;47558:93;:::i;:::-;47676:2;47671:3;47667:12;47660:19;;47319:366;;;:::o;47691:419::-;47857:4;47895:2;47884:9;47880:18;47872:26;;47944:9;47938:4;47934:20;47930:1;47919:9;47915:17;47908:47;47972:131;48098:4;47972:131;:::i;:::-;47964:139;;47691:419;;;:::o;48116:237::-;48256:34;48252:1;48244:6;48240:14;48233:58;48325:20;48320:2;48312:6;48308:15;48301:45;48116:237;:::o;48359:366::-;48501:3;48522:67;48586:2;48581:3;48522:67;:::i;:::-;48515:74;;48598:93;48687:3;48598:93;:::i;:::-;48716:2;48711:3;48707:12;48700:19;;48359:366;;;:::o;48731:419::-;48897:4;48935:2;48924:9;48920:18;48912:26;;48984:9;48978:4;48974:20;48970:1;48959:9;48955:17;48948:47;49012:131;49138:4;49012:131;:::i;:::-;49004:139;;48731:419;;;:::o;49156:176::-;49188:1;49205:20;49223:1;49205:20;:::i;:::-;49200:25;;49239:20;49257:1;49239:20;:::i;:::-;49234:25;;49278:1;49268:35;;49283:18;;:::i;:::-;49268:35;49324:1;49321;49317:9;49312:14;;49156:176;;;;:::o;49338:137::-;49392:5;49423:6;49417:13;49408:22;;49439:30;49463:5;49439:30;:::i;:::-;49338:137;;;;:::o;49481:345::-;49548:6;49597:2;49585:9;49576:7;49572:23;49568:32;49565:119;;;49603:79;;:::i;:::-;49565:119;49723:1;49748:61;49801:7;49792:6;49781:9;49777:22;49748:61;:::i;:::-;49738:71;;49694:125;49481:345;;;;:::o;49832:229::-;49972:34;49968:1;49960:6;49956:14;49949:58;50041:12;50036:2;50028:6;50024:15;50017:37;49832:229;:::o;50067:366::-;50209:3;50230:67;50294:2;50289:3;50230:67;:::i;:::-;50223:74;;50306:93;50395:3;50306:93;:::i;:::-;50424:2;50419:3;50415:12;50408:19;;50067:366;;;:::o;50439:419::-;50605:4;50643:2;50632:9;50628:18;50620:26;;50692:9;50686:4;50682:20;50678:1;50667:9;50663:17;50656:47;50720:131;50846:4;50720:131;:::i;:::-;50712:139;;50439:419;;;:::o;50864:98::-;50915:6;50949:5;50943:12;50933:22;;50864:98;;;:::o;50968:168::-;51051:11;51085:6;51080:3;51073:19;51125:4;51120:3;51116:14;51101:29;;50968:168;;;;:::o;51142:360::-;51228:3;51256:38;51288:5;51256:38;:::i;:::-;51310:70;51373:6;51368:3;51310:70;:::i;:::-;51303:77;;51389:52;51434:6;51429:3;51422:4;51415:5;51411:16;51389:52;:::i;:::-;51466:29;51488:6;51466:29;:::i;:::-;51461:3;51457:39;51450:46;;51232:270;51142:360;;;;:::o;51508:640::-;51703:4;51741:3;51730:9;51726:19;51718:27;;51755:71;51823:1;51812:9;51808:17;51799:6;51755:71;:::i;:::-;51836:72;51904:2;51893:9;51889:18;51880:6;51836:72;:::i;:::-;51918;51986:2;51975:9;51971:18;51962:6;51918:72;:::i;:::-;52037:9;52031:4;52027:20;52022:2;52011:9;52007:18;52000:48;52065:76;52136:4;52127:6;52065:76;:::i;:::-;52057:84;;51508:640;;;;;;;:::o;52154:141::-;52210:5;52241:6;52235:13;52226:22;;52257:32;52283:5;52257:32;:::i;:::-;52154:141;;;;:::o;52301:349::-;52370:6;52419:2;52407:9;52398:7;52394:23;52390:32;52387:119;;;52425:79;;:::i;:::-;52387:119;52545:1;52570:63;52625:7;52616:6;52605:9;52601:22;52570:63;:::i;:::-;52560:73;;52516:127;52301:349;;;;:::o;52656:182::-;52796:34;52792:1;52784:6;52780:14;52773:58;52656:182;:::o;52844:366::-;52986:3;53007:67;53071:2;53066:3;53007:67;:::i;:::-;53000:74;;53083:93;53172:3;53083:93;:::i;:::-;53201:2;53196:3;53192:12;53185:19;;52844:366;;;:::o;53216:419::-;53382:4;53420:2;53409:9;53405:18;53397:26;;53469:9;53463:4;53459:20;53455:1;53444:9;53440:17;53433:47;53497:131;53623:4;53497:131;:::i;:::-;53489:139;;53216:419;;;:::o;53641:178::-;53781:30;53777:1;53769:6;53765:14;53758:54;53641:178;:::o;53825:366::-;53967:3;53988:67;54052:2;54047:3;53988:67;:::i;:::-;53981:74;;54064:93;54153:3;54064:93;:::i;:::-;54182:2;54177:3;54173:12;54166:19;;53825:366;;;:::o;54197:419::-;54363:4;54401:2;54390:9;54386:18;54378:26;;54450:9;54444:4;54440:20;54436:1;54425:9;54421:17;54414:47;54478:131;54604:4;54478:131;:::i;:::-;54470:139;;54197:419;;;:::o;54622:225::-;54762:34;54758:1;54750:6;54746:14;54739:58;54831:8;54826:2;54818:6;54814:15;54807:33;54622:225;:::o;54853:366::-;54995:3;55016:67;55080:2;55075:3;55016:67;:::i;:::-;55009:74;;55092:93;55181:3;55092:93;:::i;:::-;55210:2;55205:3;55201:12;55194:19;;54853:366;;;:::o;55225:419::-;55391:4;55429:2;55418:9;55414:18;55406:26;;55478:9;55472:4;55468:20;55464:1;55453:9;55449:17;55442:47;55506:131;55632:4;55506:131;:::i;:::-;55498:139;;55225:419;;;:::o;55650:179::-;55790:31;55786:1;55778:6;55774:14;55767:55;55650:179;:::o;55835:366::-;55977:3;55998:67;56062:2;56057:3;55998:67;:::i;:::-;55991:74;;56074:93;56163:3;56074:93;:::i;:::-;56192:2;56187:3;56183:12;56176:19;;55835:366;;;:::o;56207:419::-;56373:4;56411:2;56400:9;56396:18;56388:26;;56460:9;56454:4;56450:20;56446:1;56435:9;56431:17;56424:47;56488:131;56614:4;56488:131;:::i;:::-;56480:139;;56207:419;;;:::o;56632:373::-;56736:3;56764:38;56796:5;56764:38;:::i;:::-;56818:88;56899:6;56894:3;56818:88;:::i;:::-;56811:95;;56915:52;56960:6;56955:3;56948:4;56941:5;56937:16;56915:52;:::i;:::-;56992:6;56987:3;56983:16;56976:23;;56740:265;56632:373;;;;:::o;57011:271::-;57141:3;57163:93;57252:3;57243:6;57163:93;:::i;:::-;57156:100;;57273:3;57266:10;;57011:271;;;;:::o

Swarm Source

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