ETH Price: $2,390.35 (-0.34%)

Token

Gothebys (GTB)
 

Overview

Max Total Supply

432 GTB

Holders

180

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GTB
0x0c70c309536dE9Aa4957cc78483fAeD8B51534C3
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Gothebys

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
*     .--.       .-. .-.         .-.          .-.     
*   : .--'     .' `.: :         : :         .'.'     
*   : : _  .--.`. .': `-.  .--. : `-. .-..-.`-' .--. 
*   : :; :' .; :: : : .. :' '_.'' .; :: :; :   `._-.'
*   `.__.'`.__.':_; :_;:_;`.__.'`.__.'`._. ;   `.__.'
*                                   .-. :         
*                                   `._.'         
*
* Project name: Gotheby's
* Project description: 100 painters paint 100 works of art in an alternate goblinesque universe with the help of AI.
* Website: gothebys.com
* Twitter: @gothebys
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}
// File: 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: 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() {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
// File: 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
// File: Payment.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 Payment is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

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

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

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

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

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

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


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

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


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

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

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _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 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: 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: 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: 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: 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: IERC721Enumerable.sol



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: 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: ERC721A.sol


pragma solidity ^0.8.0;









contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

pragma solidity ^0.8.2;

contract Gothebys is ERC721A, Ownable, ReentrancyGuard {  
    using Strings for uint256;
    string public _URIlink;
    bool public liveContract = false;
    uint256 public paintings = 9999;
    uint256 public mintLimit = 1; 
    uint256[100] public painterIndex  = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
    mapping(address => uint256) public mintedPerWallet;
    Painting[] public paintingArray;
    struct Painting {
        uint256 painterId;
        uint256 paintIndex;
    }
   
	constructor() ERC721A("Gothebys", "GTB") {
        _URIlink = "https://gothebys.com/nft/";
    }

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

 	function mintPainting(uint _painterId) external nonReentrant returns (uint) {
  	    uint256 totalpaintings = totalSupply();
        require(liveContract);
        require(totalpaintings + mintLimit <= paintings);
        require(msg.sender == tx.origin);
    	require(mintedPerWallet[msg.sender] < mintLimit);
        require(painterIndex[_painterId]<100);
        painterIndex[_painterId] = painterIndex[_painterId] + 1; 
        paintingArray.push(Painting(_painterId, painterIndex[_painterId]));   

        _safeMint(msg.sender, mintLimit);
        mintedPerWallet[msg.sender] += mintLimit;
        return totalpaintings + 1;
    }

 	function multiMintPainting(address realgoblins, uint256 _noOfPaintings, uint _painterId) public onlyOwner {
  	    uint256 totalpaintings = totalSupply();
	    require(totalpaintings + _noOfPaintings <= paintings);
        require(painterIndex[_painterId] + _noOfPaintings <100);
        for (uint i=0; i<_noOfPaintings; i++)
        {
            painterIndex[_painterId] = painterIndex[_painterId] + 1; 
            paintingArray.push(Painting(_painterId, painterIndex[_painterId]));  
        }
        _safeMint(realgoblins, _noOfPaintings);
    }

    function initialMultiMint(address realgoblins, uint fromId, uint toId, uint noPics) public onlyOwner {
  	    for(uint i=fromId; i<toId; i++)
            multiMintPainting(realgoblins, noPics, i);  
    }

    function pauseContract(bool _state) external onlyOwner {
        liveContract = _state;
    }

    function changeMintLimit(uint256 _limit) external onlyOwner {
        mintLimit = _limit;
    }

    function modBaseURI(string memory newURI) external onlyOwner {
        _URIlink = newURI;
    }

    function withdraw() public onlyOwner{
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function withdraw_p() public payable onlyOwner {
	(bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
		require(success);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_URIlink","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"changeMintLimit","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":"realgoblins","type":"address"},{"internalType":"uint256","name":"fromId","type":"uint256"},{"internalType":"uint256","name":"toId","type":"uint256"},{"internalType":"uint256","name":"noPics","type":"uint256"}],"name":"initialMultiMint","outputs":[],"stateMutability":"nonpayable","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":"liveContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_painterId","type":"uint256"}],"name":"mintPainting","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"modBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"realgoblins","type":"address"},{"internalType":"uint256","name":"_noOfPaintings","type":"uint256"},{"internalType":"uint256","name":"_painterId","type":"uint256"}],"name":"multiMintPainting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"painterIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"paintingArray","outputs":[{"internalType":"uint256","name":"painterId","type":"uint256"},{"internalType":"uint256","name":"paintIndex","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paintings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pauseContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw_p","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600a60006101000a81548160ff02191690831515021790555061270f600b556001600c5560405180610c800160405280600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff16815250600d9060646200042e92919062000627565b503480156200043c57600080fd5b506040518060400160405280600881526020017f476f7468656279730000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f47544200000000000000000000000000000000000000000000000000000000008152508160019080519060200190620004c192919062000671565b508060029080519060200190620004da92919062000671565b505050620004fd620004f16200055960201b60201c565b6200056160201b60201c565b60016008819055506040518060400160405280601981526020017f68747470733a2f2f676f7468656279732e636f6d2f6e66742f00000000000000815250600990805190602001906200055292919062000671565b5062000786565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82606481019282156200065e579160200282015b828111156200065d578251829060ff169055916020019190600101906200063b565b5b5090506200066d919062000702565b5090565b8280546200067f9062000721565b90600052602060002090601f016020900481019282620006a35760008555620006ef565b82601f10620006be57805160ff1916838001178555620006ef565b82800160010185558215620006ef579182015b82811115620006ee578251825591602001919060010190620006d1565b5b509050620006fe919062000702565b5090565b5b808211156200071d57600081600090555060010162000703565b5090565b600060028204905060018216806200073a57607f821691505b6020821081141562000751576200075062000757565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61454f80620007966000396000f3fe6080604052600436106101f95760003560e01c80638966daa71161010d578063c13cd2aa116100a0578063e272b8921161006f578063e272b89214610737578063e985e9c514610760578063eb55e1cb1461079d578063ec0b5b5b146107da578063f2fde38b14610805576101f9565b8063c13cd2aa1461067d578063c87b56dd146106a8578063cbc190db146106e5578063dfa15a131461070e576101f9565b8063a22cb465116100dc578063a22cb465146105c3578063b88d4fde146105ec578063bb96529a14610615578063bc7ed73514610652576101f9565b80638966daa7146105195780638da5cb5b1461054257806395d89b411461056d578063996517cf14610598576101f9565b806334259b5c116101905780634daf36061161015f5780634daf36061461040d5780634f6ccce71461044b5780636352211e1461048857806370a08231146104c5578063715018a614610502576101f9565b806334259b5c146103675780633a602b4d146103905780633ccfd60b146103cd57806342842e0e146103e4576101f9565b80630a0fb5fe116101cc5780630a0fb5fe146102cc57806318160ddd146102d657806323b872dd146103015780632f745c591461032a576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906132ad565b61082e565b60405161023291906137cc565b60405180910390f35b34801561024757600080fd5b50610250610978565b60405161025d91906137e7565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190613350565b610a0a565b60405161029a9190613765565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190613186565b610a8f565b005b6102d4610ba8565b005b3480156102e257600080fd5b506102eb610c9d565b6040516102f89190613a89565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190613070565b610ca6565b005b34801561033657600080fd5b50610351600480360381019061034c9190613186565b610cb6565b60405161035e9190613a89565b60405180910390f35b34801561037357600080fd5b5061038e60048036038101906103899190613350565b610ea8565b005b34801561039c57600080fd5b506103b760048036038101906103b29190613003565b610f2e565b6040516103c49190613a89565b60405180910390f35b3480156103d957600080fd5b506103e2610f46565b005b3480156103f057600080fd5b5061040b60048036038101906104069190613070565b611011565b005b34801561041957600080fd5b50610434600480360381019061042f9190613350565b611031565b604051610442929190613aa4565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d9190613350565b611065565b60405161047f9190613a89565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa9190613350565b6110b8565b6040516104bc9190613765565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e79190613003565b6110ce565b6040516104f99190613a89565b60405180910390f35b34801561050e57600080fd5b506105176111b7565b005b34801561052557600080fd5b50610540600480360381019061053b91906131c6565b61123f565b005b34801561054e57600080fd5b506105576113e3565b6040516105649190613765565b60405180910390f35b34801561057957600080fd5b5061058261140d565b60405161058f91906137e7565b60405180910390f35b3480156105a457600080fd5b506105ad61149f565b6040516105ba9190613a89565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e59190613146565b6114a5565b005b3480156105f857600080fd5b50610613600480360381019061060e91906130c3565b611626565b005b34801561062157600080fd5b5061063c60048036038101906106379190613350565b611682565b6040516106499190613a89565b60405180910390f35b34801561065e57600080fd5b5061066761169d565b60405161067491906137e7565b60405180910390f35b34801561068957600080fd5b5061069261172b565b60405161069f91906137cc565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca9190613350565b61173e565b6040516106dc91906137e7565b60405180910390f35b3480156106f157600080fd5b5061070c60048036038101906107079190613307565b6117e6565b005b34801561071a57600080fd5b5061073560048036038101906107309190613219565b61187c565b005b34801561074357600080fd5b5061075e60048036038101906107599190613280565b61192b565b005b34801561076c57600080fd5b5061078760048036038101906107829190613030565b6119c4565b60405161079491906137cc565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613350565b611a58565b6040516107d19190613a89565b60405180910390f35b3480156107e657600080fd5b506107ef611cb7565b6040516107fc9190613a89565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190613003565b611cbd565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610971575061097082611db5565b5b9050919050565b60606001805461098790613d13565b80601f01602080910402602001604051908101604052809291908181526020018280546109b390613d13565b8015610a005780601f106109d557610100808354040283529160200191610a00565b820191906000526020600020905b8154815290600101906020018083116109e357829003601f168201915b5050505050905090565b6000610a1582611e1f565b610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b90613a69565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9a826110b8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290613989565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b2a611e2c565b73ffffffffffffffffffffffffffffffffffffffff161480610b595750610b5881610b53611e2c565b6119c4565b5b610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f906138a9565b60405180910390fd5b610ba3838383611e34565b505050565b610bb0611e2c565b73ffffffffffffffffffffffffffffffffffffffff16610bce6113e3565b73ffffffffffffffffffffffffffffffffffffffff1614610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90613909565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c4a90613750565b60006040518083038185875af1925050503d8060008114610c87576040519150601f19603f3d011682016040523d82523d6000602084013e610c8c565b606091505b5050905080610c9a57600080fd5b50565b60008054905090565b610cb1838383611ee6565b505050565b6000610cc1836110ce565b8210610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990613809565b60405180910390fd5b6000610d0c610c9d565b905060008060005b83811015610e66576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e0657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e585786841415610e4f578195505050505050610ea2565b83806001019450505b508080600101915050610d14565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990613a09565b60405180910390fd5b92915050565b610eb0611e2c565b73ffffffffffffffffffffffffffffffffffffffff16610ece6113e3565b73ffffffffffffffffffffffffffffffffffffffff1614610f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1b90613909565b60405180910390fd5b80600c8190555050565b60716020528060005260406000206000915090505481565b610f4e611e2c565b73ffffffffffffffffffffffffffffffffffffffff16610f6c6113e3565b73ffffffffffffffffffffffffffffffffffffffff1614610fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb990613909565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561100d573d6000803e3d6000fd5b5050565b61102c83838360405180602001604052806000815250611626565b505050565b6072818154811061104157600080fd5b90600052602060002090600202016000915090508060000154908060010154905082565b600061106f610c9d565b82106110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790613869565b60405180910390fd5b819050919050565b60006110c382612426565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561113f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611136906138c9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111bf611e2c565b73ffffffffffffffffffffffffffffffffffffffff166111dd6113e3565b73ffffffffffffffffffffffffffffffffffffffff1614611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90613909565b60405180910390fd5b61123d60006125c0565b565b611247611e2c565b73ffffffffffffffffffffffffffffffffffffffff166112656113e3565b73ffffffffffffffffffffffffffffffffffffffff16146112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b290613909565b60405180910390fd5b60006112c5610c9d565b9050600b5483826112d69190613ba2565b11156112e157600080fd5b606483600d84606481106112f8576112f7613e7d565b5b01546113049190613ba2565b1061130e57600080fd5b60005b838110156113d2576001600d846064811061132f5761132e613e7d565b5b015461133b9190613ba2565b600d846064811061134f5761134e613e7d565b5b018190555060726040518060400160405280858152602001600d866064811061137b5761137a613e7d565b5b015481525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505080806113ca90613d76565b915050611311565b506113dd8484612686565b50505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461141c90613d13565b80601f016020809104026020016040519081016040528092919081815260200182805461144890613d13565b80156114955780601f1061146a57610100808354040283529160200191611495565b820191906000526020600020905b81548152906001019060200180831161147857829003601f168201915b5050505050905090565b600c5481565b6114ad611e2c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151290613949565b60405180910390fd5b8060066000611528611e2c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115d5611e2c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161161a91906137cc565b60405180910390a35050565b611631848484611ee6565b61163d848484846126a4565b61167c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611673906139a9565b60405180910390fd5b50505050565b600d816064811061169257600080fd5b016000915090505481565b600980546116aa90613d13565b80601f01602080910402602001604051908101604052809291908181526020018280546116d690613d13565b80156117235780601f106116f857610100808354040283529160200191611723565b820191906000526020600020905b81548152906001019060200180831161170657829003601f168201915b505050505081565b600a60009054906101000a900460ff1681565b606061174982611e1f565b611788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177f90613929565b60405180910390fd5b600061179261283b565b90506000815114156117b357604051806020016040528060008152506117de565b806117bd846128cd565b6040516020016117ce92919061372c565b6040516020818303038152906040525b915050919050565b6117ee611e2c565b73ffffffffffffffffffffffffffffffffffffffff1661180c6113e3565b73ffffffffffffffffffffffffffffffffffffffff1614611862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185990613909565b60405180910390fd5b8060099080519060200190611878929190612ddd565b5050565b611884611e2c565b73ffffffffffffffffffffffffffffffffffffffff166118a26113e3565b73ffffffffffffffffffffffffffffffffffffffff16146118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef90613909565b60405180910390fd5b60008390505b828110156119245761191185838361123f565b808061191c90613d76565b9150506118fe565b5050505050565b611933611e2c565b73ffffffffffffffffffffffffffffffffffffffff166119516113e3565b73ffffffffffffffffffffffffffffffffffffffff16146119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e90613909565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600060026008541415611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9790613a29565b60405180910390fd5b60026008819055506000611ab2610c9d565b9050600a60009054906101000a900460ff16611acd57600080fd5b600b54600c5482611ade9190613ba2565b1115611ae957600080fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b2157600080fd5b600c54607160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611b6e57600080fd5b6064600d8460648110611b8457611b83613e7d565b5b015410611b9057600080fd5b6001600d8460648110611ba657611ba5613e7d565b5b0154611bb29190613ba2565b600d8460648110611bc657611bc5613e7d565b5b018190555060726040518060400160405280858152602001600d8660648110611bf257611bf1613e7d565b5b0154815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050611c4233600c54612686565b600c54607160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c939190613ba2565b92505081905550600181611ca79190613ba2565b9150506001600881905550919050565b600b5481565b611cc5611e2c565b73ffffffffffffffffffffffffffffffffffffffff16611ce36113e3565b73ffffffffffffffffffffffffffffffffffffffff1614611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3090613909565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090613829565b60405180910390fd5b611db2816125c0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ef182612426565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f18611e2c565b73ffffffffffffffffffffffffffffffffffffffff161480611f745750611f3d611e2c565b73ffffffffffffffffffffffffffffffffffffffff16611f5c84610a0a565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f905750611f8f8260000151611f8a611e2c565b6119c4565b5b905080611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc990613969565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203b906138e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ab90613889565b60405180910390fd5b6120c18585856001612a2e565b6120d16000848460000151611e34565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123b65761231581611e1f565b156123b55782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461241f8585856001612a34565b5050505050565b61242e612e63565b61243782611e1f565b612476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246d90613849565b60405180910390fd5b60008290505b6000811061257f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125705780925050506125bb565b5080806001900391505061247c565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b290613a49565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126a0828260405180602001604052806000815250612a3a565b5050565b60006126c58473ffffffffffffffffffffffffffffffffffffffff16612a4c565b1561282e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126ee611e2c565b8786866040518563ffffffff1660e01b81526004016127109493929190613780565b602060405180830381600087803b15801561272a57600080fd5b505af192505050801561275b57506040513d601f19601f8201168201806040525081019061275891906132da565b60015b6127de573d806000811461278b576040519150601f19603f3d011682016040523d82523d6000602084013e612790565b606091505b506000815114156127d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cd906139a9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612833565b600190505b949350505050565b60606009805461284a90613d13565b80601f016020809104026020016040519081016040528092919081815260200182805461287690613d13565b80156128c35780601f10612898576101008083540402835291602001916128c3565b820191906000526020600020905b8154815290600101906020018083116128a657829003601f168201915b5050505050905090565b60606000821415612915576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a29565b600082905060005b6000821461294757808061293090613d76565b915050600a826129409190613bf8565b915061291d565b60008167ffffffffffffffff81111561296357612962613eac565b5b6040519080825280601f01601f1916602001820160405280156129955781602001600182028036833780820191505090505b5090505b60008514612a22576001826129ae9190613c29565b9150600a856129bd9190613dbf565b60306129c99190613ba2565b60f81b8183815181106129df576129de613e7d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a1b9190613bf8565b9450612999565b8093505050505b919050565b50505050565b50505050565b612a478383836001612a5f565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acc906139c9565b60405180910390fd5b6000841415612b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b10906139e9565b60405180910390fd5b612b266000868387612a2e565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612dc057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612dab57612d6b60008884886126a4565b612daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da1906139a9565b60405180910390fd5b5b81806001019250508080600101915050612cf4565b508060008190555050612dd66000868387612a34565b5050505050565b828054612de990613d13565b90600052602060002090601f016020900481019282612e0b5760008555612e52565b82601f10612e2457805160ff1916838001178555612e52565b82800160010185558215612e52579182015b82811115612e51578251825591602001919060010190612e36565b5b509050612e5f9190612e9d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612eb6576000816000905550600101612e9e565b5090565b6000612ecd612ec884613af2565b613acd565b905082815260208101848484011115612ee957612ee8613ee0565b5b612ef4848285613cd1565b509392505050565b6000612f0f612f0a84613b23565b613acd565b905082815260208101848484011115612f2b57612f2a613ee0565b5b612f36848285613cd1565b509392505050565b600081359050612f4d816144bd565b92915050565b600081359050612f62816144d4565b92915050565b600081359050612f77816144eb565b92915050565b600081519050612f8c816144eb565b92915050565b600082601f830112612fa757612fa6613edb565b5b8135612fb7848260208601612eba565b91505092915050565b600082601f830112612fd557612fd4613edb565b5b8135612fe5848260208601612efc565b91505092915050565b600081359050612ffd81614502565b92915050565b60006020828403121561301957613018613eea565b5b600061302784828501612f3e565b91505092915050565b6000806040838503121561304757613046613eea565b5b600061305585828601612f3e565b925050602061306685828601612f3e565b9150509250929050565b60008060006060848603121561308957613088613eea565b5b600061309786828701612f3e565b93505060206130a886828701612f3e565b92505060406130b986828701612fee565b9150509250925092565b600080600080608085870312156130dd576130dc613eea565b5b60006130eb87828801612f3e565b94505060206130fc87828801612f3e565b935050604061310d87828801612fee565b925050606085013567ffffffffffffffff81111561312e5761312d613ee5565b5b61313a87828801612f92565b91505092959194509250565b6000806040838503121561315d5761315c613eea565b5b600061316b85828601612f3e565b925050602061317c85828601612f53565b9150509250929050565b6000806040838503121561319d5761319c613eea565b5b60006131ab85828601612f3e565b92505060206131bc85828601612fee565b9150509250929050565b6000806000606084860312156131df576131de613eea565b5b60006131ed86828701612f3e565b93505060206131fe86828701612fee565b925050604061320f86828701612fee565b9150509250925092565b6000806000806080858703121561323357613232613eea565b5b600061324187828801612f3e565b945050602061325287828801612fee565b935050604061326387828801612fee565b925050606061327487828801612fee565b91505092959194509250565b60006020828403121561329657613295613eea565b5b60006132a484828501612f53565b91505092915050565b6000602082840312156132c3576132c2613eea565b5b60006132d184828501612f68565b91505092915050565b6000602082840312156132f0576132ef613eea565b5b60006132fe84828501612f7d565b91505092915050565b60006020828403121561331d5761331c613eea565b5b600082013567ffffffffffffffff81111561333b5761333a613ee5565b5b61334784828501612fc0565b91505092915050565b60006020828403121561336657613365613eea565b5b600061337484828501612fee565b91505092915050565b61338681613c5d565b82525050565b61339581613c6f565b82525050565b60006133a682613b54565b6133b08185613b6a565b93506133c0818560208601613ce0565b6133c981613eef565b840191505092915050565b60006133df82613b5f565b6133e98185613b86565b93506133f9818560208601613ce0565b61340281613eef565b840191505092915050565b600061341882613b5f565b6134228185613b97565b9350613432818560208601613ce0565b80840191505092915050565b600061344b602283613b86565b915061345682613f00565b604082019050919050565b600061346e602683613b86565b915061347982613f4f565b604082019050919050565b6000613491602a83613b86565b915061349c82613f9e565b604082019050919050565b60006134b4602383613b86565b91506134bf82613fed565b604082019050919050565b60006134d7602583613b86565b91506134e28261403c565b604082019050919050565b60006134fa603983613b86565b91506135058261408b565b604082019050919050565b600061351d602b83613b86565b9150613528826140da565b604082019050919050565b6000613540602683613b86565b915061354b82614129565b604082019050919050565b6000613563602083613b86565b915061356e82614178565b602082019050919050565b6000613586602f83613b86565b9150613591826141a1565b604082019050919050565b60006135a9601a83613b86565b91506135b4826141f0565b602082019050919050565b60006135cc603283613b86565b91506135d782614219565b604082019050919050565b60006135ef602283613b86565b91506135fa82614268565b604082019050919050565b6000613612600083613b7b565b915061361d826142b7565b600082019050919050565b6000613635603383613b86565b9150613640826142ba565b604082019050919050565b6000613658602183613b86565b915061366382614309565b604082019050919050565b600061367b602883613b86565b915061368682614358565b604082019050919050565b600061369e602e83613b86565b91506136a9826143a7565b604082019050919050565b60006136c1601f83613b86565b91506136cc826143f6565b602082019050919050565b60006136e4602f83613b86565b91506136ef8261441f565b604082019050919050565b6000613707602d83613b86565b91506137128261446e565b604082019050919050565b61372681613cc7565b82525050565b6000613738828561340d565b9150613744828461340d565b91508190509392505050565b600061375b82613605565b9150819050919050565b600060208201905061377a600083018461337d565b92915050565b6000608082019050613795600083018761337d565b6137a2602083018661337d565b6137af604083018561371d565b81810360608301526137c1818461339b565b905095945050505050565b60006020820190506137e1600083018461338c565b92915050565b6000602082019050818103600083015261380181846133d4565b905092915050565b600060208201905081810360008301526138228161343e565b9050919050565b6000602082019050818103600083015261384281613461565b9050919050565b6000602082019050818103600083015261386281613484565b9050919050565b60006020820190508181036000830152613882816134a7565b9050919050565b600060208201905081810360008301526138a2816134ca565b9050919050565b600060208201905081810360008301526138c2816134ed565b9050919050565b600060208201905081810360008301526138e281613510565b9050919050565b6000602082019050818103600083015261390281613533565b9050919050565b6000602082019050818103600083015261392281613556565b9050919050565b6000602082019050818103600083015261394281613579565b9050919050565b600060208201905081810360008301526139628161359c565b9050919050565b60006020820190508181036000830152613982816135bf565b9050919050565b600060208201905081810360008301526139a2816135e2565b9050919050565b600060208201905081810360008301526139c281613628565b9050919050565b600060208201905081810360008301526139e28161364b565b9050919050565b60006020820190508181036000830152613a028161366e565b9050919050565b60006020820190508181036000830152613a2281613691565b9050919050565b60006020820190508181036000830152613a42816136b4565b9050919050565b60006020820190508181036000830152613a62816136d7565b9050919050565b60006020820190508181036000830152613a82816136fa565b9050919050565b6000602082019050613a9e600083018461371d565b92915050565b6000604082019050613ab9600083018561371d565b613ac6602083018461371d565b9392505050565b6000613ad7613ae8565b9050613ae38282613d45565b919050565b6000604051905090565b600067ffffffffffffffff821115613b0d57613b0c613eac565b5b613b1682613eef565b9050602081019050919050565b600067ffffffffffffffff821115613b3e57613b3d613eac565b5b613b4782613eef565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bad82613cc7565b9150613bb883613cc7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bed57613bec613df0565b5b828201905092915050565b6000613c0382613cc7565b9150613c0e83613cc7565b925082613c1e57613c1d613e1f565b5b828204905092915050565b6000613c3482613cc7565b9150613c3f83613cc7565b925082821015613c5257613c51613df0565b5b828203905092915050565b6000613c6882613ca7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613cfe578082015181840152602081019050613ce3565b83811115613d0d576000848401525b50505050565b60006002820490506001821680613d2b57607f821691505b60208210811415613d3f57613d3e613e4e565b5b50919050565b613d4e82613eef565b810181811067ffffffffffffffff82111715613d6d57613d6c613eac565b5b80604052505050565b6000613d8182613cc7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613db457613db3613df0565b5b600182019050919050565b6000613dca82613cc7565b9150613dd583613cc7565b925082613de557613de4613e1f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6144c681613c5d565b81146144d157600080fd5b50565b6144dd81613c6f565b81146144e857600080fd5b50565b6144f481613c7b565b81146144ff57600080fd5b50565b61450b81613cc7565b811461451657600080fd5b5056fea2646970667358221220228514f49a02e6f3b04a0e96dc0574672cf8fbac5438452ad52c41e9a3de019f64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80638966daa71161010d578063c13cd2aa116100a0578063e272b8921161006f578063e272b89214610737578063e985e9c514610760578063eb55e1cb1461079d578063ec0b5b5b146107da578063f2fde38b14610805576101f9565b8063c13cd2aa1461067d578063c87b56dd146106a8578063cbc190db146106e5578063dfa15a131461070e576101f9565b8063a22cb465116100dc578063a22cb465146105c3578063b88d4fde146105ec578063bb96529a14610615578063bc7ed73514610652576101f9565b80638966daa7146105195780638da5cb5b1461054257806395d89b411461056d578063996517cf14610598576101f9565b806334259b5c116101905780634daf36061161015f5780634daf36061461040d5780634f6ccce71461044b5780636352211e1461048857806370a08231146104c5578063715018a614610502576101f9565b806334259b5c146103675780633a602b4d146103905780633ccfd60b146103cd57806342842e0e146103e4576101f9565b80630a0fb5fe116101cc5780630a0fb5fe146102cc57806318160ddd146102d657806323b872dd146103015780632f745c591461032a576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906132ad565b61082e565b60405161023291906137cc565b60405180910390f35b34801561024757600080fd5b50610250610978565b60405161025d91906137e7565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190613350565b610a0a565b60405161029a9190613765565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190613186565b610a8f565b005b6102d4610ba8565b005b3480156102e257600080fd5b506102eb610c9d565b6040516102f89190613a89565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190613070565b610ca6565b005b34801561033657600080fd5b50610351600480360381019061034c9190613186565b610cb6565b60405161035e9190613a89565b60405180910390f35b34801561037357600080fd5b5061038e60048036038101906103899190613350565b610ea8565b005b34801561039c57600080fd5b506103b760048036038101906103b29190613003565b610f2e565b6040516103c49190613a89565b60405180910390f35b3480156103d957600080fd5b506103e2610f46565b005b3480156103f057600080fd5b5061040b60048036038101906104069190613070565b611011565b005b34801561041957600080fd5b50610434600480360381019061042f9190613350565b611031565b604051610442929190613aa4565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d9190613350565b611065565b60405161047f9190613a89565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa9190613350565b6110b8565b6040516104bc9190613765565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e79190613003565b6110ce565b6040516104f99190613a89565b60405180910390f35b34801561050e57600080fd5b506105176111b7565b005b34801561052557600080fd5b50610540600480360381019061053b91906131c6565b61123f565b005b34801561054e57600080fd5b506105576113e3565b6040516105649190613765565b60405180910390f35b34801561057957600080fd5b5061058261140d565b60405161058f91906137e7565b60405180910390f35b3480156105a457600080fd5b506105ad61149f565b6040516105ba9190613a89565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e59190613146565b6114a5565b005b3480156105f857600080fd5b50610613600480360381019061060e91906130c3565b611626565b005b34801561062157600080fd5b5061063c60048036038101906106379190613350565b611682565b6040516106499190613a89565b60405180910390f35b34801561065e57600080fd5b5061066761169d565b60405161067491906137e7565b60405180910390f35b34801561068957600080fd5b5061069261172b565b60405161069f91906137cc565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca9190613350565b61173e565b6040516106dc91906137e7565b60405180910390f35b3480156106f157600080fd5b5061070c60048036038101906107079190613307565b6117e6565b005b34801561071a57600080fd5b5061073560048036038101906107309190613219565b61187c565b005b34801561074357600080fd5b5061075e60048036038101906107599190613280565b61192b565b005b34801561076c57600080fd5b5061078760048036038101906107829190613030565b6119c4565b60405161079491906137cc565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613350565b611a58565b6040516107d19190613a89565b60405180910390f35b3480156107e657600080fd5b506107ef611cb7565b6040516107fc9190613a89565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190613003565b611cbd565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610971575061097082611db5565b5b9050919050565b60606001805461098790613d13565b80601f01602080910402602001604051908101604052809291908181526020018280546109b390613d13565b8015610a005780601f106109d557610100808354040283529160200191610a00565b820191906000526020600020905b8154815290600101906020018083116109e357829003601f168201915b5050505050905090565b6000610a1582611e1f565b610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b90613a69565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9a826110b8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290613989565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b2a611e2c565b73ffffffffffffffffffffffffffffffffffffffff161480610b595750610b5881610b53611e2c565b6119c4565b5b610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f906138a9565b60405180910390fd5b610ba3838383611e34565b505050565b610bb0611e2c565b73ffffffffffffffffffffffffffffffffffffffff16610bce6113e3565b73ffffffffffffffffffffffffffffffffffffffff1614610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90613909565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c4a90613750565b60006040518083038185875af1925050503d8060008114610c87576040519150601f19603f3d011682016040523d82523d6000602084013e610c8c565b606091505b5050905080610c9a57600080fd5b50565b60008054905090565b610cb1838383611ee6565b505050565b6000610cc1836110ce565b8210610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990613809565b60405180910390fd5b6000610d0c610c9d565b905060008060005b83811015610e66576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e0657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e585786841415610e4f578195505050505050610ea2565b83806001019450505b508080600101915050610d14565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990613a09565b60405180910390fd5b92915050565b610eb0611e2c565b73ffffffffffffffffffffffffffffffffffffffff16610ece6113e3565b73ffffffffffffffffffffffffffffffffffffffff1614610f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1b90613909565b60405180910390fd5b80600c8190555050565b60716020528060005260406000206000915090505481565b610f4e611e2c565b73ffffffffffffffffffffffffffffffffffffffff16610f6c6113e3565b73ffffffffffffffffffffffffffffffffffffffff1614610fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb990613909565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561100d573d6000803e3d6000fd5b5050565b61102c83838360405180602001604052806000815250611626565b505050565b6072818154811061104157600080fd5b90600052602060002090600202016000915090508060000154908060010154905082565b600061106f610c9d565b82106110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790613869565b60405180910390fd5b819050919050565b60006110c382612426565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561113f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611136906138c9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111bf611e2c565b73ffffffffffffffffffffffffffffffffffffffff166111dd6113e3565b73ffffffffffffffffffffffffffffffffffffffff1614611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90613909565b60405180910390fd5b61123d60006125c0565b565b611247611e2c565b73ffffffffffffffffffffffffffffffffffffffff166112656113e3565b73ffffffffffffffffffffffffffffffffffffffff16146112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b290613909565b60405180910390fd5b60006112c5610c9d565b9050600b5483826112d69190613ba2565b11156112e157600080fd5b606483600d84606481106112f8576112f7613e7d565b5b01546113049190613ba2565b1061130e57600080fd5b60005b838110156113d2576001600d846064811061132f5761132e613e7d565b5b015461133b9190613ba2565b600d846064811061134f5761134e613e7d565b5b018190555060726040518060400160405280858152602001600d866064811061137b5761137a613e7d565b5b015481525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505080806113ca90613d76565b915050611311565b506113dd8484612686565b50505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461141c90613d13565b80601f016020809104026020016040519081016040528092919081815260200182805461144890613d13565b80156114955780601f1061146a57610100808354040283529160200191611495565b820191906000526020600020905b81548152906001019060200180831161147857829003601f168201915b5050505050905090565b600c5481565b6114ad611e2c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151290613949565b60405180910390fd5b8060066000611528611e2c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115d5611e2c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161161a91906137cc565b60405180910390a35050565b611631848484611ee6565b61163d848484846126a4565b61167c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611673906139a9565b60405180910390fd5b50505050565b600d816064811061169257600080fd5b016000915090505481565b600980546116aa90613d13565b80601f01602080910402602001604051908101604052809291908181526020018280546116d690613d13565b80156117235780601f106116f857610100808354040283529160200191611723565b820191906000526020600020905b81548152906001019060200180831161170657829003601f168201915b505050505081565b600a60009054906101000a900460ff1681565b606061174982611e1f565b611788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177f90613929565b60405180910390fd5b600061179261283b565b90506000815114156117b357604051806020016040528060008152506117de565b806117bd846128cd565b6040516020016117ce92919061372c565b6040516020818303038152906040525b915050919050565b6117ee611e2c565b73ffffffffffffffffffffffffffffffffffffffff1661180c6113e3565b73ffffffffffffffffffffffffffffffffffffffff1614611862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185990613909565b60405180910390fd5b8060099080519060200190611878929190612ddd565b5050565b611884611e2c565b73ffffffffffffffffffffffffffffffffffffffff166118a26113e3565b73ffffffffffffffffffffffffffffffffffffffff16146118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef90613909565b60405180910390fd5b60008390505b828110156119245761191185838361123f565b808061191c90613d76565b9150506118fe565b5050505050565b611933611e2c565b73ffffffffffffffffffffffffffffffffffffffff166119516113e3565b73ffffffffffffffffffffffffffffffffffffffff16146119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e90613909565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600060026008541415611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9790613a29565b60405180910390fd5b60026008819055506000611ab2610c9d565b9050600a60009054906101000a900460ff16611acd57600080fd5b600b54600c5482611ade9190613ba2565b1115611ae957600080fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b2157600080fd5b600c54607160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611b6e57600080fd5b6064600d8460648110611b8457611b83613e7d565b5b015410611b9057600080fd5b6001600d8460648110611ba657611ba5613e7d565b5b0154611bb29190613ba2565b600d8460648110611bc657611bc5613e7d565b5b018190555060726040518060400160405280858152602001600d8660648110611bf257611bf1613e7d565b5b0154815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050611c4233600c54612686565b600c54607160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c939190613ba2565b92505081905550600181611ca79190613ba2565b9150506001600881905550919050565b600b5481565b611cc5611e2c565b73ffffffffffffffffffffffffffffffffffffffff16611ce36113e3565b73ffffffffffffffffffffffffffffffffffffffff1614611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3090613909565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090613829565b60405180910390fd5b611db2816125c0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ef182612426565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f18611e2c565b73ffffffffffffffffffffffffffffffffffffffff161480611f745750611f3d611e2c565b73ffffffffffffffffffffffffffffffffffffffff16611f5c84610a0a565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f905750611f8f8260000151611f8a611e2c565b6119c4565b5b905080611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc990613969565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203b906138e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ab90613889565b60405180910390fd5b6120c18585856001612a2e565b6120d16000848460000151611e34565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123b65761231581611e1f565b156123b55782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461241f8585856001612a34565b5050505050565b61242e612e63565b61243782611e1f565b612476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246d90613849565b60405180910390fd5b60008290505b6000811061257f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125705780925050506125bb565b5080806001900391505061247c565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b290613a49565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126a0828260405180602001604052806000815250612a3a565b5050565b60006126c58473ffffffffffffffffffffffffffffffffffffffff16612a4c565b1561282e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126ee611e2c565b8786866040518563ffffffff1660e01b81526004016127109493929190613780565b602060405180830381600087803b15801561272a57600080fd5b505af192505050801561275b57506040513d601f19601f8201168201806040525081019061275891906132da565b60015b6127de573d806000811461278b576040519150601f19603f3d011682016040523d82523d6000602084013e612790565b606091505b506000815114156127d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cd906139a9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612833565b600190505b949350505050565b60606009805461284a90613d13565b80601f016020809104026020016040519081016040528092919081815260200182805461287690613d13565b80156128c35780601f10612898576101008083540402835291602001916128c3565b820191906000526020600020905b8154815290600101906020018083116128a657829003601f168201915b5050505050905090565b60606000821415612915576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a29565b600082905060005b6000821461294757808061293090613d76565b915050600a826129409190613bf8565b915061291d565b60008167ffffffffffffffff81111561296357612962613eac565b5b6040519080825280601f01601f1916602001820160405280156129955781602001600182028036833780820191505090505b5090505b60008514612a22576001826129ae9190613c29565b9150600a856129bd9190613dbf565b60306129c99190613ba2565b60f81b8183815181106129df576129de613e7d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a1b9190613bf8565b9450612999565b8093505050505b919050565b50505050565b50505050565b612a478383836001612a5f565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acc906139c9565b60405180910390fd5b6000841415612b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b10906139e9565b60405180910390fd5b612b266000868387612a2e565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612dc057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612dab57612d6b60008884886126a4565b612daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da1906139a9565b60405180910390fd5b5b81806001019250508080600101915050612cf4565b508060008190555050612dd66000868387612a34565b5050505050565b828054612de990613d13565b90600052602060002090601f016020900481019282612e0b5760008555612e52565b82601f10612e2457805160ff1916838001178555612e52565b82800160010185558215612e52579182015b82811115612e51578251825591602001919060010190612e36565b5b509050612e5f9190612e9d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612eb6576000816000905550600101612e9e565b5090565b6000612ecd612ec884613af2565b613acd565b905082815260208101848484011115612ee957612ee8613ee0565b5b612ef4848285613cd1565b509392505050565b6000612f0f612f0a84613b23565b613acd565b905082815260208101848484011115612f2b57612f2a613ee0565b5b612f36848285613cd1565b509392505050565b600081359050612f4d816144bd565b92915050565b600081359050612f62816144d4565b92915050565b600081359050612f77816144eb565b92915050565b600081519050612f8c816144eb565b92915050565b600082601f830112612fa757612fa6613edb565b5b8135612fb7848260208601612eba565b91505092915050565b600082601f830112612fd557612fd4613edb565b5b8135612fe5848260208601612efc565b91505092915050565b600081359050612ffd81614502565b92915050565b60006020828403121561301957613018613eea565b5b600061302784828501612f3e565b91505092915050565b6000806040838503121561304757613046613eea565b5b600061305585828601612f3e565b925050602061306685828601612f3e565b9150509250929050565b60008060006060848603121561308957613088613eea565b5b600061309786828701612f3e565b93505060206130a886828701612f3e565b92505060406130b986828701612fee565b9150509250925092565b600080600080608085870312156130dd576130dc613eea565b5b60006130eb87828801612f3e565b94505060206130fc87828801612f3e565b935050604061310d87828801612fee565b925050606085013567ffffffffffffffff81111561312e5761312d613ee5565b5b61313a87828801612f92565b91505092959194509250565b6000806040838503121561315d5761315c613eea565b5b600061316b85828601612f3e565b925050602061317c85828601612f53565b9150509250929050565b6000806040838503121561319d5761319c613eea565b5b60006131ab85828601612f3e565b92505060206131bc85828601612fee565b9150509250929050565b6000806000606084860312156131df576131de613eea565b5b60006131ed86828701612f3e565b93505060206131fe86828701612fee565b925050604061320f86828701612fee565b9150509250925092565b6000806000806080858703121561323357613232613eea565b5b600061324187828801612f3e565b945050602061325287828801612fee565b935050604061326387828801612fee565b925050606061327487828801612fee565b91505092959194509250565b60006020828403121561329657613295613eea565b5b60006132a484828501612f53565b91505092915050565b6000602082840312156132c3576132c2613eea565b5b60006132d184828501612f68565b91505092915050565b6000602082840312156132f0576132ef613eea565b5b60006132fe84828501612f7d565b91505092915050565b60006020828403121561331d5761331c613eea565b5b600082013567ffffffffffffffff81111561333b5761333a613ee5565b5b61334784828501612fc0565b91505092915050565b60006020828403121561336657613365613eea565b5b600061337484828501612fee565b91505092915050565b61338681613c5d565b82525050565b61339581613c6f565b82525050565b60006133a682613b54565b6133b08185613b6a565b93506133c0818560208601613ce0565b6133c981613eef565b840191505092915050565b60006133df82613b5f565b6133e98185613b86565b93506133f9818560208601613ce0565b61340281613eef565b840191505092915050565b600061341882613b5f565b6134228185613b97565b9350613432818560208601613ce0565b80840191505092915050565b600061344b602283613b86565b915061345682613f00565b604082019050919050565b600061346e602683613b86565b915061347982613f4f565b604082019050919050565b6000613491602a83613b86565b915061349c82613f9e565b604082019050919050565b60006134b4602383613b86565b91506134bf82613fed565b604082019050919050565b60006134d7602583613b86565b91506134e28261403c565b604082019050919050565b60006134fa603983613b86565b91506135058261408b565b604082019050919050565b600061351d602b83613b86565b9150613528826140da565b604082019050919050565b6000613540602683613b86565b915061354b82614129565b604082019050919050565b6000613563602083613b86565b915061356e82614178565b602082019050919050565b6000613586602f83613b86565b9150613591826141a1565b604082019050919050565b60006135a9601a83613b86565b91506135b4826141f0565b602082019050919050565b60006135cc603283613b86565b91506135d782614219565b604082019050919050565b60006135ef602283613b86565b91506135fa82614268565b604082019050919050565b6000613612600083613b7b565b915061361d826142b7565b600082019050919050565b6000613635603383613b86565b9150613640826142ba565b604082019050919050565b6000613658602183613b86565b915061366382614309565b604082019050919050565b600061367b602883613b86565b915061368682614358565b604082019050919050565b600061369e602e83613b86565b91506136a9826143a7565b604082019050919050565b60006136c1601f83613b86565b91506136cc826143f6565b602082019050919050565b60006136e4602f83613b86565b91506136ef8261441f565b604082019050919050565b6000613707602d83613b86565b91506137128261446e565b604082019050919050565b61372681613cc7565b82525050565b6000613738828561340d565b9150613744828461340d565b91508190509392505050565b600061375b82613605565b9150819050919050565b600060208201905061377a600083018461337d565b92915050565b6000608082019050613795600083018761337d565b6137a2602083018661337d565b6137af604083018561371d565b81810360608301526137c1818461339b565b905095945050505050565b60006020820190506137e1600083018461338c565b92915050565b6000602082019050818103600083015261380181846133d4565b905092915050565b600060208201905081810360008301526138228161343e565b9050919050565b6000602082019050818103600083015261384281613461565b9050919050565b6000602082019050818103600083015261386281613484565b9050919050565b60006020820190508181036000830152613882816134a7565b9050919050565b600060208201905081810360008301526138a2816134ca565b9050919050565b600060208201905081810360008301526138c2816134ed565b9050919050565b600060208201905081810360008301526138e281613510565b9050919050565b6000602082019050818103600083015261390281613533565b9050919050565b6000602082019050818103600083015261392281613556565b9050919050565b6000602082019050818103600083015261394281613579565b9050919050565b600060208201905081810360008301526139628161359c565b9050919050565b60006020820190508181036000830152613982816135bf565b9050919050565b600060208201905081810360008301526139a2816135e2565b9050919050565b600060208201905081810360008301526139c281613628565b9050919050565b600060208201905081810360008301526139e28161364b565b9050919050565b60006020820190508181036000830152613a028161366e565b9050919050565b60006020820190508181036000830152613a2281613691565b9050919050565b60006020820190508181036000830152613a42816136b4565b9050919050565b60006020820190508181036000830152613a62816136d7565b9050919050565b60006020820190508181036000830152613a82816136fa565b9050919050565b6000602082019050613a9e600083018461371d565b92915050565b6000604082019050613ab9600083018561371d565b613ac6602083018461371d565b9392505050565b6000613ad7613ae8565b9050613ae38282613d45565b919050565b6000604051905090565b600067ffffffffffffffff821115613b0d57613b0c613eac565b5b613b1682613eef565b9050602081019050919050565b600067ffffffffffffffff821115613b3e57613b3d613eac565b5b613b4782613eef565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bad82613cc7565b9150613bb883613cc7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bed57613bec613df0565b5b828201905092915050565b6000613c0382613cc7565b9150613c0e83613cc7565b925082613c1e57613c1d613e1f565b5b828204905092915050565b6000613c3482613cc7565b9150613c3f83613cc7565b925082821015613c5257613c51613df0565b5b828203905092915050565b6000613c6882613ca7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613cfe578082015181840152602081019050613ce3565b83811115613d0d576000848401525b50505050565b60006002820490506001821680613d2b57607f821691505b60208210811415613d3f57613d3e613e4e565b5b50919050565b613d4e82613eef565b810181811067ffffffffffffffff82111715613d6d57613d6c613eac565b5b80604052505050565b6000613d8182613cc7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613db457613db3613df0565b5b600182019050919050565b6000613dca82613cc7565b9150613dd583613cc7565b925082613de557613de4613e1f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6144c681613c5d565b81146144d157600080fd5b50565b6144dd81613c6f565b81146144e857600080fd5b50565b6144f481613c7b565b81146144ff57600080fd5b50565b61450b81613cc7565b811461451657600080fd5b5056fea2646970667358221220228514f49a02e6f3b04a0e96dc0574672cf8fbac5438452ad52c41e9a3de019f64736f6c63430008070033

Deployed Bytecode Sourcemap

56785:3042:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40942:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42828:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44390:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43911:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59670:154;;;:::i;:::-;;39199:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45266:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39863:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59313:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57366:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59523:139;;;;;;;;;;;;;:::i;:::-;;45499:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57423:31;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;39376:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42637:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41378:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14529:94;;;;;;;;;;;;;:::i;:::-;;58426:561;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13878:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42997:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56987:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44676:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45747:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57023:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56881:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56910:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43172:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59418:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58995:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59210:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45035:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57771:649;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56949:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14778:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40942:372;41044:4;41096:25;41081:40;;;:11;:40;;;;:105;;;;41153:33;41138:48;;;:11;:48;;;;41081:105;:172;;;;41218:35;41203:50;;;:11;:50;;;;41081:172;:225;;;;41270:36;41294:11;41270:23;:36::i;:::-;41081:225;41061:245;;40942:372;;;:::o;42828:100::-;42882:13;42915:5;42908:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42828:100;:::o;44390:214::-;44458:7;44486:16;44494:7;44486;:16::i;:::-;44478:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;44572:15;:24;44588:7;44572:24;;;;;;;;;;;;;;;;;;;;;44565:31;;44390:214;;;:::o;43911:413::-;43984:13;44000:24;44016:7;44000:15;:24::i;:::-;43984:40;;44049:5;44043:11;;:2;:11;;;;44035:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44144:5;44128:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;44153:37;44170:5;44177:12;:10;:12::i;:::-;44153:16;:37::i;:::-;44128:62;44106:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44288:28;44297:2;44301:7;44310:5;44288:8;:28::i;:::-;43973:351;43911:413;;:::o;59670:154::-;14109:12;:10;:12::i;:::-;14098:23;;:7;:5;:7::i;:::-;:23;;;14090:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59722:12:::1;59748:10;59740:24;;59772:21;59740:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59721:77;;;59811:7;59803:16;;;::::0;::::1;;59717:107;59670:154::o:0;39199:100::-;39252:7;39279:12;;39272:19;;39199:100;:::o;45266:162::-;45392:28;45402:4;45408:2;45412:7;45392:9;:28::i;:::-;45266:162;;;:::o;39863:1007::-;39952:7;39988:16;39998:5;39988:9;:16::i;:::-;39980:5;:24;39972:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;40054:22;40079:13;:11;:13::i;:::-;40054:38;;40103:19;40133:25;40322:9;40317:466;40337:14;40333:1;:18;40317:466;;;40377:31;40411:11;:14;40423:1;40411:14;;;;;;;;;;;40377:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40474:1;40448:28;;:9;:14;;;:28;;;40444:111;;40521:9;:14;;;40501:34;;40444:111;40598:5;40577:26;;:17;:26;;;40573:195;;;40647:5;40632:11;:20;40628:85;;;40688:1;40681:8;;;;;;;;;40628:85;40735:13;;;;;;;40573:195;40358:425;40353:3;;;;;;;40317:466;;;;40806:56;;;;;;;;;;:::i;:::-;;;;;;;;39863:1007;;;;;:::o;59313:97::-;14109:12;:10;:12::i;:::-;14098:23;;:7;:5;:7::i;:::-;:23;;;14090:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59396:6:::1;59384:9;:18;;;;59313:97:::0;:::o;57366:50::-;;;;;;;;;;;;;;;;;:::o;59523:139::-;14109:12;:10;:12::i;:::-;14098:23;;:7;:5;:7::i;:::-;:23;;;14090:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59570:12:::1;59585:21;59570:36;;59625:10;59617:28;;:37;59646:7;59617:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;59559:103;59523:139::o:0;45499:177::-;45629:39;45646:4;45652:2;45656:7;45629:39;;;;;;;;;;;;:16;:39::i;:::-;45499:177;;;:::o;57423:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39376:187::-;39443:7;39479:13;:11;:13::i;:::-;39471:5;:21;39463:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;39550:5;39543:12;;39376:187;;;:::o;42637:124::-;42701:7;42728:20;42740:7;42728:11;:20::i;:::-;:25;;;42721:32;;42637:124;;;:::o;41378:221::-;41442:7;41487:1;41470:19;;:5;:19;;;;41462:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;41563:12;:19;41576:5;41563:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;41555:36;;41548:43;;41378:221;;;:::o;14529:94::-;14109:12;:10;:12::i;:::-;14098:23;;:7;:5;:7::i;:::-;:23;;;14090:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14594:21:::1;14612:1;14594:9;:21::i;:::-;14529:94::o:0;58426:561::-;14109:12;:10;:12::i;:::-;14098:23;;:7;:5;:7::i;:::-;:23;;;14090:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58542:22:::1;58567:13;:11;:13::i;:::-;58542:38;;58631:9;;58613:14;58596;:31;;;;:::i;:::-;:44;;58588:53;;;::::0;::::1;;58703:3;58687:14;58660:12;58673:10;58660:24;;;;;;;:::i;:::-;;;;:41;;;;:::i;:::-;:46;58652:55;;;::::0;::::1;;58723:6;58718:213;58735:14;58733:1;:16;58718:213;;;58834:1;58807:12;58820:10;58807:24;;;;;;;:::i;:::-;;;;:28;;;;:::i;:::-;58780:12;58793:10;58780:24;;;;;;;:::i;:::-;;;:55;;;;58851:13;58870:46;;;;;;;;58879:10;58870:46;;;;58891:12;58904:10;58891:24;;;;;;;:::i;:::-;;;;58870:46;;::::0;58851:66:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58751:3;;;;;:::i;:::-;;;;58718:213;;;;58941:38;58951:11;58964:14;58941:9;:38::i;:::-;58532:455;58426:561:::0;;;:::o;13878:87::-;13924:7;13951:6;;;;;;;;;;;13944:13;;13878:87;:::o;42997:104::-;43053:13;43086:7;43079:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42997:104;:::o;56987:28::-;;;;:::o;44676:288::-;44783:12;:10;:12::i;:::-;44771:24;;:8;:24;;;;44763:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44884:8;44839:18;:32;44858:12;:10;:12::i;:::-;44839:32;;;;;;;;;;;;;;;:42;44872:8;44839:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;44937:8;44908:48;;44923:12;:10;:12::i;:::-;44908:48;;;44947:8;44908:48;;;;;;:::i;:::-;;;;;;;;44676:288;;:::o;45747:355::-;45906:28;45916:4;45922:2;45926:7;45906:9;:28::i;:::-;45967:48;45990:4;45996:2;46000:7;46009:5;45967:22;:48::i;:::-;45945:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;45747:355;;;;:::o;57023:336::-;;;;;;;;;;;;;;;;;;;;:::o;56881:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56910:32::-;;;;;;;;;;;;;:::o;43172:335::-;43245:13;43279:16;43287:7;43279;:16::i;:::-;43271:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43360:21;43384:10;:8;:10::i;:::-;43360:34;;43437:1;43418:7;43412:21;:26;;:87;;;;;;;;;;;;;;;;;43465:7;43474:18;:7;:16;:18::i;:::-;43448:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43412:87;43405:94;;;43172:335;;;:::o;59418:97::-;14109:12;:10;:12::i;:::-;14098:23;;:7;:5;:7::i;:::-;:23;;;14090:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59501:6:::1;59490:8;:17;;;;;;;;;;;;:::i;:::-;;59418:97:::0;:::o;58995:207::-;14109:12;:10;:12::i;:::-;14098:23;;:7;:5;:7::i;:::-;:23;;;14090:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59110:6:::1;59117;59110:13;;59106:86;59127:4;59125:1;:6;59106:86;;;59151:41;59169:11;59182:6;59190:1;59151:17;:41::i;:::-;59133:3;;;;;:::i;:::-;;;;59106:86;;;;58995:207:::0;;;;:::o;59210:95::-;14109:12;:10;:12::i;:::-;14098:23;;:7;:5;:7::i;:::-;:23;;;14090:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59291:6:::1;59276:12;;:21;;;;;;;;;;;;;;;;;;59210:95:::0;:::o;45035:164::-;45132:4;45156:18;:25;45175:5;45156:25;;;;;;;;;;;;;;;:35;45182:8;45156:35;;;;;;;;;;;;;;;;;;;;;;;;;45149:42;;45035:164;;;;:::o;57771:649::-;57841:4;55811:1;56409:7;;:19;;56401:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;55811:1;56542:7;:18;;;;57857:22:::1;57882:13;:11;:13::i;:::-;57857:38;;57914:12;;;;;;;;;;;57906:21;;;::::0;::::1;;57976:9;;57963;;57946:14;:26;;;;:::i;:::-;:39;;57938:48;;;::::0;::::1;;58019:9;58005:23;;:10;:23;;;57997:32;;;::::0;::::1;;58075:9;;58045:15;:27;58061:10;58045:27;;;;;;;;;;;;;;;;:39;58037:48;;;::::0;::::1;;58129:3;58104:12;58117:10;58104:24;;;;;;;:::i;:::-;;;;:28;58096:37;;;::::0;::::1;;58198:1;58171:12;58184:10;58171:24;;;;;;;:::i;:::-;;;;:28;;;;:::i;:::-;58144:12;58157:10;58144:24;;;;;;;:::i;:::-;;;:55;;;;58211:13;58230:46;;;;;;;;58239:10;58230:46;;;;58251:12;58264:10;58251:24;;;;;;;:::i;:::-;;;;58230:46;;::::0;58211:66:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58293:32;58303:10;58315:9;;58293;:32::i;:::-;58367:9;;58336:15;:27;58352:10;58336:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;58411:1;58394:14;:18;;;;:::i;:::-;58387:25;;;55767:1:::0;56721:7;:22;;;;57771:649;;;:::o;56949:31::-;;;;:::o;14778:192::-;14109:12;:10;:12::i;:::-;14098:23;;:7;:5;:7::i;:::-;:23;;;14090:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14887:1:::1;14867:22;;:8;:22;;;;14859:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14943:19;14953:8;14943:9;:19::i;:::-;14778:192:::0;:::o;31330:157::-;31415:4;31454:25;31439:40;;;:11;:40;;;;31432:47;;31330:157;;;:::o;46357:111::-;46414:4;46448:12;;46438:7;:22;46431:29;;46357:111;;;:::o;12699:98::-;12752:7;12779:10;12772:17;;12699:98;:::o;51277:196::-;51419:2;51392:15;:24;51408:7;51392:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51457:7;51453:2;51437:28;;51446:5;51437:28;;;;;;;;;;;;51277:196;;;:::o;49157:2002::-;49272:35;49310:20;49322:7;49310:11;:20::i;:::-;49272:58;;49343:22;49385:13;:18;;;49369:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;49444:12;:10;:12::i;:::-;49420:36;;:20;49432:7;49420:11;:20::i;:::-;:36;;;49369:87;:154;;;;49473:50;49490:13;:18;;;49510:12;:10;:12::i;:::-;49473:16;:50::i;:::-;49369:154;49343:181;;49545:17;49537:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;49660:4;49638:26;;:13;:18;;;:26;;;49630:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49740:1;49726:16;;:2;:16;;;;49718:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49797:43;49819:4;49825:2;49829:7;49838:1;49797:21;:43::i;:::-;49905:49;49922:1;49926:7;49935:13;:18;;;49905:8;:49::i;:::-;50280:1;50250:12;:18;50263:4;50250:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50324:1;50296:12;:16;50309:2;50296:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50370:2;50342:11;:20;50354:7;50342:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;50432:15;50387:11;:20;50399:7;50387:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;50700:19;50732:1;50722:7;:11;50700:33;;50793:1;50752:43;;:11;:24;50764:11;50752:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;50748:295;;;50820:20;50828:11;50820:7;:20::i;:::-;50816:212;;;50897:13;:18;;;50865:11;:24;50877:11;50865:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;50980:13;:28;;;50938:11;:24;50950:11;50938:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;50816:212;50748:295;50225:829;51090:7;51086:2;51071:27;;51080:4;51071:27;;;;;;;;;;;;51109:42;51130:4;51136:2;51140:7;51149:1;51109:20;:42::i;:::-;49261:1898;;49157:2002;;;:::o;42038:537::-;42099:21;;:::i;:::-;42141:16;42149:7;42141;:16::i;:::-;42133:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;42247:12;42262:7;42247:22;;42242:245;42279:1;42271:4;:9;42242:245;;42309:31;42343:11;:17;42355:4;42343:17;;;;;;;;;;;42309:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42409:1;42383:28;;:9;:14;;;:28;;;42379:93;;42443:9;42436:16;;;;;;42379:93;42290:197;42282:6;;;;;;;;42242:245;;;;42510:57;;;;;;;;;;:::i;:::-;;;;;;;;42038:537;;;;:::o;14978:173::-;15034:16;15053:6;;;;;;;;;;;15034:25;;15079:8;15070:6;;:17;;;;;;;;;;;;;;;;;;15134:8;15103:40;;15124:8;15103:40;;;;;;;;;;;;15023:128;14978:173;:::o;46476:104::-;46545:27;46555:2;46559:8;46545:27;;;;;;;;;;;;:9;:27::i;:::-;46476:104;;:::o;52038:804::-;52193:4;52214:15;:2;:13;;;:15::i;:::-;52210:625;;;52266:2;52250:36;;;52287:12;:10;:12::i;:::-;52301:4;52307:7;52316:5;52250:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52246:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52513:1;52496:6;:13;:18;52492:273;;;52539:61;;;;;;;;;;:::i;:::-;;;;;;;;52492:273;52715:6;52709:13;52700:6;52696:2;52692:15;52685:38;52246:534;52383:45;;;52373:55;;;:6;:55;;;;52366:62;;;;;52210:625;52819:4;52812:11;;52038:804;;;;;;;:::o;57656:109::-;57716:13;57749:8;57742:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57656:109;:::o;873:723::-;929:13;1159:1;1150:5;:10;1146:53;;;1177:10;;;;;;;;;;;;;;;;;;;;;1146:53;1209:12;1224:5;1209:20;;1240:14;1265:78;1280:1;1272:4;:9;1265:78;;1298:8;;;;;:::i;:::-;;;;1329:2;1321:10;;;;;:::i;:::-;;;1265:78;;;1353:19;1385:6;1375:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1353:39;;1403:154;1419:1;1410:5;:10;1403:154;;1447:1;1437:11;;;;;:::i;:::-;;;1514:2;1506:5;:10;;;;:::i;:::-;1493:2;:24;;;;:::i;:::-;1480:39;;1463:6;1470;1463:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1543:2;1534:11;;;;;:::i;:::-;;;1403:154;;;1581:6;1567:21;;;;;873:723;;;;:::o;53330:159::-;;;;;:::o;53901:158::-;;;;;:::o;46943:163::-;47066:32;47072:2;47076:8;47086:5;47093:4;47066:5;:32::i;:::-;46943:163;;;:::o;15892:387::-;15952:4;16160:12;16227:7;16215:20;16207:28;;16270:1;16263:4;:8;16256:15;;;15892:387;;;:::o;47365:1538::-;47504:20;47527:12;;47504:35;;47572:1;47558:16;;:2;:16;;;;47550:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47643:1;47631:8;:13;;47623:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;47702:61;47732:1;47736:2;47740:12;47754:8;47702:21;:61::i;:::-;48077:8;48041:12;:16;48054:2;48041:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48142:8;48101:12;:16;48114:2;48101:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48201:2;48168:11;:25;48180:12;48168:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;48268:15;48218:11;:25;48230:12;48218:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;48301:20;48324:12;48301:35;;48358:9;48353:415;48373:8;48369:1;:12;48353:415;;;48437:12;48433:2;48412:38;;48429:1;48412:38;;;;;;;;;;;;48473:4;48469:249;;;48536:59;48567:1;48571:2;48575:12;48589:5;48536:22;:59::i;:::-;48502:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;48469:249;48738:14;;;;;;;48383:3;;;;;;;48353:415;;;;48799:12;48784;:27;;;;48016:807;48835:60;48864:1;48868:2;48872:12;48886:8;48835:20;:60::i;:::-;47493:1410;47365:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:619::-;5697:6;5705;5713;5762:2;5750:9;5741:7;5737:23;5733:32;5730:119;;;5768:79;;:::i;:::-;5730:119;5888:1;5913:53;5958:7;5949:6;5938:9;5934:22;5913:53;:::i;:::-;5903:63;;5859:117;6015:2;6041:53;6086:7;6077:6;6066:9;6062:22;6041:53;:::i;:::-;6031:63;;5986:118;6143:2;6169:53;6214:7;6205:6;6194:9;6190:22;6169:53;:::i;:::-;6159:63;;6114:118;5620:619;;;;;:::o;6245:765::-;6331:6;6339;6347;6355;6404:3;6392:9;6383:7;6379:23;6375:33;6372:120;;;6411:79;;:::i;:::-;6372:120;6531:1;6556:53;6601:7;6592:6;6581:9;6577:22;6556:53;:::i;:::-;6546:63;;6502:117;6658:2;6684:53;6729:7;6720:6;6709:9;6705:22;6684:53;:::i;:::-;6674:63;;6629:118;6786:2;6812:53;6857:7;6848:6;6837:9;6833:22;6812:53;:::i;:::-;6802:63;;6757:118;6914:2;6940:53;6985:7;6976:6;6965:9;6961:22;6940:53;:::i;:::-;6930:63;;6885:118;6245:765;;;;;;;:::o;7016:323::-;7072:6;7121:2;7109:9;7100:7;7096:23;7092:32;7089:119;;;7127:79;;:::i;:::-;7089:119;7247:1;7272:50;7314:7;7305:6;7294:9;7290:22;7272:50;:::i;:::-;7262:60;;7218:114;7016:323;;;;:::o;7345:327::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:52;7647:7;7638:6;7627:9;7623:22;7603:52;:::i;:::-;7593:62;;7549:116;7345:327;;;;:::o;7678:349::-;7747:6;7796:2;7784:9;7775:7;7771:23;7767:32;7764:119;;;7802:79;;:::i;:::-;7764:119;7922:1;7947:63;8002:7;7993:6;7982:9;7978:22;7947:63;:::i;:::-;7937:73;;7893:127;7678:349;;;;:::o;8033:509::-;8102:6;8151:2;8139:9;8130:7;8126:23;8122:32;8119:119;;;8157:79;;:::i;:::-;8119:119;8305:1;8294:9;8290:17;8277:31;8335:18;8327:6;8324:30;8321:117;;;8357:79;;:::i;:::-;8321:117;8462:63;8517:7;8508:6;8497:9;8493:22;8462:63;:::i;:::-;8452:73;;8248:287;8033:509;;;;:::o;8548:329::-;8607:6;8656:2;8644:9;8635:7;8631:23;8627:32;8624:119;;;8662:79;;:::i;:::-;8624:119;8782:1;8807:53;8852:7;8843:6;8832:9;8828:22;8807:53;:::i;:::-;8797:63;;8753:117;8548:329;;;;:::o;8883:118::-;8970:24;8988:5;8970:24;:::i;:::-;8965:3;8958:37;8883:118;;:::o;9007:109::-;9088:21;9103:5;9088:21;:::i;:::-;9083:3;9076:34;9007:109;;:::o;9122:360::-;9208:3;9236:38;9268:5;9236:38;:::i;:::-;9290:70;9353:6;9348:3;9290:70;:::i;:::-;9283:77;;9369:52;9414:6;9409:3;9402:4;9395:5;9391:16;9369:52;:::i;:::-;9446:29;9468:6;9446:29;:::i;:::-;9441:3;9437:39;9430:46;;9212:270;9122:360;;;;:::o;9488:364::-;9576:3;9604:39;9637:5;9604:39;:::i;:::-;9659:71;9723:6;9718:3;9659:71;:::i;:::-;9652:78;;9739:52;9784:6;9779:3;9772:4;9765:5;9761:16;9739:52;:::i;:::-;9816:29;9838:6;9816:29;:::i;:::-;9811:3;9807:39;9800:46;;9580:272;9488:364;;;;:::o;9858:377::-;9964:3;9992:39;10025:5;9992:39;:::i;:::-;10047:89;10129:6;10124:3;10047:89;:::i;:::-;10040:96;;10145:52;10190:6;10185:3;10178:4;10171:5;10167:16;10145:52;:::i;:::-;10222:6;10217:3;10213:16;10206:23;;9968:267;9858:377;;;;:::o;10241:366::-;10383:3;10404:67;10468:2;10463:3;10404:67;:::i;:::-;10397:74;;10480:93;10569:3;10480:93;:::i;:::-;10598:2;10593:3;10589:12;10582:19;;10241:366;;;:::o;10613:::-;10755:3;10776:67;10840:2;10835:3;10776:67;:::i;:::-;10769:74;;10852:93;10941:3;10852:93;:::i;:::-;10970:2;10965:3;10961:12;10954:19;;10613:366;;;:::o;10985:::-;11127:3;11148:67;11212:2;11207:3;11148:67;:::i;:::-;11141:74;;11224:93;11313:3;11224:93;:::i;:::-;11342:2;11337:3;11333:12;11326:19;;10985:366;;;:::o;11357:::-;11499:3;11520:67;11584:2;11579:3;11520:67;:::i;:::-;11513:74;;11596:93;11685:3;11596:93;:::i;:::-;11714:2;11709:3;11705:12;11698:19;;11357:366;;;:::o;11729:::-;11871:3;11892:67;11956:2;11951:3;11892:67;:::i;:::-;11885:74;;11968:93;12057:3;11968:93;:::i;:::-;12086:2;12081:3;12077:12;12070:19;;11729:366;;;:::o;12101:::-;12243:3;12264:67;12328:2;12323:3;12264:67;:::i;:::-;12257:74;;12340:93;12429:3;12340:93;:::i;:::-;12458:2;12453:3;12449:12;12442:19;;12101:366;;;:::o;12473:::-;12615:3;12636:67;12700:2;12695:3;12636:67;:::i;:::-;12629:74;;12712:93;12801:3;12712:93;:::i;:::-;12830:2;12825:3;12821:12;12814:19;;12473:366;;;:::o;12845:::-;12987:3;13008:67;13072:2;13067:3;13008:67;:::i;:::-;13001:74;;13084:93;13173:3;13084:93;:::i;:::-;13202:2;13197:3;13193:12;13186:19;;12845:366;;;:::o;13217:::-;13359:3;13380:67;13444:2;13439:3;13380:67;:::i;:::-;13373:74;;13456:93;13545:3;13456:93;:::i;:::-;13574:2;13569:3;13565:12;13558:19;;13217:366;;;:::o;13589:::-;13731:3;13752:67;13816:2;13811:3;13752:67;:::i;:::-;13745:74;;13828:93;13917:3;13828:93;:::i;:::-;13946:2;13941:3;13937:12;13930:19;;13589:366;;;:::o;13961:::-;14103:3;14124:67;14188:2;14183:3;14124:67;:::i;:::-;14117:74;;14200:93;14289:3;14200:93;:::i;:::-;14318:2;14313:3;14309:12;14302:19;;13961:366;;;:::o;14333:::-;14475:3;14496:67;14560:2;14555:3;14496:67;:::i;:::-;14489:74;;14572:93;14661:3;14572:93;:::i;:::-;14690:2;14685:3;14681:12;14674:19;;14333:366;;;:::o;14705:::-;14847:3;14868:67;14932:2;14927:3;14868:67;:::i;:::-;14861:74;;14944:93;15033:3;14944:93;:::i;:::-;15062:2;15057:3;15053:12;15046:19;;14705:366;;;:::o;15077:398::-;15236:3;15257:83;15338:1;15333:3;15257:83;:::i;:::-;15250:90;;15349:93;15438:3;15349:93;:::i;:::-;15467:1;15462:3;15458:11;15451:18;;15077:398;;;:::o;15481:366::-;15623:3;15644:67;15708:2;15703:3;15644:67;:::i;:::-;15637:74;;15720:93;15809:3;15720:93;:::i;:::-;15838:2;15833:3;15829:12;15822:19;;15481:366;;;:::o;15853:::-;15995:3;16016:67;16080:2;16075:3;16016:67;:::i;:::-;16009:74;;16092:93;16181:3;16092:93;:::i;:::-;16210:2;16205:3;16201:12;16194:19;;15853:366;;;:::o;16225:::-;16367:3;16388:67;16452:2;16447:3;16388:67;:::i;:::-;16381:74;;16464:93;16553:3;16464:93;:::i;:::-;16582:2;16577:3;16573:12;16566:19;;16225:366;;;:::o;16597:::-;16739:3;16760:67;16824:2;16819:3;16760:67;:::i;:::-;16753:74;;16836:93;16925:3;16836:93;:::i;:::-;16954:2;16949:3;16945:12;16938:19;;16597:366;;;:::o;16969:::-;17111:3;17132:67;17196:2;17191:3;17132:67;:::i;:::-;17125:74;;17208:93;17297:3;17208:93;:::i;:::-;17326:2;17321:3;17317:12;17310:19;;16969:366;;;:::o;17341:::-;17483:3;17504:67;17568:2;17563:3;17504:67;:::i;:::-;17497:74;;17580:93;17669:3;17580:93;:::i;:::-;17698:2;17693:3;17689:12;17682:19;;17341:366;;;:::o;17713:::-;17855:3;17876:67;17940:2;17935:3;17876:67;:::i;:::-;17869:74;;17952:93;18041:3;17952:93;:::i;:::-;18070:2;18065:3;18061:12;18054:19;;17713:366;;;:::o;18085:118::-;18172:24;18190:5;18172:24;:::i;:::-;18167:3;18160:37;18085:118;;:::o;18209:435::-;18389:3;18411:95;18502:3;18493:6;18411:95;:::i;:::-;18404:102;;18523:95;18614:3;18605:6;18523:95;:::i;:::-;18516:102;;18635:3;18628:10;;18209:435;;;;;:::o;18650:379::-;18834:3;18856:147;18999:3;18856:147;:::i;:::-;18849:154;;19020:3;19013:10;;18650:379;;;:::o;19035:222::-;19128:4;19166:2;19155:9;19151:18;19143:26;;19179:71;19247:1;19236:9;19232:17;19223:6;19179:71;:::i;:::-;19035:222;;;;:::o;19263:640::-;19458:4;19496:3;19485:9;19481:19;19473:27;;19510:71;19578:1;19567:9;19563:17;19554:6;19510:71;:::i;:::-;19591:72;19659:2;19648:9;19644:18;19635:6;19591:72;:::i;:::-;19673;19741:2;19730:9;19726:18;19717:6;19673:72;:::i;:::-;19792:9;19786:4;19782:20;19777:2;19766:9;19762:18;19755:48;19820:76;19891:4;19882:6;19820:76;:::i;:::-;19812:84;;19263:640;;;;;;;:::o;19909:210::-;19996:4;20034:2;20023:9;20019:18;20011:26;;20047:65;20109:1;20098:9;20094:17;20085:6;20047:65;:::i;:::-;19909:210;;;;:::o;20125:313::-;20238:4;20276:2;20265:9;20261:18;20253:26;;20325:9;20319:4;20315:20;20311:1;20300:9;20296:17;20289:47;20353:78;20426:4;20417:6;20353:78;:::i;:::-;20345:86;;20125:313;;;;:::o;20444:419::-;20610:4;20648:2;20637:9;20633:18;20625:26;;20697:9;20691:4;20687:20;20683:1;20672:9;20668:17;20661:47;20725:131;20851:4;20725:131;:::i;:::-;20717:139;;20444:419;;;:::o;20869:::-;21035:4;21073:2;21062:9;21058:18;21050:26;;21122:9;21116:4;21112:20;21108:1;21097:9;21093:17;21086:47;21150:131;21276:4;21150:131;:::i;:::-;21142:139;;20869:419;;;:::o;21294:::-;21460:4;21498:2;21487:9;21483:18;21475:26;;21547:9;21541:4;21537:20;21533:1;21522:9;21518:17;21511:47;21575:131;21701:4;21575:131;:::i;:::-;21567:139;;21294:419;;;:::o;21719:::-;21885:4;21923:2;21912:9;21908:18;21900:26;;21972:9;21966:4;21962:20;21958:1;21947:9;21943:17;21936:47;22000:131;22126:4;22000:131;:::i;:::-;21992:139;;21719:419;;;:::o;22144:::-;22310:4;22348:2;22337:9;22333:18;22325:26;;22397:9;22391:4;22387:20;22383:1;22372:9;22368:17;22361:47;22425:131;22551:4;22425:131;:::i;:::-;22417:139;;22144:419;;;:::o;22569:::-;22735:4;22773:2;22762:9;22758:18;22750:26;;22822:9;22816:4;22812:20;22808:1;22797:9;22793:17;22786:47;22850:131;22976:4;22850:131;:::i;:::-;22842:139;;22569:419;;;:::o;22994:::-;23160:4;23198:2;23187:9;23183:18;23175:26;;23247:9;23241:4;23237:20;23233:1;23222:9;23218:17;23211:47;23275:131;23401:4;23275:131;:::i;:::-;23267:139;;22994:419;;;:::o;23419:::-;23585:4;23623:2;23612:9;23608:18;23600:26;;23672:9;23666:4;23662:20;23658:1;23647:9;23643:17;23636:47;23700:131;23826:4;23700:131;:::i;:::-;23692:139;;23419:419;;;:::o;23844:::-;24010:4;24048:2;24037:9;24033:18;24025:26;;24097:9;24091:4;24087:20;24083:1;24072:9;24068:17;24061:47;24125:131;24251:4;24125:131;:::i;:::-;24117:139;;23844:419;;;:::o;24269:::-;24435:4;24473:2;24462:9;24458:18;24450:26;;24522:9;24516:4;24512:20;24508:1;24497:9;24493:17;24486:47;24550:131;24676:4;24550:131;:::i;:::-;24542:139;;24269:419;;;:::o;24694:::-;24860:4;24898:2;24887:9;24883:18;24875:26;;24947:9;24941:4;24937:20;24933:1;24922:9;24918:17;24911:47;24975:131;25101:4;24975:131;:::i;:::-;24967:139;;24694:419;;;:::o;25119:::-;25285:4;25323:2;25312:9;25308:18;25300:26;;25372:9;25366:4;25362:20;25358:1;25347:9;25343:17;25336:47;25400:131;25526:4;25400:131;:::i;:::-;25392:139;;25119:419;;;:::o;25544:::-;25710:4;25748:2;25737:9;25733:18;25725:26;;25797:9;25791:4;25787:20;25783:1;25772:9;25768:17;25761:47;25825:131;25951:4;25825:131;:::i;:::-;25817:139;;25544:419;;;:::o;25969:::-;26135:4;26173:2;26162:9;26158:18;26150:26;;26222:9;26216:4;26212:20;26208:1;26197:9;26193:17;26186:47;26250:131;26376:4;26250:131;:::i;:::-;26242:139;;25969:419;;;:::o;26394:::-;26560:4;26598:2;26587:9;26583:18;26575:26;;26647:9;26641:4;26637:20;26633:1;26622:9;26618:17;26611:47;26675:131;26801:4;26675:131;:::i;:::-;26667:139;;26394:419;;;:::o;26819:::-;26985:4;27023:2;27012:9;27008:18;27000:26;;27072:9;27066:4;27062:20;27058:1;27047:9;27043:17;27036:47;27100:131;27226:4;27100:131;:::i;:::-;27092:139;;26819:419;;;:::o;27244:::-;27410:4;27448:2;27437:9;27433:18;27425:26;;27497:9;27491:4;27487:20;27483:1;27472:9;27468:17;27461:47;27525:131;27651:4;27525:131;:::i;:::-;27517:139;;27244:419;;;:::o;27669:::-;27835:4;27873:2;27862:9;27858:18;27850:26;;27922:9;27916:4;27912:20;27908:1;27897:9;27893:17;27886:47;27950:131;28076:4;27950:131;:::i;:::-;27942:139;;27669:419;;;:::o;28094:::-;28260:4;28298:2;28287:9;28283:18;28275:26;;28347:9;28341:4;28337:20;28333:1;28322:9;28318:17;28311:47;28375:131;28501:4;28375:131;:::i;:::-;28367:139;;28094:419;;;:::o;28519:::-;28685:4;28723:2;28712:9;28708:18;28700:26;;28772:9;28766:4;28762:20;28758:1;28747:9;28743:17;28736:47;28800:131;28926:4;28800:131;:::i;:::-;28792:139;;28519:419;;;:::o;28944:222::-;29037:4;29075:2;29064:9;29060:18;29052:26;;29088:71;29156:1;29145:9;29141:17;29132:6;29088:71;:::i;:::-;28944:222;;;;:::o;29172:332::-;29293:4;29331:2;29320:9;29316:18;29308:26;;29344:71;29412:1;29401:9;29397:17;29388:6;29344:71;:::i;:::-;29425:72;29493:2;29482:9;29478:18;29469:6;29425:72;:::i;:::-;29172:332;;;;;:::o;29510:129::-;29544:6;29571:20;;:::i;:::-;29561:30;;29600:33;29628:4;29620:6;29600:33;:::i;:::-;29510:129;;;:::o;29645:75::-;29678:6;29711:2;29705:9;29695:19;;29645:75;:::o;29726:307::-;29787:4;29877:18;29869:6;29866:30;29863:56;;;29899:18;;:::i;:::-;29863:56;29937:29;29959:6;29937:29;:::i;:::-;29929:37;;30021:4;30015;30011:15;30003:23;;29726:307;;;:::o;30039:308::-;30101:4;30191:18;30183:6;30180:30;30177:56;;;30213:18;;:::i;:::-;30177:56;30251:29;30273:6;30251:29;:::i;:::-;30243:37;;30335:4;30329;30325:15;30317:23;;30039:308;;;:::o;30353:98::-;30404:6;30438:5;30432:12;30422:22;;30353:98;;;:::o;30457:99::-;30509:6;30543:5;30537:12;30527:22;;30457:99;;;:::o;30562:168::-;30645:11;30679:6;30674:3;30667:19;30719:4;30714:3;30710:14;30695:29;;30562:168;;;;:::o;30736:147::-;30837:11;30874:3;30859:18;;30736:147;;;;:::o;30889:169::-;30973:11;31007:6;31002:3;30995:19;31047:4;31042:3;31038:14;31023:29;;30889:169;;;;:::o;31064:148::-;31166:11;31203:3;31188:18;;31064:148;;;;:::o;31218:305::-;31258:3;31277:20;31295:1;31277:20;:::i;:::-;31272:25;;31311:20;31329:1;31311:20;:::i;:::-;31306:25;;31465:1;31397:66;31393:74;31390:1;31387:81;31384:107;;;31471:18;;:::i;:::-;31384:107;31515:1;31512;31508:9;31501:16;;31218:305;;;;:::o;31529:185::-;31569:1;31586:20;31604:1;31586:20;:::i;:::-;31581:25;;31620:20;31638:1;31620:20;:::i;:::-;31615:25;;31659:1;31649:35;;31664:18;;:::i;:::-;31649:35;31706:1;31703;31699:9;31694:14;;31529:185;;;;:::o;31720:191::-;31760:4;31780:20;31798:1;31780:20;:::i;:::-;31775:25;;31814:20;31832:1;31814:20;:::i;:::-;31809:25;;31853:1;31850;31847:8;31844:34;;;31858:18;;:::i;:::-;31844:34;31903:1;31900;31896:9;31888:17;;31720:191;;;;:::o;31917:96::-;31954:7;31983:24;32001:5;31983:24;:::i;:::-;31972:35;;31917:96;;;:::o;32019:90::-;32053:7;32096:5;32089:13;32082:21;32071:32;;32019:90;;;:::o;32115:149::-;32151:7;32191:66;32184:5;32180:78;32169:89;;32115:149;;;:::o;32270:126::-;32307:7;32347:42;32340:5;32336:54;32325:65;;32270:126;;;:::o;32402:77::-;32439:7;32468:5;32457:16;;32402:77;;;:::o;32485:154::-;32569:6;32564:3;32559;32546:30;32631:1;32622:6;32617:3;32613:16;32606:27;32485:154;;;:::o;32645:307::-;32713:1;32723:113;32737:6;32734:1;32731:13;32723:113;;;32822:1;32817:3;32813:11;32807:18;32803:1;32798:3;32794:11;32787:39;32759:2;32756:1;32752:10;32747:15;;32723:113;;;32854:6;32851:1;32848:13;32845:101;;;32934:1;32925:6;32920:3;32916:16;32909:27;32845:101;32694:258;32645:307;;;:::o;32958:320::-;33002:6;33039:1;33033:4;33029:12;33019:22;;33086:1;33080:4;33076:12;33107:18;33097:81;;33163:4;33155:6;33151:17;33141:27;;33097:81;33225:2;33217:6;33214:14;33194:18;33191:38;33188:84;;;33244:18;;:::i;:::-;33188:84;33009:269;32958:320;;;:::o;33284:281::-;33367:27;33389:4;33367:27;:::i;:::-;33359:6;33355:40;33497:6;33485:10;33482:22;33461:18;33449:10;33446:34;33443:62;33440:88;;;33508:18;;:::i;:::-;33440:88;33548:10;33544:2;33537:22;33327:238;33284:281;;:::o;33571:233::-;33610:3;33633:24;33651:5;33633:24;:::i;:::-;33624:33;;33679:66;33672:5;33669:77;33666:103;;;33749:18;;:::i;:::-;33666:103;33796:1;33789:5;33785:13;33778:20;;33571:233;;;:::o;33810:176::-;33842:1;33859:20;33877:1;33859:20;:::i;:::-;33854:25;;33893:20;33911:1;33893:20;:::i;:::-;33888:25;;33932:1;33922:35;;33937:18;;:::i;:::-;33922:35;33978:1;33975;33971:9;33966:14;;33810:176;;;;:::o;33992:180::-;34040:77;34037:1;34030:88;34137:4;34134:1;34127:15;34161:4;34158:1;34151:15;34178:180;34226:77;34223:1;34216:88;34323:4;34320:1;34313:15;34347:4;34344:1;34337:15;34364:180;34412:77;34409:1;34402:88;34509:4;34506:1;34499:15;34533:4;34530:1;34523:15;34550:180;34598:77;34595:1;34588:88;34695:4;34692:1;34685:15;34719:4;34716:1;34709:15;34736:180;34784:77;34781:1;34774:88;34881:4;34878:1;34871:15;34905:4;34902:1;34895:15;34922:117;35031:1;35028;35021:12;35045:117;35154:1;35151;35144:12;35168:117;35277:1;35274;35267:12;35291:117;35400:1;35397;35390:12;35414:102;35455:6;35506:2;35502:7;35497:2;35490:5;35486:14;35482:28;35472:38;;35414:102;;;:::o;35522:221::-;35662:34;35658:1;35650:6;35646:14;35639:58;35731:4;35726:2;35718:6;35714:15;35707:29;35522:221;:::o;35749:225::-;35889:34;35885:1;35877:6;35873:14;35866:58;35958:8;35953:2;35945:6;35941:15;35934:33;35749:225;:::o;35980:229::-;36120:34;36116:1;36108:6;36104:14;36097:58;36189:12;36184:2;36176:6;36172:15;36165:37;35980:229;:::o;36215:222::-;36355:34;36351:1;36343:6;36339:14;36332:58;36424:5;36419:2;36411:6;36407:15;36400:30;36215:222;:::o;36443:224::-;36583:34;36579:1;36571:6;36567:14;36560:58;36652:7;36647:2;36639:6;36635:15;36628:32;36443:224;:::o;36673:244::-;36813:34;36809:1;36801:6;36797:14;36790:58;36882:27;36877:2;36869:6;36865:15;36858:52;36673:244;:::o;36923:230::-;37063:34;37059:1;37051:6;37047:14;37040:58;37132:13;37127:2;37119:6;37115:15;37108:38;36923:230;:::o;37159:225::-;37299:34;37295:1;37287:6;37283:14;37276:58;37368:8;37363:2;37355:6;37351:15;37344:33;37159:225;:::o;37390:182::-;37530:34;37526:1;37518:6;37514:14;37507:58;37390:182;:::o;37578:234::-;37718:34;37714:1;37706:6;37702:14;37695:58;37787:17;37782:2;37774:6;37770:15;37763:42;37578:234;:::o;37818:176::-;37958:28;37954:1;37946:6;37942:14;37935:52;37818:176;:::o;38000:237::-;38140:34;38136:1;38128:6;38124:14;38117:58;38209:20;38204:2;38196:6;38192:15;38185:45;38000:237;:::o;38243:221::-;38383:34;38379:1;38371:6;38367:14;38360:58;38452:4;38447:2;38439:6;38435:15;38428:29;38243:221;:::o;38470:114::-;;:::o;38590:238::-;38730:34;38726:1;38718:6;38714:14;38707:58;38799:21;38794:2;38786:6;38782:15;38775:46;38590:238;:::o;38834:220::-;38974:34;38970:1;38962:6;38958:14;38951:58;39043:3;39038:2;39030:6;39026:15;39019:28;38834:220;:::o;39060:227::-;39200:34;39196:1;39188:6;39184:14;39177:58;39269:10;39264:2;39256:6;39252:15;39245:35;39060:227;:::o;39293:233::-;39433:34;39429:1;39421:6;39417:14;39410:58;39502:16;39497:2;39489:6;39485:15;39478:41;39293:233;:::o;39532:181::-;39672:33;39668:1;39660:6;39656:14;39649:57;39532:181;:::o;39719:234::-;39859:34;39855:1;39847:6;39843:14;39836:58;39928:17;39923:2;39915:6;39911:15;39904:42;39719:234;:::o;39959:232::-;40099:34;40095:1;40087:6;40083:14;40076:58;40168:15;40163:2;40155:6;40151:15;40144:40;39959:232;:::o;40197:122::-;40270:24;40288:5;40270:24;:::i;:::-;40263:5;40260:35;40250:63;;40309:1;40306;40299:12;40250:63;40197:122;:::o;40325:116::-;40395:21;40410:5;40395:21;:::i;:::-;40388:5;40385:32;40375:60;;40431:1;40428;40421:12;40375:60;40325:116;:::o;40447:120::-;40519:23;40536:5;40519:23;:::i;:::-;40512:5;40509:34;40499:62;;40557:1;40554;40547:12;40499:62;40447:120;:::o;40573:122::-;40646:24;40664:5;40646:24;:::i;:::-;40639:5;40636:35;40626:63;;40685:1;40682;40675:12;40626:63;40573:122;:::o

Swarm Source

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