ETH Price: $2,900.63 (-9.97%)
Gas: 13 Gwei

Token

Diamond Dawgs (DAWGS)
 

Overview

Max Total Supply

2,950 DAWGS

Holders

1,121

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DAWGS
0x05a8aa0ed1e1bc598c23b415f67cd774b530546c
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The DiamondDawgs are a collection of 7,000 on-chain generative baseball characters, hand-drawn by pro athlete and artist Evan Mendoza of the St. Louis Cardinals. We are bringing together baseball fans and NFT collectors through the art of an actual player. This is your oppor...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DD

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 2021-12-08
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/utils/Address.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/token/ERC20/utils/SafeERC20.sol


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/finance/PaymentSplitter.sol


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

pragma solidity ^0.8.0;




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

    uint256 private _totalShares;
    uint256 private _totalReleased;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: DiamondDawgs/DiamondDawgs.sol



pragma solidity 0.8.7;




/// @title DIAMOND DAWGS
/// @author Matt 
contract DD is ERC721Enumerable {
    bool public swappingActive = false;
    uint256 public maxDawgsSupply = 6800;
    uint256 private tokenCount;
    uint256 public traitCount;
    uint256 private timeOutLength = 10;
    address public Owner;
    
    struct Token {
        uint256 baseAttributes;
        //Could be changed to a uint256 array for all traits for better gas
        mapping(uint256 => uint256) extraAttributes;
        string legacyURI;
        uint256 timeOut;
    }
    struct TraitType {
        string attributeName;
        string attributeURI;
        mapping(uint256 => string) breedOverride;
        string[] attributeValues;
        bool swappable;
        bool active;
    }
    mapping (uint256 => Token) public tokens;
    mapping (uint256 => TraitType) public traitTypes;
    
    address owner;
    TraitGeneration private traitGeneration;
    URIContract private uriContract;
    address contractOperator;
    
    modifier onlyOwner() {
        require(msg.sender == owner || msg.sender == contractOperator);
        _;
    }
    string[] private Signatures = ["None","Yes"];
    constructor(address _generationContract, address _uriContract, address _mintContract) ERC721("Diamond Dawgs", "DAWGS") {
        //SET MINT PRICE
        traitGeneration = TraitGeneration(_generationContract);
        uriContract = URIContract(_uriContract);
        contractOperator = _mintContract;
        owner = msg.sender;
        setAttribute(traitCount++, true, "Background", "", traitGeneration.getBackgrounds(),false);
        setAttribute(traitCount++, true, "Breed", "", traitGeneration.getBreeds(),false);
        setAttribute(traitCount++, true, "Eye", "", traitGeneration.getEyes(),false);
        setAttribute(traitCount++, true, "Mouth", "", traitGeneration.getMouths(),false);
        setAttribute(traitCount++, true, "Undershirt", "", traitGeneration.getUndershirts(),false);
        setAttribute(traitCount++, true, "Jersey", "", traitGeneration.getJerseys(),false);
        setAttribute(traitCount++, true, "Head", "", traitGeneration.getHeads(),false);
        setAttribute(traitCount++, true, "Accessory", "", traitGeneration.getAccessories(),false);
        setAttribute(traitCount++, true, "Signature", "", Signatures,false);
    }
    function getUriValues(uint256 attrI, uint256 valueI,uint256 breedI) public view returns (string memory, string memory, string memory, string memory, bool){
        string memory an = traitTypes[attrI].attributeName;
        string memory av = traitTypes[attrI].attributeValues[valueI];
        string memory au = traitTypes[attrI].attributeURI;
        string memory bo = traitTypes[attrI].breedOverride[breedI];
        bool ac = traitTypes[attrI].active;
        return (an, av, au, bo, ac);
    }
    function getExtraAttr(uint tokenId, uint256 attrI)public view returns(uint256){
        return tokens[tokenId].extraAttributes[attrI];
    }
    function getLegacyURI(uint tokenId) public view returns(string memory){
        return tokens[tokenId].legacyURI;
    }
    function setLegacyURI(uint tokenId, string memory legacyURI) public onlyOwner {
        tokens[tokenId].legacyURI = legacyURI;
    }
    function addAttValue(uint256 _attributeId, string[] memory _valueArray)public onlyOwner{
        traitTypes[_attributeId].attributeValues = _valueArray;
    }
    function addAttribute(bool active, string memory _traitName, string memory _traitURI, string[] memory _valueArray, bool _swappable) public onlyOwner{
        setAttribute(traitCount++, active, _traitName, _traitURI, _valueArray, _swappable);
    }
    function setAttribute(uint256 _traitId, bool active, string memory _traitName, string memory _traitURI, string[] memory _valueArray, bool _swappable) public onlyOwner {
        TraitType storage trait = traitTypes[_traitId];
        trait.active = active;
        trait.attributeName = _traitName;
        trait.attributeURI = _traitURI;
        if(_valueArray.length > 0){
            trait.attributeValues = _valueArray;
        }
        trait.swappable = _swappable;
    }
    function attrOverrideURI(uint _traitIndex, uint[] memory _indexArray, string[] memory _stringArray) public onlyOwner {
        for(uint i = 0; i < _indexArray.length; i++){
            traitTypes[_traitIndex].breedOverride[_indexArray[i]] = _stringArray[i];
        }
    }
    
    function generateToken(uint _tokenId) private {
        bytes32 pepper = bytes32(abi.encodePacked(Base64.uint2str(_tokenId),block.timestamp, block.difficulty));
        uint256[9] memory attributeIndexArray = traitGeneration.generateTraits(pepper);
        saveBaseAttributes(_tokenId, attributeIndexArray);
    }
    function saveBaseAttributes(uint256 _tokenId, uint256[9] memory attrArray) private {
        uint256 tokenBaseAtt = uint256(0x0);
        for(uint256 i = attrArray.length; i > 0; i--){
            uint256 ii = 256 - (i*8);
            tokenBaseAtt |= attrArray[i-1]<<ii;
        }
        tokens[_tokenId].baseAttributes = tokenBaseAtt;
    }
    function getBaseAttributues(uint256 _tokenId) public view returns(uint256[9] memory){
        uint256[9] memory baseAtt;
        uint256 baseAttr = tokens[_tokenId].baseAttributes;
        for(uint256 i = baseAtt.length; i > 0; i--){
            uint256 ii = 256 - (i*8);
            baseAtt[i-1] = uint256(uint8(baseAttr>>ii));
        }
        return baseAtt;
    }
    function editAttributeToToken(uint256 _tokenId, uint256 _attributeId, uint256 attributeValueId) public onlyOwner {
        if(_attributeId < 9){
            uint256[9] memory base = getBaseAttributues(_tokenId);
            base[_attributeId] = attributeValueId;
            saveBaseAttributes(_tokenId, base);
        } else {
            tokens[_tokenId].extraAttributes[_attributeId] = attributeValueId;
        }
    }
    function swapAttributes(uint256 _token1, uint256 _token2, uint256 attributeId) public {
        require(ownerOf(_token1) == msg.sender && ownerOf(_token2) == msg.sender, "Not owner of tokens");
        require(swappingActive == true && traitTypes[attributeId].swappable == true, "Swapping not active or unswappable attribute");
        require(traitTypes[attributeId].active == true, "Not a valid attribute");
        if(attributeId < 9){
            //BASE TRAIT SWAPPING
            uint256[9] memory base1 = getBaseAttributues(_token1);
            uint256[9] memory base2 = getBaseAttributues(_token2);
            uint256 tmp = base1[attributeId];
            base1[attributeId] = base2[attributeId];
            base2[attributeId] = tmp;
            saveBaseAttributes(_token1, base1);
            saveBaseAttributes(_token2, base2);
            
        } else {
            uint256 tmp = tokens[_token1].extraAttributes[attributeId];
            tokens[_token1].extraAttributes[attributeId] = tokens[_token2].extraAttributes[attributeId];
            tokens[_token2].extraAttributes[attributeId] = tmp;
        }
        uint256 tO = timeOutLength + block.number;
        tokens[_token1].timeOut = tO;
        tokens[_token2].timeOut = tO;
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        require(tokens[tokenId].timeOut < block.number);
        safeTransferFrom(from, to, tokenId, "");
    }
    
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory rtn = uriContract.formTokenURI(tokenId);
        return rtn;
    }
    function mint(uint _count, address _to) onlyOwner public {
        
        uint256 _tokenId = tokenCount;
        require(_tokenId + _count < maxDawgsSupply, "Max Dawgz Reached");
        for(uint i = 0; i < _count; i++){
            
            generateToken(_tokenId);
            _safeMint(_to, _tokenId);
            _tokenId++;
        }
        tokenCount = _tokenId;
    }
    function flipSwapping() public onlyOwner {
        swappingActive = !swappingActive;
    }
    function changeParams(uint256 _totalSupply, address _generationContract, address _uriContract, uint256 _timeOut, address _contractOperator) public onlyOwner {
        maxDawgsSupply = _totalSupply;
        traitGeneration = TraitGeneration(_generationContract);
        uriContract = URIContract(_uriContract);
        timeOutLength = _timeOut;
        contractOperator = _contractOperator;
    }
    
    function transferOwnership(address _newOwner) public onlyOwner {
        require(msg.sender == owner, "Not owner");
        owner = _newOwner;
    }
    function setTimeOut(uint256 _tokenId, uint256 _timeOut) public onlyOwner {
        tokens[_tokenId].timeOut = _timeOut;
    }
}

contract MintContract is Ownable, PaymentSplitter {
    bool public sale = false;
    bool public saleWhitelist = false;
    mapping(address => uint256) public whitelist;
    uint256 mintPrice;
    uint256 public maxPerTransaction = 7;
    address[] private _team = [
        0xdE221Ab3868fd89d46835b1bA896aF288ec8705b,
        0x12a49C53DEE28E10C392E57394FCACec4e3a3816,
        0x3765240be64aF984bC5bB3B6A2988e431d668f6B
    ];
    
    uint256[] private _teamShares = [
        93,
        6,
        1
    ];
    
    DD private dd;
    constructor(uint256 _mintPrice) PaymentSplitter(_team, _teamShares) {
        mintPrice = _mintPrice;
        //70000000000000000
    }
    function setDD(address _dd) public onlyOwner{
        dd = DD(_dd);
    }
    function flipWhitelistSale() public onlyOwner {
        saleWhitelist = !saleWhitelist;
    }
    function flipSale() public onlyOwner {
        sale = !sale;
    }
    
    function mint(uint256 _count) public payable {
        require(sale == true, "Normal Sale Not Active");
        require(_count <= maxPerTransaction, "Over maxPerTransaction");
        require(msg.value == mintPrice * _count, "Insuffcient Amount Sent");
        dd.mint(_count, msg.sender);
    }
    function mintWhitelist(uint256 _count) public payable{
        require(saleWhitelist == true, "Whitelist Sale Not Active");
        require(_count <= whitelist[msg.sender], "Over Whitelist Allowance");
        require(msg.value == mintPrice * _count, "Wrong Amount Sent");
        dd.mint(_count, msg.sender);
        whitelist[msg.sender] -= _count;
    }
    function mintAirdrop(address[] memory _to) public onlyOwner{
        for(uint i = 0; i < _to.length; i++){
            dd.mint(1, _to[i]);
        }
    }
    function changeParams(uint256 _mintPrice, uint256 _maxPerTransaction) public onlyOwner{
        mintPrice = _mintPrice;
        maxPerTransaction = _maxPerTransaction;
    }
    
    function addWhitelist(address[] memory _addressArray) public onlyOwner{
        for(uint256 i = 0; i < _addressArray.length; i++){
            whitelist[_addressArray[i]] = 3;
        }
    }
    
    function withdrawAll() external onlyOwner {
        for (uint256 i = 0; i < _team.length; i++) {
            address payable wallet = payable(_team[i]);
            release(wallet);
        }
    }
}

contract URIContract is Ownable {
    uint256 size = 800;
    
    
    string public description = "";
    string public earURI = "";
    string public placeholder = "https://diamonddawgs.s3.us-east-2.amazonaws.com/placeholder/placeholder.gif";
    DD private dd;
    
    function returnAttributeSVG(string memory _addTo, string memory _traitBaseURI, uint256 _valueIndex) public pure returns (string memory){
        return string(abi.encodePacked(_addTo, '<image href="' , _traitBaseURI , Base64.uint2str(_valueIndex), '.png" x="0" y="0" width="100%" height="100%"/>'));
    }
    function returnAttributeValue(string memory _addTo, string memory _attributeName, string memory _attributeValue) public pure returns (string memory){
        return string(abi.encodePacked(_addTo, '{"trait_type":"' , _attributeName ,'","value":"', _attributeValue ,'"}'));
    }
    struct TraitType {
        string attributeName;
        string attributeURI;
        mapping(uint256 => string) breedOverride;
        string[] attributeValues;
        bool swappable;
        bool active;
    }
    
    function contractParams(address _dd, string memory _description, uint _size, string memory _placeholder)public onlyOwner{
        dd = DD(_dd);
        description = _description;
        size = _size;
        placeholder = _placeholder;
    }
    function changeEarURI(string memory _earUri) public onlyOwner {
        earURI = _earUri;
    }
    
    function formTokenURI(uint256 tokenId) public view returns (string memory) {
        if(bytes(dd.getLegacyURI(tokenId)).length > 0){
            return(dd.getLegacyURI(tokenId));
        }
        string memory strAttributes = '"attributes":[';
        //string memory strImages = string(abi.encodePacked('<svg xmlns="http://www.w3.org/2000/svg" width="', Base64.uint2str(size) ,'" height="', Base64.uint2str(size) ,'">'));
        uint256[9] memory baseAtt = dd.getBaseAttributues(tokenId);
        for(uint256 i = 0; i < dd.traitCount(); i++){

            if(i < 9){
                (string memory attributeName, string memory attributeValue, string memory attributeURI, string memory breedOverride, bool active) = dd.getUriValues(i, baseAtt[i], baseAtt[2]);
                if(bytes(attributeValue).length > 0 && active == true){
                    //string memory uri = bytes(breedOverride).length > 0 ? breedOverride : attributeURI ;
                    //strImages = returnAttributeSVG(strImages, uri, baseAtt[i]);
                    strAttributes = returnAttributeValue(strAttributes, attributeName, attributeValue);
                    if(i!=8){
                        strAttributes = string(abi.encodePacked(strAttributes,','));
                    }
                }
            } //else {
                /*
                uint256 extraAttribute = dd.getExtraAttr(tokenId, i);
                //if(extraAttribute > 0){
                    (string memory attributeName, string memory attributeValue, string memory attributeURI, string memory breedOverride) = dd.getUriValues(i, extraAttribute, baseAtt[2]);
                    //string memory uri = bytes(breedOverride).length > 0 ? breedOverride : attributeURI ;
                    strImages = returnAttributeSVG(strImages, attributeURI, extraAttribute);
                    strAttributes = returnAttributeValue(strAttributes, attributeName, attributeValue);
                //} 
                */
            //}
        }
        
        //ADD EAR
        //strImages = returnAttributeSVG(strImages, earURI, baseAtt[2]);
        //
        //strImages = string(abi.encodePacked(strImages,'</svg>'));
        //string memory strImages = "";
        strAttributes = string(abi.encodePacked(strAttributes,']'));
       
        //string memory imageBase64 = string(abi.encodePacked('"data:image/svg+xml;base64,',Base64.encode(bytes(strImages)),'"'));
        string memory imageBase64 = string(abi.encodePacked('"',placeholder,'"'));
        string memory rtn = string(abi.encodePacked('{"name":"DAWG #',Base64.uint2str(tokenId),'","description":"',description,'","image":',imageBase64,',',strAttributes,'}'));
        return string(abi.encodePacked('data:application/json;base64,',Base64.encode(bytes(rtn))));
    }
    
}

contract TraitGeneration {
    //BACKGROUND    
    string[] private backgrounds =  ["Light Blue","Orange","Grey","Purple",
                                    "Army","Teal","Mint",
                                    "Stadium","LSD"];

    //BREEDS        
    string[] private breeds =   ["Light","Medium","Dark","Light Husky","Medium Husky",
                                "Dark Husky","Blond Retriever","LSD Retriever","Gold",
                                "Gold Husky","LSD"];
    
    //EYES
    string[] private eyes =  ["Normal","Red","Blue","Puppy Cry","Grey Sunglasses","Grey Shine Glasses","Yellow Glasses","Eyes Open","Big Blue eyes",
                            "Yellow Shine Glasses","Black Heart Glasses","Red Heart Glasses","Colorful Glasses","Stoned Eyes",
                            "LSD Glasses","Gold Heart Glasses"];
    //NEED TO CHANGE THESE
    string[] private mouths =  ["Frown","Smile","Spitting","Smile + Tounge","Bored","Bored + Tounge",
                                "Gold Grills","Gold Grill + Bubble","Frown + Cigar","Frown + Tounge","Gold Grill + Tounge","Dip Smile","Cigar",
                                "Spitting Seeds","Gold Dip Smile","Bubble"];
    
    //UNDERSHIRTS
    string[] internal undershirts =  ["None",
                                     "White","Red","Blue","Black","Navy","Brown","Green","Baby Blue","Orange","Purple"];
                            
    //BREEDS        
    string[] private jerseys =   ["Red and Navy Blue","White with Red Pinstripe","White and Black","Black and Baby Blue","Black and White","White and Navy Blue","White and Red","Black and Purple","Navy Blue and Baby Blue","Blue and White","Cream and Orange","White and Blue","Black and Yellow","White with Blue Pinstripes","Cream and Blue","Navy Blue and Red","Blue and Red","Brown with Yellow","Navy Blue with Yellow","Green and Yellow",
                                "White with Navy Blue and Red Lining","White with Navy Blue pinstripes","Gold","Grey with Brown Pinstripes","Baby Blue and Red","LSD","Army","Floral",
                                "Baby Blue with USA Neck","Baby Blue with Maroon Shoulders","White with Blue Pinstripes and Blue and Orange Shoulders","All Star","Tatoos"];
    
    string[] internal heads =  ["Grey Catcher Mask","Blue Catcher Mask","Red Catcher Mask","Hair-Fade","Hair-Afro","blue/blue/white flat bill","navy/navy/white flat bill","red/red/white flat bill","Backwards Red","Backwards Blue","Backwards Navy","Rally Cap Red","Rally Cap Blue","Rally Cap Navy","Red Helmet","Blue Helmet","Red Curved","Blue Curved","Black Curved","Orange Curved",
                            "Navy Catcher Mask","Hair-Dreads","black/black/white flat bill","brown/brow/yellow flat bill","green/yellow/white flat bill","navy/red/white flat bill","white/orange/black flat bill","Backwards Black","Rally Cap Black","Rally Cap Pastel","Black Helmet","Navy Helmet","Navy Blue Curved","Army Curved","LSD Curved",
                            "Gold Catcher Mask","Army Flat Bill","Gold Flat Bill","LSD Flat Bill","Gold Helmet","Gold Curved","Black Flat Bill with Glove","Black Flat Bill with Upside Down Glasses"];
    
    string[] internal accessories = ["None","Gold Chain","Black Chest Protector","Navy ChestProtector","Red Chest Protector","Freckles","Wood Baseball Bat",
                                    "Black Diamond Necklace","Eyeblack","Silver Diamond Necklace","Silver Slugger Baseball Bat","Gold Baseball Bat","Blue Chest Protector","Dog Tag Necklace","Little League Pins", 
                                    "Flip Glasses","Lazer Eyes","Diamond Pennant Necklace"];//ADD NONE TO IMAGES
    function random(bytes32 t, bytes32 _input, uint8 _mod) private pure returns (uint256) {
        return uint256(keccak256(abi.encodePacked(t, _input)))%_mod;
    }
    
    function useWeight(uint8[3] memory _split, uint8 _saltI,  bytes32 _pepper) private pure returns(uint8){
        uint8[3] memory _weights = [75,95,100];
        bytes32 salt = "308fd119edae5f1309aafade64147";
        uint256 ran1 = random(salt[_saltI], _pepper, 100);
        uint8 traitIndex;
        uint8 i;
        while (_weights[i] < ran1) {
            traitIndex += _split[i];
            i++;
        }
        uint256 ran2 = random(salt[_saltI + 2], _pepper, _split[i]);
        return uint8(traitIndex + ran2);
    }
    function useWeightTwo(uint8[2] memory _split, uint8 _saltI,  bytes32 _pepper) private pure returns(uint8){
        uint8[2] memory _weights = [50,100];
        bytes32 salt = "308fd119edae5f1309aafade64147";
        uint256 ran1 = random(salt[_saltI], _pepper, 100);
        uint8 traitIndex;
        uint8 i;
        while (_weights[i] < ran1) {
            traitIndex += _split[i];
            i++;
        }
        uint256 ran2 = random(salt[_saltI + 2], _pepper, _split[i]);
        return uint8(traitIndex + ran2);
    }
    function useWeightFour(uint8[4] memory _split, uint8 _saltI,  bytes32 _pepper) private pure returns(uint8){
        uint8[4] memory _weights = [30,70,95,101];
        bytes32 salt = "308fd119edae5f1309aafade64147bhs";
        uint256 ran1 = random(salt[_saltI], _pepper, 100);
        uint8 traitIndex;
        uint8 i;
        while (_weights[i] < ran1) {
            traitIndex += _split[i];
            i++;
        }
        uint256 ran2 = random(salt[_saltI + 1], _pepper, _split[i]);
        return uint8(traitIndex + ran2);
    }
    function generateTraits(bytes32 _pepper) public pure returns (uint256[9] memory) {
        
        
        uint8[3] memory bgSplit = [4,3,2];
        uint8[3] memory brSplit = [5,4,2];  
        uint8[3] memory eySplit = [9,5,2];  
        
        uint8[3] memory moSplit = [6,5,3];  
        uint8[2] memory unSplit = [1,10];  
        uint8[3] memory jeSplit = [20,8,5];  
        
        uint8[3] memory heSplit = [20,15,8]; 
        uint8[4] memory acSplit = [1,6,8,3]; 
        
        uint256[9] memory attributeIndexArray;
        attributeIndexArray[0] = useWeight(bgSplit, 0, _pepper);
        attributeIndexArray[1] = useWeight(brSplit, 2, _pepper);
        attributeIndexArray[2] = useWeight(eySplit, 4, _pepper);
        
        attributeIndexArray[3] = useWeight(moSplit, 6, _pepper);
        attributeIndexArray[4] = useWeightTwo(unSplit, 7, _pepper);
        attributeIndexArray[5] = useWeight(jeSplit, 8, _pepper);
        
        attributeIndexArray[6] = useWeight(heSplit, 12, _pepper);
        attributeIndexArray[7] = useWeightFour(acSplit, 3, _pepper);
        attributeIndexArray[8] = uint256(uint256(keccak256(abi.encodePacked(_pepper)))%2);
        
        return attributeIndexArray;
    }
    function getBackgrounds() public view returns (string[] memory){
        return backgrounds;
    }
    function getBreeds() public view returns (string[] memory){
        return breeds;
    }
    function getEyes() public view returns (string[] memory){
        return eyes;
    }
    function getMouths() public view returns (string[] memory){
        return mouths;
    }
    function getJerseys() public view returns (string[] memory){
        return jerseys;
    }
    function getUndershirts() public view returns (string[] memory){
        return undershirts;
    }
    function getHeads() public view returns (string[] memory){
        return heads;
    }
    function getAccessories() public view returns (string[] memory){
        return accessories;
    }
}
/// @title Base64
/// @author Brecht Devos - <[email protected]>
library Base64 {
    string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE_ENCODE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
                // read 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // write 4 characters
                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(        input,  0x3F))))
                resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }

        return result;
    }
    function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }
  
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_generationContract","type":"address"},{"internalType":"address","name":"_uriContract","type":"address"},{"internalType":"address","name":"_mintContract","type":"address"}],"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":"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":"Owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_attributeId","type":"uint256"},{"internalType":"string[]","name":"_valueArray","type":"string[]"}],"name":"addAttValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"},{"internalType":"string","name":"_traitName","type":"string"},{"internalType":"string","name":"_traitURI","type":"string"},{"internalType":"string[]","name":"_valueArray","type":"string[]"},{"internalType":"bool","name":"_swappable","type":"bool"}],"name":"addAttribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_traitIndex","type":"uint256"},{"internalType":"uint256[]","name":"_indexArray","type":"uint256[]"},{"internalType":"string[]","name":"_stringArray","type":"string[]"}],"name":"attrOverrideURI","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":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_generationContract","type":"address"},{"internalType":"address","name":"_uriContract","type":"address"},{"internalType":"uint256","name":"_timeOut","type":"uint256"},{"internalType":"address","name":"_contractOperator","type":"address"}],"name":"changeParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_attributeId","type":"uint256"},{"internalType":"uint256","name":"attributeValueId","type":"uint256"}],"name":"editAttributeToToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSwapping","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":"uint256","name":"_tokenId","type":"uint256"}],"name":"getBaseAttributues","outputs":[{"internalType":"uint256[9]","name":"","type":"uint256[9]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"attrI","type":"uint256"}],"name":"getExtraAttr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getLegacyURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"attrI","type":"uint256"},{"internalType":"uint256","name":"valueI","type":"uint256"},{"internalType":"uint256","name":"breedI","type":"uint256"}],"name":"getUriValues","outputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"string","name":"","type":"string"},{"internalType":"string","name":"","type":"string"},{"internalType":"string","name":"","type":"string"},{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDawgsSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_traitId","type":"uint256"},{"internalType":"bool","name":"active","type":"bool"},{"internalType":"string","name":"_traitName","type":"string"},{"internalType":"string","name":"_traitURI","type":"string"},{"internalType":"string[]","name":"_valueArray","type":"string[]"},{"internalType":"bool","name":"_swappable","type":"bool"}],"name":"setAttribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"legacyURI","type":"string"}],"name":"setLegacyURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_timeOut","type":"uint256"}],"name":"setTimeOut","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":[{"internalType":"uint256","name":"_token1","type":"uint256"},{"internalType":"uint256","name":"_token2","type":"uint256"},{"internalType":"uint256","name":"attributeId","type":"uint256"}],"name":"swapAttributes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swappingActive","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokens","outputs":[{"internalType":"uint256","name":"baseAttributes","type":"uint256"},{"internalType":"string","name":"legacyURI","type":"string"},{"internalType":"uint256","name":"timeOut","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"traitCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"traitTypes","outputs":[{"internalType":"string","name":"attributeName","type":"string"},{"internalType":"string","name":"attributeURI","type":"string"},{"internalType":"bool","name":"swappable","type":"bool"},{"internalType":"bool","name":"active","type":"bool"}],"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"}]

60806040526000600a60006101000a81548160ff021916908315150217905550611a90600b55600a600e5560405180604001604052806040518060400160405280600481526020017f4e6f6e650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f59657300000000000000000000000000000000000000000000000000000000008152508152506016906002620000bb92919062000e34565b50348015620000c957600080fd5b5060405162006fc138038062006fc18339818101604052810190620000ef919062001184565b6040518060400160405280600d81526020017f4469616d6f6e64204461776773000000000000000000000000000000000000008152506040518060400160405280600581526020017f444157475300000000000000000000000000000000000000000000000000000081525081600090805190602001906200017392919062000e9b565b5080600190805190602001906200018c92919062000e9b565b50505082601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003af600d6000815480929190620002ac906200139f565b9190505560016040518060400160405280600a81526020017f4261636b67726f756e640000000000000000000000000000000000000000000081525060405180602001604052806000815250601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a46397116040518163ffffffff1660e01b815260040160006040518083038186803b1580156200036157600080fd5b505afa15801562000376573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190620003a19190620011e0565b600062000ccb60201b60201c565b620004cb600d6000815480929190620003c8906200139f565b9190505560016040518060400160405280600581526020017f427265656400000000000000000000000000000000000000000000000000000081525060405180602001604052806000815250601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638bfde4786040518163ffffffff1660e01b815260040160006040518083038186803b1580156200047d57600080fd5b505afa15801562000492573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190620004bd9190620011e0565b600062000ccb60201b60201c565b620005e7600d6000815480929190620004e4906200139f565b9190505560016040518060400160405280600381526020017f457965000000000000000000000000000000000000000000000000000000000081525060405180602001604052806000815250601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166308d80f696040518163ffffffff1660e01b815260040160006040518083038186803b1580156200059957600080fd5b505afa158015620005ae573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190620005d99190620011e0565b600062000ccb60201b60201c565b62000703600d600081548092919062000600906200139f565b9190505560016040518060400160405280600581526020017f4d6f75746800000000000000000000000000000000000000000000000000000081525060405180602001604052806000815250601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166371cc92e16040518163ffffffff1660e01b815260040160006040518083038186803b158015620006b557600080fd5b505afa158015620006ca573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190620006f59190620011e0565b600062000ccb60201b60201c565b6200081f600d60008154809291906200071c906200139f565b9190505560016040518060400160405280600a81526020017f556e64657273686972740000000000000000000000000000000000000000000081525060405180602001604052806000815250601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635fc27f0c6040518163ffffffff1660e01b815260040160006040518083038186803b158015620007d157600080fd5b505afa158015620007e6573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190620008119190620011e0565b600062000ccb60201b60201c565b6200093b600d600081548092919062000838906200139f565b9190505560016040518060400160405280600681526020017f4a6572736579000000000000000000000000000000000000000000000000000081525060405180602001604052806000815250601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318b5d3316040518163ffffffff1660e01b815260040160006040518083038186803b158015620008ed57600080fd5b505afa15801562000902573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906200092d9190620011e0565b600062000ccb60201b60201c565b62000a57600d600081548092919062000954906200139f565b9190505560016040518060400160405280600481526020017f486561640000000000000000000000000000000000000000000000000000000081525060405180602001604052806000815250601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b0d571376040518163ffffffff1660e01b815260040160006040518083038186803b15801562000a0957600080fd5b505afa15801562000a1e573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019062000a499190620011e0565b600062000ccb60201b60201c565b62000b73600d600081548092919062000a70906200139f565b9190505560016040518060400160405280600981526020017f4163636573736f7279000000000000000000000000000000000000000000000081525060405180602001604052806000815250601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663528088cd6040518163ffffffff1660e01b815260040160006040518083038186803b15801562000b2557600080fd5b505afa15801562000b3a573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019062000b659190620011e0565b600062000ccb60201b60201c565b62000cc2600d600081548092919062000b8c906200139f565b9190505560016040518060400160405280600981526020017f5369676e61747572650000000000000000000000000000000000000000000000815250604051806020016040528060008152506016805480602002602001604051908101604052809291908181526020016000905b8282101562000cb057838290600052602060002001805462000c1c9062001333565b80601f016020809104026020016040519081016040528092919081815260200182805462000c4a9062001333565b801562000c9b5780601f1062000c6f5761010080835404028352916020019162000c9b565b820191906000526020600020905b81548152906001019060200180831162000c7d57829003601f168201915b50505050508152602001906001019062000bfa565b50505050600062000ccb60201b60201c565b505050620014be565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148062000d755750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b62000d7f57600080fd5b6000601160008881526020019081526020016000209050858160040160016101000a81548160ff0219169083151502179055508481600001908051906020019062000dcc92919062000e9b565b508381600101908051906020019062000de792919062000e9b565b5060008351111562000e0f578281600301908051906020019062000e0d92919062000f2c565b505b818160040160006101000a81548160ff02191690831515021790555050505050505050565b82805482825590600052602060002090810192821562000e88579160200282015b8281111562000e8757825182908051906020019062000e7692919062000e9b565b509160200191906001019062000e55565b5b50905062000e97919062000f93565b5090565b82805462000ea99062001333565b90600052602060002090601f01602090048101928262000ecd576000855562000f19565b82601f1062000ee857805160ff191683800117855562000f19565b8280016001018555821562000f19579182015b8281111562000f1857825182559160200191906001019062000efb565b5b50905062000f28919062000fbb565b5090565b82805482825590600052602060002090810192821562000f80579160200282015b8281111562000f7f57825182908051906020019062000f6e92919062000e9b565b509160200191906001019062000f4d565b5b50905062000f8f919062000f93565b5090565b5b8082111562000fb7576000818162000fad919062000fda565b5060010162000f94565b5090565b5b8082111562000fd657600081600090555060010162000fbc565b5090565b50805462000fe89062001333565b6000825580601f1062000ffc57506200101d565b601f0160209004906000526020600020908101906200101c919062000fbb565b5b50565b60006200103762001031846200125a565b62001231565b905080838252602082019050828560208602820111156200105d576200105c6200147f565b5b60005b85811015620010b257815167ffffffffffffffff8111156200108757620010866200147a565b5b80860162001096898262001151565b8552602085019450602084019350505060018101905062001060565b5050509392505050565b6000620010d3620010cd8462001289565b62001231565b905082815260208101848484011115620010f257620010f162001484565b5b620010ff848285620012fd565b509392505050565b6000815190506200111881620014a4565b92915050565b600082601f8301126200113657620011356200147a565b5b81516200114884826020860162001020565b91505092915050565b600082601f8301126200116957620011686200147a565b5b81516200117b848260208601620010bc565b91505092915050565b600080600060608486031215620011a0576200119f6200148e565b5b6000620011b08682870162001107565b9350506020620011c38682870162001107565b9250506040620011d68682870162001107565b9150509250925092565b600060208284031215620011f957620011f86200148e565b5b600082015167ffffffffffffffff8111156200121a576200121962001489565b5b62001228848285016200111e565b91505092915050565b60006200123d62001250565b90506200124b828262001369565b919050565b6000604051905090565b600067ffffffffffffffff8211156200127857620012776200144b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115620012a757620012a66200144b565b5b620012b28262001493565b9050602081019050919050565b6000620012cc82620012d3565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200131d57808201518184015260208101905062001300565b838111156200132d576000848401525b50505050565b600060028204905060018216806200134c57607f821691505b602082108114156200136357620013626200141c565b5b50919050565b620013748262001493565b810181811067ffffffffffffffff821117156200139657620013956200144b565b5b80604052505050565b6000620013ac82620012f3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620013e257620013e1620013ed565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620014af81620012bf565b8114620014bb57600080fd5b50565b615af380620014ce6000396000f3fe608060405234801561001057600080fd5b50600436106102325760003560e01c806370a0823111610130578063a22cb465116100b8578063d254a6391161007c578063d254a639146106da578063d926e2f71461070a578063e985e9c514610726578063f23ac23f14610756578063f2fde38b1461076057610232565b8063a22cb46514610636578063b4a99a4e14610652578063b88d4fde14610670578063c87b56dd1461068c578063d23b1e90146106bc57610232565b806389689501116100ff57806389689501146105a457806394bf804d146105c257806395d89b41146105de57806398855692146105fc5780639ff7ea571461061a57610232565b806370a082311461050857806371007ce314610538578063731635ca14610554578063839eb43a1461057057610232565b8063322d6947116101be5780635812ef5c116101825780635812ef5c146104295780636352211e1461045957806363d14df8146104895780636c3e51bd146104a55780636f32479e146104d857610232565b8063322d69471461037357806342842e0e1461038f5780634f64b2be146103ab5780634f6ccce7146103dd5780635700375c1461040d57610232565b806309dc1d7d1161020557806309dc1d7d146102d157806318160ddd146102ed57806323b872dd1461030b57806326897500146103275780632f745c591461034357610232565b806301ffc9a71461023757806306fdde0314610267578063081812fc14610285578063095ea7b3146102b5575b600080fd5b610251600480360381019061024c9190614141565b61077c565b60405161025e9190614a92565b60405180910390f35b61026f6107f6565b60405161027c9190614ac8565b60405180910390f35b61029f600480360381019061029a91906141e4565b610888565b6040516102ac9190614a0f565b60405180910390f35b6102cf60048036038101906102ca9190614004565b61090d565b005b6102eb60048036038101906102e69190614494565b610a25565b005b6102f5610b06565b6040516103029190614e4c565b60405180910390f35b61032560048036038101906103209190613eee565b610b13565b005b610341600480360381019061033c9190614530565b610b73565b005b61035d60048036038101906103589190614004565b610ec2565b60405161036a9190614e4c565b60405180910390f35b61038d600480360381019061038891906142cc565b610f67565b005b6103a960048036038101906103a49190613eee565b611048565b005b6103c560048036038101906103c091906141e4565b61108a565b6040516103d493929190614e67565b60405180910390f35b6103f760048036038101906103f291906141e4565b61113c565b6040516104049190614e4c565b60405180910390f35b61042760048036038101906104229190614328565b6111ad565b005b610443600480360381019061043e91906144f0565b6112f4565b6040516104509190614e4c565b60405180910390f35b610473600480360381019061046e91906141e4565b611326565b6040516104809190614a0f565b60405180910390f35b6104a3600480360381019061049e9190614530565b6113d8565b005b6104bf60048036038101906104ba91906141e4565b6114ff565b6040516104cf9493929190614aea565b60405180910390f35b6104f260048036038101906104ed91906141e4565b611659565b6040516104ff9190614a76565b60405180910390f35b610522600480360381019061051d9190613e81565b611700565b60405161052f9190614e4c565b60405180910390f35b610552600480360381019061054d91906143b3565b6117b8565b005b61056e60048036038101906105699190614251565b611918565b005b61058a60048036038101906105859190614530565b611aa2565b60405161059b959493929190614b3d565b60405180910390f35b6105ac611da9565b6040516105b99190614e4c565b60405180910390f35b6105dc60048036038101906105d79190614211565b611daf565b005b6105e6611f03565b6040516105f39190614ac8565b60405180910390f35b610604611f95565b6040516106119190614e4c565b60405180910390f35b610634600480360381019061062f9190614072565b611f9b565b005b610650600480360381019061064b9190613fc4565b612078565b005b61065a61208e565b6040516106679190614a0f565b60405180910390f35b61068a60048036038101906106859190613f41565b6120b4565b005b6106a660048036038101906106a191906141e4565b612116565b6040516106b39190614ac8565b60405180910390f35b6106c461221d565b6040516106d19190614a92565b60405180910390f35b6106f460048036038101906106ef91906141e4565b612230565b6040516107019190614ac8565b60405180910390f35b610724600480360381019061071f91906144f0565b6122d8565b005b610740600480360381019061073b9190613eae565b6123a9565b60405161074d9190614a92565b60405180910390f35b61075e61243d565b005b61077a60048036038101906107759190613e81565b61251b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ef57506107ee826126a1565b5b9050919050565b606060008054610805906152d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610831906152d4565b801561087e5780601f106108535761010080835404028352916020019161087e565b820191906000526020600020905b81548152906001019060200180831161086157829003601f168201915b5050505050905090565b600061089382612783565b6108d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c990614d2c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091882611326565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098090614d8c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a86127ef565b73ffffffffffffffffffffffffffffffffffffffff1614806109d757506109d6816109d16127ef565b6123a9565b5b610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d90614cac565b60405180910390fd5b610a2083836127f7565b505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ace5750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610ad757600080fd5b80601060008481526020019081526020016000206002019080519060200190610b0192919061393d565b505050565b6000600880549050905090565b610b24610b1e6127ef565b826128b0565b610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90614dcc565b60405180910390fd5b610b6e83838361298e565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610b9384611326565b73ffffffffffffffffffffffffffffffffffffffff16148015610be957503373ffffffffffffffffffffffffffffffffffffffff16610bd183611326565b73ffffffffffffffffffffffffffffffffffffffff16145b610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90614e0c565b60405180910390fd5b60011515600a60009054906101000a900460ff161515148015610c725750600115156011600083815260200190815260200160002060040160009054906101000a900460ff161515145b610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890614c8c565b60405180910390fd5b600115156011600083815260200190815260200160002060040160019054906101000a900460ff16151514610d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1290614e2c565b60405180910390fd5b6009811015610dc7576000610d2f84611659565b90506000610d3c84611659565b90506000828460098110610d5357610d52615446565b5b60200201519050818460098110610d6d57610d6c615446565b5b6020020151838560098110610d8557610d84615446565b5b60200201818152505080828560098110610da257610da1615446565b5b602002018181525050610db58684612bea565b610dbf8583612bea565b505050610e74565b600060106000858152602001908152602001600020600101600083815260200190815260200160002054905060106000848152602001908152602001600020600101600083815260200190815260200160002054601060008681526020019081526020016000206001016000848152602001908152602001600020819055508060106000858152602001908152602001600020600101600084815260200190815260200160002081905550505b600043600e54610e84919061502a565b905080601060008681526020019081526020016000206003018190555080601060008581526020019081526020016000206003018190555050505050565b6000610ecd83611700565b8210610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590614bac565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806110105750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61101957600080fd5b806011600084815260200190815260200160002060030190805190602001906110439291906139c3565b505050565b4360106000838152602001908152602001600020600301541061106a57600080fd5b611085838383604051806020016040528060008152506120b4565b505050565b60106020528060005260406000206000915090508060000154908060020180546110b3906152d4565b80601f01602080910402602001604051908101604052809291908181526020018280546110df906152d4565b801561112c5780601f106111015761010080835404028352916020019161112c565b820191906000526020600020905b81548152906001019060200180831161110f57829003601f168201915b5050505050908060030154905083565b6000611146610b06565b8210611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e90614dec565b60405180910390fd5b6008828154811061119b5761119a615446565b5b90600052602060002001549050919050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806112565750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61125f57600080fd5b60005b82518110156112ee5781818151811061127e5761127d615446565b5b60200260200101516011600086815260200190815260200160002060020160008584815181106112b1576112b0615446565b5b6020026020010151815260200190815260200160002090805190602001906112da92919061393d565b5080806112e690615337565b915050611262565b50505050565b600060106000848152602001908152602001600020600101600083815260200190815260200160002054905092915050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690614cec565b60405180910390fd5b80915050919050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806114815750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61148a57600080fd5b60098210156114cd57600061149e84611659565b9050818184600981106114b4576114b3615446565b5b6020020181815250506114c78482612bea565b506114fa565b80601060008581526020019081526020016000206001016000848152602001908152602001600020819055505b505050565b6011602052806000526040600020600091509050806000018054611522906152d4565b80601f016020809104026020016040519081016040528092919081815260200182805461154e906152d4565b801561159b5780601f106115705761010080835404028352916020019161159b565b820191906000526020600020905b81548152906001019060200180831161157e57829003601f168201915b5050505050908060010180546115b0906152d4565b80601f01602080910402602001604051908101604052809291908181526020018280546115dc906152d4565b80156116295780601f106115fe57610100808354040283529160200191611629565b820191906000526020600020905b81548152906001019060200180831161160c57829003601f168201915b5050505050908060040160009054906101000a900460ff16908060040160019054906101000a900460ff16905084565b611661613a23565b611669613a23565b6000601060008581526020019081526020016000206000015490506000600990505b60008111156116f55760006008826116a391906150e8565b6101006116b09190615142565b90508083901c60ff16846001846116c79190615142565b600981106116d8576116d7615446565b5b6020020181815250505080806116ed906152aa565b91505061168b565b508192505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890614ccc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806118615750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61186a57600080fd5b6000601160008881526020019081526020016000209050858160040160016101000a81548160ff021916908315150217905550848160000190805190602001906118b592919061393d565b50838160010190805190602001906118ce92919061393d565b506000835111156118f357828160030190805190602001906118f19291906139c3565b505b818160040160006101000a81548160ff02191690831515021790555050505050505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806119c15750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6119ca57600080fd5b84600b8190555083601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600e8190555080601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b606080606080600080601160008a81526020019081526020016000206000018054611acc906152d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611af8906152d4565b8015611b455780601f10611b1a57610100808354040283529160200191611b45565b820191906000526020600020905b815481529060010190602001808311611b2857829003601f168201915b505050505090506000601160008b81526020019081526020016000206003018981548110611b7657611b75615446565b5b906000526020600020018054611b8b906152d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611bb7906152d4565b8015611c045780601f10611bd957610100808354040283529160200191611c04565b820191906000526020600020905b815481529060010190602001808311611be757829003601f168201915b505050505090506000601160008c81526020019081526020016000206001018054611c2e906152d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5a906152d4565b8015611ca75780601f10611c7c57610100808354040283529160200191611ca7565b820191906000526020600020905b815481529060010190602001808311611c8a57829003601f168201915b505050505090506000601160008d815260200190815260200160002060020160008b81526020019081526020016000208054611ce2906152d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0e906152d4565b8015611d5b5780601f10611d3057610100808354040283529160200191611d5b565b820191906000526020600020905b815481529060010190602001808311611d3e57829003601f168201915b505050505090506000601160008e815260200190815260200160002060040160019054906101000a900460ff1690508484848484995099509950995099505050505050939792965093509350565b600b5481565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611e585750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611e6157600080fd5b6000600c549050600b548382611e77919061502a565b10611eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eae90614c4c565b60405180910390fd5b60005b83811015611ef657611ecb82612c79565b611ed58383612d71565b8180611ee090615337565b9250508080611eee90615337565b915050611eba565b5080600c81905550505050565b606060018054611f12906152d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3e906152d4565b8015611f8b5780601f10611f6057610100808354040283529160200191611f8b565b820191906000526020600020905b815481529060010190602001808311611f6e57829003601f168201915b5050505050905090565b600d5481565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806120445750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61204d57600080fd5b612071600d600081548092919061206390615337565b9190505586868686866117b8565b5050505050565b61208a6120836127ef565b8383612d8f565b5050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6120c56120bf6127ef565b836128b0565b612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb90614dcc565b60405180910390fd5b61211084848484612efc565b50505050565b606061212182612783565b612160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215790614d6c565b60405180910390fd5b6000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632b94a5ac846040518263ffffffff1660e01b81526004016121bd9190614e4c565b60006040518083038186803b1580156121d557600080fd5b505afa1580156121e9573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190612212919061419b565b905080915050919050565b600a60009054906101000a900460ff1681565b6060601060008381526020019081526020016000206002018054612253906152d4565b80601f016020809104026020016040519081016040528092919081815260200182805461227f906152d4565b80156122cc5780601f106122a1576101008083540402835291602001916122cc565b820191906000526020600020905b8154815290600101906020018083116122af57829003601f168201915b50505050509050919050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806123815750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61238a57600080fd5b8060106000848152602001908152602001600020600301819055505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806124e65750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6124ef57600080fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806125c45750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6125cd57600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461265d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265490614dac565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061276c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061277c575061277b82612f58565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661286a83611326565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006128bb82612783565b6128fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f190614c6c565b60405180910390fd5b600061290583611326565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061297457508373ffffffffffffffffffffffffffffffffffffffff1661295c84610888565b73ffffffffffffffffffffffffffffffffffffffff16145b80612985575061298481856123a9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166129ae82611326565b73ffffffffffffffffffffffffffffffffffffffff1614612a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fb90614d4c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6b90614c0c565b60405180910390fd5b612a7f838383612fc2565b612a8a6000826127f7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ada9190615142565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b31919061502a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600080600990505b6000811115612c58576000600882612c0a91906150e8565b610100612c179190615142565b90508084600184612c289190615142565b60098110612c3957612c38615446565b5b6020020151901b83179250508080612c50906152aa565b915050612bf2565b50806010600085815260200190815260200160002060000181905550505050565b6000612c84826130d6565b4244604051602001612c98939291906149d6565b604051602081830303815290604052612cb090615201565b90506000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166355d781fa836040518263ffffffff1660e01b8152600401612d0f9190614aad565b6101206040518083038186803b158015612d2857600080fd5b505afa158015612d3c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d609190614044565b9050612d6c8382612bea565b505050565b612d8b82826040518060200160405280600081525061325f565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df590614c2c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612eef9190614a92565b60405180910390a3505050565b612f0784848461298e565b612f13848484846132ba565b612f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4990614bcc565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612fcd838383613451565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130105761300b81613456565b61304f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461304e5761304d838261349f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130925761308d8161360c565b6130d1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130d0576130cf82826136dd565b5b5b505050565b6060600082141561311e576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061325a565b600082905060005b6000821461315057808061313990615337565b915050600a8261314991906150b7565b9150613126565b60008167ffffffffffffffff81111561316c5761316b615475565b5b6040519080825280601f01601f19166020018201604052801561319e5781602001600182028036833780820191505090505b50905060008290505b60008614613252576001816131bc9190615142565b90506000600a80886131ce91906150b7565b6131d891906150e8565b876131e39190615142565b60306131ef9190615080565b905060008160f81b90508084848151811061320d5761320c615446565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8861324991906150b7565b975050506131a7565b819450505050505b919050565b613269838361375c565b61327660008484846132ba565b6132b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ac90614bcc565b60405180910390fd5b505050565b60006132db8473ffffffffffffffffffffffffffffffffffffffff1661392a565b15613444578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133046127ef565b8786866040518563ffffffff1660e01b81526004016133269493929190614a2a565b602060405180830381600087803b15801561334057600080fd5b505af192505050801561337157506040513d601f19601f8201168201806040525081019061336e919061416e565b60015b6133f4573d80600081146133a1576040519150601f19603f3d011682016040523d82523d6000602084013e6133a6565b606091505b506000815114156133ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e390614bcc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613449565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016134ac84611700565b6134b69190615142565b905060006007600084815260200190815260200160002054905081811461359b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136209190615142565b90506000600960008481526020019081526020016000205490506000600883815481106136505761364f615446565b5b90600052602060002001549050806008838154811061367257613671615446565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806136c1576136c0615417565b5b6001900381819060005260206000200160009055905550505050565b60006136e883611700565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c390614d0c565b60405180910390fd5b6137d581612783565b15613815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380c90614bec565b60405180910390fd5b61382160008383612fc2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613871919061502a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613949906152d4565b90600052602060002090601f01602090048101928261396b57600085556139b2565b82601f1061398457805160ff19168380011785556139b2565b828001600101855582156139b2579182015b828111156139b1578251825591602001919060010190613996565b5b5090506139bf9190613a46565b5090565b828054828255906000526020600020908101928215613a12579160200282015b82811115613a11578251829080519060200190613a0192919061393d565b50916020019190600101906139e3565b5b509050613a1f9190613a63565b5090565b604051806101200160405280600990602082028036833780820191505090505090565b5b80821115613a5f576000816000905550600101613a47565b5090565b5b80821115613a835760008181613a7a9190613a87565b50600101613a64565b5090565b508054613a93906152d4565b6000825580601f10613aa55750613ac4565b601f016020900490600052602060002090810190613ac39190613a46565b5b50565b6000613ada613ad584614eca565b614ea5565b90508083825260208201905082856020860282011115613afd57613afc6154be565b5b60005b85811015613b4b57813567ffffffffffffffff811115613b2357613b226154b9565b5b808601613b308982613dfb565b85526020850194506020840193505050600181019050613b00565b5050509392505050565b6000613b68613b6384614ef6565b614ea5565b90508082856020860282011115613b8257613b816154be565b5b60005b85811015613bb25781613b988882613e6c565b845260208401935060208301925050600181019050613b85565b5050509392505050565b6000613bcf613bca84614f1c565b614ea5565b90508083825260208201905082856020860282011115613bf257613bf16154be565b5b60005b85811015613c225781613c088882613e57565b845260208401935060208301925050600181019050613bf5565b5050509392505050565b6000613c3f613c3a84614f48565b614ea5565b905082815260208101848484011115613c5b57613c5a6154c3565b5b613c66848285615268565b509392505050565b6000613c81613c7c84614f79565b614ea5565b905082815260208101848484011115613c9d57613c9c6154c3565b5b613ca8848285615268565b509392505050565b6000613cc3613cbe84614f79565b614ea5565b905082815260208101848484011115613cdf57613cde6154c3565b5b613cea848285615277565b509392505050565b600081359050613d0181615a61565b92915050565b600082601f830112613d1c57613d1b6154b9565b5b8135613d2c848260208601613ac7565b91505092915050565b600082601f830112613d4a57613d496154b9565b5b6009613d57848285613b55565b91505092915050565b600082601f830112613d7557613d746154b9565b5b8135613d85848260208601613bbc565b91505092915050565b600081359050613d9d81615a78565b92915050565b600081359050613db281615a8f565b92915050565b600081519050613dc781615a8f565b92915050565b600082601f830112613de257613de16154b9565b5b8135613df2848260208601613c2c565b91505092915050565b600082601f830112613e1057613e0f6154b9565b5b8135613e20848260208601613c6e565b91505092915050565b600082601f830112613e3e57613e3d6154b9565b5b8151613e4e848260208601613cb0565b91505092915050565b600081359050613e6681615aa6565b92915050565b600081519050613e7b81615aa6565b92915050565b600060208284031215613e9757613e966154cd565b5b6000613ea584828501613cf2565b91505092915050565b60008060408385031215613ec557613ec46154cd565b5b6000613ed385828601613cf2565b9250506020613ee485828601613cf2565b9150509250929050565b600080600060608486031215613f0757613f066154cd565b5b6000613f1586828701613cf2565b9350506020613f2686828701613cf2565b9250506040613f3786828701613e57565b9150509250925092565b60008060008060808587031215613f5b57613f5a6154cd565b5b6000613f6987828801613cf2565b9450506020613f7a87828801613cf2565b9350506040613f8b87828801613e57565b925050606085013567ffffffffffffffff811115613fac57613fab6154c8565b5b613fb887828801613dcd565b91505092959194509250565b60008060408385031215613fdb57613fda6154cd565b5b6000613fe985828601613cf2565b9250506020613ffa85828601613d8e565b9150509250929050565b6000806040838503121561401b5761401a6154cd565b5b600061402985828601613cf2565b925050602061403a85828601613e57565b9150509250929050565b6000610120828403121561405b5761405a6154cd565b5b600061406984828501613d35565b91505092915050565b600080600080600060a0868803121561408e5761408d6154cd565b5b600061409c88828901613d8e565b955050602086013567ffffffffffffffff8111156140bd576140bc6154c8565b5b6140c988828901613dfb565b945050604086013567ffffffffffffffff8111156140ea576140e96154c8565b5b6140f688828901613dfb565b935050606086013567ffffffffffffffff811115614117576141166154c8565b5b61412388828901613d07565b925050608061413488828901613d8e565b9150509295509295909350565b600060208284031215614157576141566154cd565b5b600061416584828501613da3565b91505092915050565b600060208284031215614184576141836154cd565b5b600061419284828501613db8565b91505092915050565b6000602082840312156141b1576141b06154cd565b5b600082015167ffffffffffffffff8111156141cf576141ce6154c8565b5b6141db84828501613e29565b91505092915050565b6000602082840312156141fa576141f96154cd565b5b600061420884828501613e57565b91505092915050565b60008060408385031215614228576142276154cd565b5b600061423685828601613e57565b925050602061424785828601613cf2565b9150509250929050565b600080600080600060a0868803121561426d5761426c6154cd565b5b600061427b88828901613e57565b955050602061428c88828901613cf2565b945050604061429d88828901613cf2565b93505060606142ae88828901613e57565b92505060806142bf88828901613cf2565b9150509295509295909350565b600080604083850312156142e3576142e26154cd565b5b60006142f185828601613e57565b925050602083013567ffffffffffffffff811115614312576143116154c8565b5b61431e85828601613d07565b9150509250929050565b600080600060608486031215614341576143406154cd565b5b600061434f86828701613e57565b935050602084013567ffffffffffffffff8111156143705761436f6154c8565b5b61437c86828701613d60565b925050604084013567ffffffffffffffff81111561439d5761439c6154c8565b5b6143a986828701613d07565b9150509250925092565b60008060008060008060c087890312156143d0576143cf6154cd565b5b60006143de89828a01613e57565b96505060206143ef89828a01613d8e565b955050604087013567ffffffffffffffff8111156144105761440f6154c8565b5b61441c89828a01613dfb565b945050606087013567ffffffffffffffff81111561443d5761443c6154c8565b5b61444989828a01613dfb565b935050608087013567ffffffffffffffff81111561446a576144696154c8565b5b61447689828a01613d07565b92505060a061448789828a01613d8e565b9150509295509295509295565b600080604083850312156144ab576144aa6154cd565b5b60006144b985828601613e57565b925050602083013567ffffffffffffffff8111156144da576144d96154c8565b5b6144e685828601613dfb565b9150509250929050565b60008060408385031215614507576145066154cd565b5b600061451585828601613e57565b925050602061452685828601613e57565b9150509250929050565b600080600060608486031215614549576145486154cd565b5b600061455786828701613e57565b935050602061456886828701613e57565b925050604061457986828701613e57565b9150509250925092565b600061458f83836149a1565b60208301905092915050565b6145a481615176565b82525050565b6145b381614fc4565b6145bd8184614ff2565b92506145c882614faa565b8060005b838110156145f95781516145e08782614583565b96506145eb83614fe5565b9250506001810190506145cc565b505050505050565b61460a81615188565b82525050565b61461981615194565b82525050565b600061462a82614fcf565b6146348185614ffd565b9350614644818560208601615277565b61464d816154d2565b840191505092915050565b600061466382614fda565b61466d818561500e565b935061467d818560208601615277565b614686816154d2565b840191505092915050565b600061469c82614fda565b6146a6818561501f565b93506146b6818560208601615277565b80840191505092915050565b60006146cf602b8361500e565b91506146da826154f0565b604082019050919050565b60006146f260328361500e565b91506146fd8261553f565b604082019050919050565b6000614715601c8361500e565b91506147208261558e565b602082019050919050565b600061473860248361500e565b9150614743826155b7565b604082019050919050565b600061475b60198361500e565b915061476682615606565b602082019050919050565b600061477e60118361500e565b91506147898261562f565b602082019050919050565b60006147a1602c8361500e565b91506147ac82615658565b604082019050919050565b60006147c4602c8361500e565b91506147cf826156a7565b604082019050919050565b60006147e760388361500e565b91506147f2826156f6565b604082019050919050565b600061480a602a8361500e565b915061481582615745565b604082019050919050565b600061482d60298361500e565b915061483882615794565b604082019050919050565b600061485060208361500e565b915061485b826157e3565b602082019050919050565b6000614873602c8361500e565b915061487e8261580c565b604082019050919050565b600061489660298361500e565b91506148a18261585b565b604082019050919050565b60006148b9602f8361500e565b91506148c4826158aa565b604082019050919050565b60006148dc60218361500e565b91506148e7826158f9565b604082019050919050565b60006148ff60098361500e565b915061490a82615948565b602082019050919050565b600061492260318361500e565b915061492d82615971565b604082019050919050565b6000614945602c8361500e565b9150614950826159c0565b604082019050919050565b600061496860138361500e565b915061497382615a0f565b602082019050919050565b600061498b60158361500e565b915061499682615a38565b602082019050919050565b6149aa816151ea565b82525050565b6149b9816151ea565b82525050565b6149d06149cb826151ea565b615380565b82525050565b60006149e28286614691565b91506149ee82856149bf565b6020820191506149fe82846149bf565b602082019150819050949350505050565b6000602082019050614a24600083018461459b565b92915050565b6000608082019050614a3f600083018761459b565b614a4c602083018661459b565b614a5960408301856149b0565b8181036060830152614a6b818461461f565b905095945050505050565b600061012082019050614a8c60008301846145aa565b92915050565b6000602082019050614aa76000830184614601565b92915050565b6000602082019050614ac26000830184614610565b92915050565b60006020820190508181036000830152614ae28184614658565b905092915050565b60006080820190508181036000830152614b048187614658565b90508181036020830152614b188186614658565b9050614b276040830185614601565b614b346060830184614601565b95945050505050565b600060a0820190508181036000830152614b578188614658565b90508181036020830152614b6b8187614658565b90508181036040830152614b7f8186614658565b90508181036060830152614b938185614658565b9050614ba26080830184614601565b9695505050505050565b60006020820190508181036000830152614bc5816146c2565b9050919050565b60006020820190508181036000830152614be5816146e5565b9050919050565b60006020820190508181036000830152614c0581614708565b9050919050565b60006020820190508181036000830152614c258161472b565b9050919050565b60006020820190508181036000830152614c458161474e565b9050919050565b60006020820190508181036000830152614c6581614771565b9050919050565b60006020820190508181036000830152614c8581614794565b9050919050565b60006020820190508181036000830152614ca5816147b7565b9050919050565b60006020820190508181036000830152614cc5816147da565b9050919050565b60006020820190508181036000830152614ce5816147fd565b9050919050565b60006020820190508181036000830152614d0581614820565b9050919050565b60006020820190508181036000830152614d2581614843565b9050919050565b60006020820190508181036000830152614d4581614866565b9050919050565b60006020820190508181036000830152614d6581614889565b9050919050565b60006020820190508181036000830152614d85816148ac565b9050919050565b60006020820190508181036000830152614da5816148cf565b9050919050565b60006020820190508181036000830152614dc5816148f2565b9050919050565b60006020820190508181036000830152614de581614915565b9050919050565b60006020820190508181036000830152614e0581614938565b9050919050565b60006020820190508181036000830152614e258161495b565b9050919050565b60006020820190508181036000830152614e458161497e565b9050919050565b6000602082019050614e6160008301846149b0565b92915050565b6000606082019050614e7c60008301866149b0565b8181036020830152614e8e8185614658565b9050614e9d60408301846149b0565b949350505050565b6000614eaf614ec0565b9050614ebb8282615306565b919050565b6000604051905090565b600067ffffffffffffffff821115614ee557614ee4615475565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f1157614f10615475565b5b602082029050919050565b600067ffffffffffffffff821115614f3757614f36615475565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f6357614f62615475565b5b614f6c826154d2565b9050602081019050919050565b600067ffffffffffffffff821115614f9457614f93615475565b5b614f9d826154d2565b9050602081019050919050565b6000819050919050565b6000819050602082019050919050565b600060099050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615035826151ea565b9150615040836151ea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150755761507461538a565b5b828201905092915050565b600061508b826151f4565b9150615096836151f4565b92508260ff038211156150ac576150ab61538a565b5b828201905092915050565b60006150c2826151ea565b91506150cd836151ea565b9250826150dd576150dc6153b9565b5b828204905092915050565b60006150f3826151ea565b91506150fe836151ea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151375761513661538a565b5b828202905092915050565b600061514d826151ea565b9150615158836151ea565b92508282101561516b5761516a61538a565b5b828203905092915050565b6000615181826151ca565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061520c82614fcf565b8261521684614fb4565b9050615221816154a4565b925060208210156152615761525c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff836020036008026154e3565b831692505b5050919050565b82818337600083830152505050565b60005b8381101561529557808201518184015260208101905061527a565b838111156152a4576000848401525b50505050565b60006152b5826151ea565b915060008214156152c9576152c861538a565b5b600182039050919050565b600060028204905060018216806152ec57607f821691505b60208210811415615300576152ff6153e8565b5b50919050565b61530f826154d2565b810181811067ffffffffffffffff8211171561532e5761532d615475565b5b80604052505050565b6000615342826151ea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153755761537461538a565b5b600182019050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60006154b08251615194565b80915050919050565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b600082821b905092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d617820446177677a2052656163686564000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5377617070696e67206e6f7420616374697665206f7220756e7377617070616260008201527f6c65206174747269627574650000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f74206f776e6572206f6620746f6b656e7300000000000000000000000000600082015250565b7f4e6f7420612076616c6964206174747269627574650000000000000000000000600082015250565b615a6a81615176565b8114615a7557600080fd5b50565b615a8181615188565b8114615a8c57600080fd5b50565b615a988161519e565b8114615aa357600080fd5b50565b615aaf816151ea565b8114615aba57600080fd5b5056fea264697066735822122054c84f5d9f6851dfab0c8cdddec542b87b6cfcba6cca3717b98d543bac5ab1c364736f6c6343000807003300000000000000000000000023dbbbc0f72f69a40ba4a7f5e7fbe56ce5f5bdf1000000000000000000000000d427ec7b902bb4e7a34a6d4cb48560fb0f240606000000000000000000000000f5fa692da78be643121f2034d00f55f96526dad3

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102325760003560e01c806370a0823111610130578063a22cb465116100b8578063d254a6391161007c578063d254a639146106da578063d926e2f71461070a578063e985e9c514610726578063f23ac23f14610756578063f2fde38b1461076057610232565b8063a22cb46514610636578063b4a99a4e14610652578063b88d4fde14610670578063c87b56dd1461068c578063d23b1e90146106bc57610232565b806389689501116100ff57806389689501146105a457806394bf804d146105c257806395d89b41146105de57806398855692146105fc5780639ff7ea571461061a57610232565b806370a082311461050857806371007ce314610538578063731635ca14610554578063839eb43a1461057057610232565b8063322d6947116101be5780635812ef5c116101825780635812ef5c146104295780636352211e1461045957806363d14df8146104895780636c3e51bd146104a55780636f32479e146104d857610232565b8063322d69471461037357806342842e0e1461038f5780634f64b2be146103ab5780634f6ccce7146103dd5780635700375c1461040d57610232565b806309dc1d7d1161020557806309dc1d7d146102d157806318160ddd146102ed57806323b872dd1461030b57806326897500146103275780632f745c591461034357610232565b806301ffc9a71461023757806306fdde0314610267578063081812fc14610285578063095ea7b3146102b5575b600080fd5b610251600480360381019061024c9190614141565b61077c565b60405161025e9190614a92565b60405180910390f35b61026f6107f6565b60405161027c9190614ac8565b60405180910390f35b61029f600480360381019061029a91906141e4565b610888565b6040516102ac9190614a0f565b60405180910390f35b6102cf60048036038101906102ca9190614004565b61090d565b005b6102eb60048036038101906102e69190614494565b610a25565b005b6102f5610b06565b6040516103029190614e4c565b60405180910390f35b61032560048036038101906103209190613eee565b610b13565b005b610341600480360381019061033c9190614530565b610b73565b005b61035d60048036038101906103589190614004565b610ec2565b60405161036a9190614e4c565b60405180910390f35b61038d600480360381019061038891906142cc565b610f67565b005b6103a960048036038101906103a49190613eee565b611048565b005b6103c560048036038101906103c091906141e4565b61108a565b6040516103d493929190614e67565b60405180910390f35b6103f760048036038101906103f291906141e4565b61113c565b6040516104049190614e4c565b60405180910390f35b61042760048036038101906104229190614328565b6111ad565b005b610443600480360381019061043e91906144f0565b6112f4565b6040516104509190614e4c565b60405180910390f35b610473600480360381019061046e91906141e4565b611326565b6040516104809190614a0f565b60405180910390f35b6104a3600480360381019061049e9190614530565b6113d8565b005b6104bf60048036038101906104ba91906141e4565b6114ff565b6040516104cf9493929190614aea565b60405180910390f35b6104f260048036038101906104ed91906141e4565b611659565b6040516104ff9190614a76565b60405180910390f35b610522600480360381019061051d9190613e81565b611700565b60405161052f9190614e4c565b60405180910390f35b610552600480360381019061054d91906143b3565b6117b8565b005b61056e60048036038101906105699190614251565b611918565b005b61058a60048036038101906105859190614530565b611aa2565b60405161059b959493929190614b3d565b60405180910390f35b6105ac611da9565b6040516105b99190614e4c565b60405180910390f35b6105dc60048036038101906105d79190614211565b611daf565b005b6105e6611f03565b6040516105f39190614ac8565b60405180910390f35b610604611f95565b6040516106119190614e4c565b60405180910390f35b610634600480360381019061062f9190614072565b611f9b565b005b610650600480360381019061064b9190613fc4565b612078565b005b61065a61208e565b6040516106679190614a0f565b60405180910390f35b61068a60048036038101906106859190613f41565b6120b4565b005b6106a660048036038101906106a191906141e4565b612116565b6040516106b39190614ac8565b60405180910390f35b6106c461221d565b6040516106d19190614a92565b60405180910390f35b6106f460048036038101906106ef91906141e4565b612230565b6040516107019190614ac8565b60405180910390f35b610724600480360381019061071f91906144f0565b6122d8565b005b610740600480360381019061073b9190613eae565b6123a9565b60405161074d9190614a92565b60405180910390f35b61075e61243d565b005b61077a60048036038101906107759190613e81565b61251b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ef57506107ee826126a1565b5b9050919050565b606060008054610805906152d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610831906152d4565b801561087e5780601f106108535761010080835404028352916020019161087e565b820191906000526020600020905b81548152906001019060200180831161086157829003601f168201915b5050505050905090565b600061089382612783565b6108d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c990614d2c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091882611326565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098090614d8c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a86127ef565b73ffffffffffffffffffffffffffffffffffffffff1614806109d757506109d6816109d16127ef565b6123a9565b5b610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d90614cac565b60405180910390fd5b610a2083836127f7565b505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ace5750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610ad757600080fd5b80601060008481526020019081526020016000206002019080519060200190610b0192919061393d565b505050565b6000600880549050905090565b610b24610b1e6127ef565b826128b0565b610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90614dcc565b60405180910390fd5b610b6e83838361298e565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610b9384611326565b73ffffffffffffffffffffffffffffffffffffffff16148015610be957503373ffffffffffffffffffffffffffffffffffffffff16610bd183611326565b73ffffffffffffffffffffffffffffffffffffffff16145b610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90614e0c565b60405180910390fd5b60011515600a60009054906101000a900460ff161515148015610c725750600115156011600083815260200190815260200160002060040160009054906101000a900460ff161515145b610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890614c8c565b60405180910390fd5b600115156011600083815260200190815260200160002060040160019054906101000a900460ff16151514610d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1290614e2c565b60405180910390fd5b6009811015610dc7576000610d2f84611659565b90506000610d3c84611659565b90506000828460098110610d5357610d52615446565b5b60200201519050818460098110610d6d57610d6c615446565b5b6020020151838560098110610d8557610d84615446565b5b60200201818152505080828560098110610da257610da1615446565b5b602002018181525050610db58684612bea565b610dbf8583612bea565b505050610e74565b600060106000858152602001908152602001600020600101600083815260200190815260200160002054905060106000848152602001908152602001600020600101600083815260200190815260200160002054601060008681526020019081526020016000206001016000848152602001908152602001600020819055508060106000858152602001908152602001600020600101600084815260200190815260200160002081905550505b600043600e54610e84919061502a565b905080601060008681526020019081526020016000206003018190555080601060008581526020019081526020016000206003018190555050505050565b6000610ecd83611700565b8210610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590614bac565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806110105750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61101957600080fd5b806011600084815260200190815260200160002060030190805190602001906110439291906139c3565b505050565b4360106000838152602001908152602001600020600301541061106a57600080fd5b611085838383604051806020016040528060008152506120b4565b505050565b60106020528060005260406000206000915090508060000154908060020180546110b3906152d4565b80601f01602080910402602001604051908101604052809291908181526020018280546110df906152d4565b801561112c5780601f106111015761010080835404028352916020019161112c565b820191906000526020600020905b81548152906001019060200180831161110f57829003601f168201915b5050505050908060030154905083565b6000611146610b06565b8210611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e90614dec565b60405180910390fd5b6008828154811061119b5761119a615446565b5b90600052602060002001549050919050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806112565750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61125f57600080fd5b60005b82518110156112ee5781818151811061127e5761127d615446565b5b60200260200101516011600086815260200190815260200160002060020160008584815181106112b1576112b0615446565b5b6020026020010151815260200190815260200160002090805190602001906112da92919061393d565b5080806112e690615337565b915050611262565b50505050565b600060106000848152602001908152602001600020600101600083815260200190815260200160002054905092915050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690614cec565b60405180910390fd5b80915050919050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806114815750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61148a57600080fd5b60098210156114cd57600061149e84611659565b9050818184600981106114b4576114b3615446565b5b6020020181815250506114c78482612bea565b506114fa565b80601060008581526020019081526020016000206001016000848152602001908152602001600020819055505b505050565b6011602052806000526040600020600091509050806000018054611522906152d4565b80601f016020809104026020016040519081016040528092919081815260200182805461154e906152d4565b801561159b5780601f106115705761010080835404028352916020019161159b565b820191906000526020600020905b81548152906001019060200180831161157e57829003601f168201915b5050505050908060010180546115b0906152d4565b80601f01602080910402602001604051908101604052809291908181526020018280546115dc906152d4565b80156116295780601f106115fe57610100808354040283529160200191611629565b820191906000526020600020905b81548152906001019060200180831161160c57829003601f168201915b5050505050908060040160009054906101000a900460ff16908060040160019054906101000a900460ff16905084565b611661613a23565b611669613a23565b6000601060008581526020019081526020016000206000015490506000600990505b60008111156116f55760006008826116a391906150e8565b6101006116b09190615142565b90508083901c60ff16846001846116c79190615142565b600981106116d8576116d7615446565b5b6020020181815250505080806116ed906152aa565b91505061168b565b508192505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890614ccc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806118615750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61186a57600080fd5b6000601160008881526020019081526020016000209050858160040160016101000a81548160ff021916908315150217905550848160000190805190602001906118b592919061393d565b50838160010190805190602001906118ce92919061393d565b506000835111156118f357828160030190805190602001906118f19291906139c3565b505b818160040160006101000a81548160ff02191690831515021790555050505050505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806119c15750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6119ca57600080fd5b84600b8190555083601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600e8190555080601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b606080606080600080601160008a81526020019081526020016000206000018054611acc906152d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611af8906152d4565b8015611b455780601f10611b1a57610100808354040283529160200191611b45565b820191906000526020600020905b815481529060010190602001808311611b2857829003601f168201915b505050505090506000601160008b81526020019081526020016000206003018981548110611b7657611b75615446565b5b906000526020600020018054611b8b906152d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611bb7906152d4565b8015611c045780601f10611bd957610100808354040283529160200191611c04565b820191906000526020600020905b815481529060010190602001808311611be757829003601f168201915b505050505090506000601160008c81526020019081526020016000206001018054611c2e906152d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5a906152d4565b8015611ca75780601f10611c7c57610100808354040283529160200191611ca7565b820191906000526020600020905b815481529060010190602001808311611c8a57829003601f168201915b505050505090506000601160008d815260200190815260200160002060020160008b81526020019081526020016000208054611ce2906152d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0e906152d4565b8015611d5b5780601f10611d3057610100808354040283529160200191611d5b565b820191906000526020600020905b815481529060010190602001808311611d3e57829003601f168201915b505050505090506000601160008e815260200190815260200160002060040160019054906101000a900460ff1690508484848484995099509950995099505050505050939792965093509350565b600b5481565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611e585750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611e6157600080fd5b6000600c549050600b548382611e77919061502a565b10611eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eae90614c4c565b60405180910390fd5b60005b83811015611ef657611ecb82612c79565b611ed58383612d71565b8180611ee090615337565b9250508080611eee90615337565b915050611eba565b5080600c81905550505050565b606060018054611f12906152d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3e906152d4565b8015611f8b5780601f10611f6057610100808354040283529160200191611f8b565b820191906000526020600020905b815481529060010190602001808311611f6e57829003601f168201915b5050505050905090565b600d5481565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806120445750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61204d57600080fd5b612071600d600081548092919061206390615337565b9190505586868686866117b8565b5050505050565b61208a6120836127ef565b8383612d8f565b5050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6120c56120bf6127ef565b836128b0565b612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb90614dcc565b60405180910390fd5b61211084848484612efc565b50505050565b606061212182612783565b612160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215790614d6c565b60405180910390fd5b6000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632b94a5ac846040518263ffffffff1660e01b81526004016121bd9190614e4c565b60006040518083038186803b1580156121d557600080fd5b505afa1580156121e9573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190612212919061419b565b905080915050919050565b600a60009054906101000a900460ff1681565b6060601060008381526020019081526020016000206002018054612253906152d4565b80601f016020809104026020016040519081016040528092919081815260200182805461227f906152d4565b80156122cc5780601f106122a1576101008083540402835291602001916122cc565b820191906000526020600020905b8154815290600101906020018083116122af57829003601f168201915b50505050509050919050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806123815750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61238a57600080fd5b8060106000848152602001908152602001600020600301819055505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806124e65750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6124ef57600080fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806125c45750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6125cd57600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461265d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265490614dac565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061276c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061277c575061277b82612f58565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661286a83611326565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006128bb82612783565b6128fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f190614c6c565b60405180910390fd5b600061290583611326565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061297457508373ffffffffffffffffffffffffffffffffffffffff1661295c84610888565b73ffffffffffffffffffffffffffffffffffffffff16145b80612985575061298481856123a9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166129ae82611326565b73ffffffffffffffffffffffffffffffffffffffff1614612a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fb90614d4c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6b90614c0c565b60405180910390fd5b612a7f838383612fc2565b612a8a6000826127f7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ada9190615142565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b31919061502a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600080600990505b6000811115612c58576000600882612c0a91906150e8565b610100612c179190615142565b90508084600184612c289190615142565b60098110612c3957612c38615446565b5b6020020151901b83179250508080612c50906152aa565b915050612bf2565b50806010600085815260200190815260200160002060000181905550505050565b6000612c84826130d6565b4244604051602001612c98939291906149d6565b604051602081830303815290604052612cb090615201565b90506000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166355d781fa836040518263ffffffff1660e01b8152600401612d0f9190614aad565b6101206040518083038186803b158015612d2857600080fd5b505afa158015612d3c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d609190614044565b9050612d6c8382612bea565b505050565b612d8b82826040518060200160405280600081525061325f565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df590614c2c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612eef9190614a92565b60405180910390a3505050565b612f0784848461298e565b612f13848484846132ba565b612f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4990614bcc565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612fcd838383613451565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130105761300b81613456565b61304f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461304e5761304d838261349f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130925761308d8161360c565b6130d1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130d0576130cf82826136dd565b5b5b505050565b6060600082141561311e576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061325a565b600082905060005b6000821461315057808061313990615337565b915050600a8261314991906150b7565b9150613126565b60008167ffffffffffffffff81111561316c5761316b615475565b5b6040519080825280601f01601f19166020018201604052801561319e5781602001600182028036833780820191505090505b50905060008290505b60008614613252576001816131bc9190615142565b90506000600a80886131ce91906150b7565b6131d891906150e8565b876131e39190615142565b60306131ef9190615080565b905060008160f81b90508084848151811061320d5761320c615446565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8861324991906150b7565b975050506131a7565b819450505050505b919050565b613269838361375c565b61327660008484846132ba565b6132b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ac90614bcc565b60405180910390fd5b505050565b60006132db8473ffffffffffffffffffffffffffffffffffffffff1661392a565b15613444578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133046127ef565b8786866040518563ffffffff1660e01b81526004016133269493929190614a2a565b602060405180830381600087803b15801561334057600080fd5b505af192505050801561337157506040513d601f19601f8201168201806040525081019061336e919061416e565b60015b6133f4573d80600081146133a1576040519150601f19603f3d011682016040523d82523d6000602084013e6133a6565b606091505b506000815114156133ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e390614bcc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613449565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016134ac84611700565b6134b69190615142565b905060006007600084815260200190815260200160002054905081811461359b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136209190615142565b90506000600960008481526020019081526020016000205490506000600883815481106136505761364f615446565b5b90600052602060002001549050806008838154811061367257613671615446565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806136c1576136c0615417565b5b6001900381819060005260206000200160009055905550505050565b60006136e883611700565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c390614d0c565b60405180910390fd5b6137d581612783565b15613815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380c90614bec565b60405180910390fd5b61382160008383612fc2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613871919061502a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613949906152d4565b90600052602060002090601f01602090048101928261396b57600085556139b2565b82601f1061398457805160ff19168380011785556139b2565b828001600101855582156139b2579182015b828111156139b1578251825591602001919060010190613996565b5b5090506139bf9190613a46565b5090565b828054828255906000526020600020908101928215613a12579160200282015b82811115613a11578251829080519060200190613a0192919061393d565b50916020019190600101906139e3565b5b509050613a1f9190613a63565b5090565b604051806101200160405280600990602082028036833780820191505090505090565b5b80821115613a5f576000816000905550600101613a47565b5090565b5b80821115613a835760008181613a7a9190613a87565b50600101613a64565b5090565b508054613a93906152d4565b6000825580601f10613aa55750613ac4565b601f016020900490600052602060002090810190613ac39190613a46565b5b50565b6000613ada613ad584614eca565b614ea5565b90508083825260208201905082856020860282011115613afd57613afc6154be565b5b60005b85811015613b4b57813567ffffffffffffffff811115613b2357613b226154b9565b5b808601613b308982613dfb565b85526020850194506020840193505050600181019050613b00565b5050509392505050565b6000613b68613b6384614ef6565b614ea5565b90508082856020860282011115613b8257613b816154be565b5b60005b85811015613bb25781613b988882613e6c565b845260208401935060208301925050600181019050613b85565b5050509392505050565b6000613bcf613bca84614f1c565b614ea5565b90508083825260208201905082856020860282011115613bf257613bf16154be565b5b60005b85811015613c225781613c088882613e57565b845260208401935060208301925050600181019050613bf5565b5050509392505050565b6000613c3f613c3a84614f48565b614ea5565b905082815260208101848484011115613c5b57613c5a6154c3565b5b613c66848285615268565b509392505050565b6000613c81613c7c84614f79565b614ea5565b905082815260208101848484011115613c9d57613c9c6154c3565b5b613ca8848285615268565b509392505050565b6000613cc3613cbe84614f79565b614ea5565b905082815260208101848484011115613cdf57613cde6154c3565b5b613cea848285615277565b509392505050565b600081359050613d0181615a61565b92915050565b600082601f830112613d1c57613d1b6154b9565b5b8135613d2c848260208601613ac7565b91505092915050565b600082601f830112613d4a57613d496154b9565b5b6009613d57848285613b55565b91505092915050565b600082601f830112613d7557613d746154b9565b5b8135613d85848260208601613bbc565b91505092915050565b600081359050613d9d81615a78565b92915050565b600081359050613db281615a8f565b92915050565b600081519050613dc781615a8f565b92915050565b600082601f830112613de257613de16154b9565b5b8135613df2848260208601613c2c565b91505092915050565b600082601f830112613e1057613e0f6154b9565b5b8135613e20848260208601613c6e565b91505092915050565b600082601f830112613e3e57613e3d6154b9565b5b8151613e4e848260208601613cb0565b91505092915050565b600081359050613e6681615aa6565b92915050565b600081519050613e7b81615aa6565b92915050565b600060208284031215613e9757613e966154cd565b5b6000613ea584828501613cf2565b91505092915050565b60008060408385031215613ec557613ec46154cd565b5b6000613ed385828601613cf2565b9250506020613ee485828601613cf2565b9150509250929050565b600080600060608486031215613f0757613f066154cd565b5b6000613f1586828701613cf2565b9350506020613f2686828701613cf2565b9250506040613f3786828701613e57565b9150509250925092565b60008060008060808587031215613f5b57613f5a6154cd565b5b6000613f6987828801613cf2565b9450506020613f7a87828801613cf2565b9350506040613f8b87828801613e57565b925050606085013567ffffffffffffffff811115613fac57613fab6154c8565b5b613fb887828801613dcd565b91505092959194509250565b60008060408385031215613fdb57613fda6154cd565b5b6000613fe985828601613cf2565b9250506020613ffa85828601613d8e565b9150509250929050565b6000806040838503121561401b5761401a6154cd565b5b600061402985828601613cf2565b925050602061403a85828601613e57565b9150509250929050565b6000610120828403121561405b5761405a6154cd565b5b600061406984828501613d35565b91505092915050565b600080600080600060a0868803121561408e5761408d6154cd565b5b600061409c88828901613d8e565b955050602086013567ffffffffffffffff8111156140bd576140bc6154c8565b5b6140c988828901613dfb565b945050604086013567ffffffffffffffff8111156140ea576140e96154c8565b5b6140f688828901613dfb565b935050606086013567ffffffffffffffff811115614117576141166154c8565b5b61412388828901613d07565b925050608061413488828901613d8e565b9150509295509295909350565b600060208284031215614157576141566154cd565b5b600061416584828501613da3565b91505092915050565b600060208284031215614184576141836154cd565b5b600061419284828501613db8565b91505092915050565b6000602082840312156141b1576141b06154cd565b5b600082015167ffffffffffffffff8111156141cf576141ce6154c8565b5b6141db84828501613e29565b91505092915050565b6000602082840312156141fa576141f96154cd565b5b600061420884828501613e57565b91505092915050565b60008060408385031215614228576142276154cd565b5b600061423685828601613e57565b925050602061424785828601613cf2565b9150509250929050565b600080600080600060a0868803121561426d5761426c6154cd565b5b600061427b88828901613e57565b955050602061428c88828901613cf2565b945050604061429d88828901613cf2565b93505060606142ae88828901613e57565b92505060806142bf88828901613cf2565b9150509295509295909350565b600080604083850312156142e3576142e26154cd565b5b60006142f185828601613e57565b925050602083013567ffffffffffffffff811115614312576143116154c8565b5b61431e85828601613d07565b9150509250929050565b600080600060608486031215614341576143406154cd565b5b600061434f86828701613e57565b935050602084013567ffffffffffffffff8111156143705761436f6154c8565b5b61437c86828701613d60565b925050604084013567ffffffffffffffff81111561439d5761439c6154c8565b5b6143a986828701613d07565b9150509250925092565b60008060008060008060c087890312156143d0576143cf6154cd565b5b60006143de89828a01613e57565b96505060206143ef89828a01613d8e565b955050604087013567ffffffffffffffff8111156144105761440f6154c8565b5b61441c89828a01613dfb565b945050606087013567ffffffffffffffff81111561443d5761443c6154c8565b5b61444989828a01613dfb565b935050608087013567ffffffffffffffff81111561446a576144696154c8565b5b61447689828a01613d07565b92505060a061448789828a01613d8e565b9150509295509295509295565b600080604083850312156144ab576144aa6154cd565b5b60006144b985828601613e57565b925050602083013567ffffffffffffffff8111156144da576144d96154c8565b5b6144e685828601613dfb565b9150509250929050565b60008060408385031215614507576145066154cd565b5b600061451585828601613e57565b925050602061452685828601613e57565b9150509250929050565b600080600060608486031215614549576145486154cd565b5b600061455786828701613e57565b935050602061456886828701613e57565b925050604061457986828701613e57565b9150509250925092565b600061458f83836149a1565b60208301905092915050565b6145a481615176565b82525050565b6145b381614fc4565b6145bd8184614ff2565b92506145c882614faa565b8060005b838110156145f95781516145e08782614583565b96506145eb83614fe5565b9250506001810190506145cc565b505050505050565b61460a81615188565b82525050565b61461981615194565b82525050565b600061462a82614fcf565b6146348185614ffd565b9350614644818560208601615277565b61464d816154d2565b840191505092915050565b600061466382614fda565b61466d818561500e565b935061467d818560208601615277565b614686816154d2565b840191505092915050565b600061469c82614fda565b6146a6818561501f565b93506146b6818560208601615277565b80840191505092915050565b60006146cf602b8361500e565b91506146da826154f0565b604082019050919050565b60006146f260328361500e565b91506146fd8261553f565b604082019050919050565b6000614715601c8361500e565b91506147208261558e565b602082019050919050565b600061473860248361500e565b9150614743826155b7565b604082019050919050565b600061475b60198361500e565b915061476682615606565b602082019050919050565b600061477e60118361500e565b91506147898261562f565b602082019050919050565b60006147a1602c8361500e565b91506147ac82615658565b604082019050919050565b60006147c4602c8361500e565b91506147cf826156a7565b604082019050919050565b60006147e760388361500e565b91506147f2826156f6565b604082019050919050565b600061480a602a8361500e565b915061481582615745565b604082019050919050565b600061482d60298361500e565b915061483882615794565b604082019050919050565b600061485060208361500e565b915061485b826157e3565b602082019050919050565b6000614873602c8361500e565b915061487e8261580c565b604082019050919050565b600061489660298361500e565b91506148a18261585b565b604082019050919050565b60006148b9602f8361500e565b91506148c4826158aa565b604082019050919050565b60006148dc60218361500e565b91506148e7826158f9565b604082019050919050565b60006148ff60098361500e565b915061490a82615948565b602082019050919050565b600061492260318361500e565b915061492d82615971565b604082019050919050565b6000614945602c8361500e565b9150614950826159c0565b604082019050919050565b600061496860138361500e565b915061497382615a0f565b602082019050919050565b600061498b60158361500e565b915061499682615a38565b602082019050919050565b6149aa816151ea565b82525050565b6149b9816151ea565b82525050565b6149d06149cb826151ea565b615380565b82525050565b60006149e28286614691565b91506149ee82856149bf565b6020820191506149fe82846149bf565b602082019150819050949350505050565b6000602082019050614a24600083018461459b565b92915050565b6000608082019050614a3f600083018761459b565b614a4c602083018661459b565b614a5960408301856149b0565b8181036060830152614a6b818461461f565b905095945050505050565b600061012082019050614a8c60008301846145aa565b92915050565b6000602082019050614aa76000830184614601565b92915050565b6000602082019050614ac26000830184614610565b92915050565b60006020820190508181036000830152614ae28184614658565b905092915050565b60006080820190508181036000830152614b048187614658565b90508181036020830152614b188186614658565b9050614b276040830185614601565b614b346060830184614601565b95945050505050565b600060a0820190508181036000830152614b578188614658565b90508181036020830152614b6b8187614658565b90508181036040830152614b7f8186614658565b90508181036060830152614b938185614658565b9050614ba26080830184614601565b9695505050505050565b60006020820190508181036000830152614bc5816146c2565b9050919050565b60006020820190508181036000830152614be5816146e5565b9050919050565b60006020820190508181036000830152614c0581614708565b9050919050565b60006020820190508181036000830152614c258161472b565b9050919050565b60006020820190508181036000830152614c458161474e565b9050919050565b60006020820190508181036000830152614c6581614771565b9050919050565b60006020820190508181036000830152614c8581614794565b9050919050565b60006020820190508181036000830152614ca5816147b7565b9050919050565b60006020820190508181036000830152614cc5816147da565b9050919050565b60006020820190508181036000830152614ce5816147fd565b9050919050565b60006020820190508181036000830152614d0581614820565b9050919050565b60006020820190508181036000830152614d2581614843565b9050919050565b60006020820190508181036000830152614d4581614866565b9050919050565b60006020820190508181036000830152614d6581614889565b9050919050565b60006020820190508181036000830152614d85816148ac565b9050919050565b60006020820190508181036000830152614da5816148cf565b9050919050565b60006020820190508181036000830152614dc5816148f2565b9050919050565b60006020820190508181036000830152614de581614915565b9050919050565b60006020820190508181036000830152614e0581614938565b9050919050565b60006020820190508181036000830152614e258161495b565b9050919050565b60006020820190508181036000830152614e458161497e565b9050919050565b6000602082019050614e6160008301846149b0565b92915050565b6000606082019050614e7c60008301866149b0565b8181036020830152614e8e8185614658565b9050614e9d60408301846149b0565b949350505050565b6000614eaf614ec0565b9050614ebb8282615306565b919050565b6000604051905090565b600067ffffffffffffffff821115614ee557614ee4615475565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f1157614f10615475565b5b602082029050919050565b600067ffffffffffffffff821115614f3757614f36615475565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f6357614f62615475565b5b614f6c826154d2565b9050602081019050919050565b600067ffffffffffffffff821115614f9457614f93615475565b5b614f9d826154d2565b9050602081019050919050565b6000819050919050565b6000819050602082019050919050565b600060099050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615035826151ea565b9150615040836151ea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150755761507461538a565b5b828201905092915050565b600061508b826151f4565b9150615096836151f4565b92508260ff038211156150ac576150ab61538a565b5b828201905092915050565b60006150c2826151ea565b91506150cd836151ea565b9250826150dd576150dc6153b9565b5b828204905092915050565b60006150f3826151ea565b91506150fe836151ea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151375761513661538a565b5b828202905092915050565b600061514d826151ea565b9150615158836151ea565b92508282101561516b5761516a61538a565b5b828203905092915050565b6000615181826151ca565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061520c82614fcf565b8261521684614fb4565b9050615221816154a4565b925060208210156152615761525c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff836020036008026154e3565b831692505b5050919050565b82818337600083830152505050565b60005b8381101561529557808201518184015260208101905061527a565b838111156152a4576000848401525b50505050565b60006152b5826151ea565b915060008214156152c9576152c861538a565b5b600182039050919050565b600060028204905060018216806152ec57607f821691505b60208210811415615300576152ff6153e8565b5b50919050565b61530f826154d2565b810181811067ffffffffffffffff8211171561532e5761532d615475565b5b80604052505050565b6000615342826151ea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153755761537461538a565b5b600182019050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60006154b08251615194565b80915050919050565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b600082821b905092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d617820446177677a2052656163686564000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5377617070696e67206e6f7420616374697665206f7220756e7377617070616260008201527f6c65206174747269627574650000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f74206f776e6572206f6620746f6b656e7300000000000000000000000000600082015250565b7f4e6f7420612076616c6964206174747269627574650000000000000000000000600082015250565b615a6a81615176565b8114615a7557600080fd5b50565b615a8181615188565b8114615a8c57600080fd5b50565b615a988161519e565b8114615aa357600080fd5b50565b615aaf816151ea565b8114615aba57600080fd5b5056fea264697066735822122054c84f5d9f6851dfab0c8cdddec542b87b6cfcba6cca3717b98d543bac5ab1c364736f6c63430008070033

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

00000000000000000000000023dbbbc0f72f69a40ba4a7f5e7fbe56ce5f5bdf1000000000000000000000000d427ec7b902bb4e7a34a6d4cb48560fb0f240606000000000000000000000000f5fa692da78be643121f2034d00f55f96526dad3

-----Decoded View---------------
Arg [0] : _generationContract (address): 0x23Dbbbc0f72f69A40Ba4A7F5e7fbe56CE5f5bDf1
Arg [1] : _uriContract (address): 0xD427eC7B902Bb4e7a34a6d4cb48560Fb0f240606
Arg [2] : _mintContract (address): 0xF5Fa692Da78Be643121f2034D00f55F96526dAd3

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000023dbbbc0f72f69a40ba4a7f5e7fbe56ce5f5bdf1
Arg [1] : 000000000000000000000000d427ec7b902bb4e7a34a6d4cb48560fb0f240606
Arg [2] : 000000000000000000000000f5fa692da78be643121f2034d00f55f96526dad3


Deployed Bytecode Sourcemap

59914:8951:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53643:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41078:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42637:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42160:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63029:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54283:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43387:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65866:1275;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53951:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63169:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67147:243;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60645:40;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;54473:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64081:277;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62754:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40772:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65430:430;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60692:48;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;65048:376;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40502:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63590:485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68164:402;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62242:506;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;;;;;;59994:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67668:392;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41247:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60070:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63335:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42930:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60143:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44053:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67402:260;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59953:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62902:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68735:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43156:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68066:92;;;:::i;:::-;;68578:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53643:224;53745:4;53784:35;53769:50;;;:11;:50;;;;:90;;;;53823:36;53847:11;53823:23;:36::i;:::-;53769:90;53762:97;;53643:224;;;:::o;41078:100::-;41132:13;41165:5;41158:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41078:100;:::o;42637:221::-;42713:7;42741:16;42749:7;42741;:16::i;:::-;42733:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42826:15;:24;42842:7;42826:24;;;;;;;;;;;;;;;;;;;;;42819:31;;42637:221;;;:::o;42160:411::-;42241:13;42257:23;42272:7;42257:14;:23::i;:::-;42241:39;;42305:5;42299:11;;:2;:11;;;;42291:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;42399:5;42383:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;42408:37;42425:5;42432:12;:10;:12::i;:::-;42408:16;:37::i;:::-;42383:62;42361:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;42542:21;42551:2;42555:7;42542:8;:21::i;:::-;42230:341;42160:411;;:::o;63029:134::-;60948:5;;;;;;;;;;;60934:19;;:10;:19;;;:53;;;;60971:16;;;;;;;;;;;60957:30;;:10;:30;;;60934:53;60926:62;;;;;;63146:9:::1;63118:6;:15;63125:7;63118:15;;;;;;;;;;;:25;;:37;;;;;;;;;;;;:::i;:::-;;63029:134:::0;;:::o;54283:113::-;54344:7;54371:10;:17;;;;54364:24;;54283:113;:::o;43387:339::-;43582:41;43601:12;:10;:12::i;:::-;43615:7;43582:18;:41::i;:::-;43574:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;43690:28;43700:4;43706:2;43710:7;43690:9;:28::i;:::-;43387:339;;;:::o;65866:1275::-;65991:10;65971:30;;:16;65979:7;65971;:16::i;:::-;:30;;;:64;;;;;66025:10;66005:30;;:16;66013:7;66005;:16::i;:::-;:30;;;65971:64;65963:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;66096:4;66078:22;;:14;;;;;;;;;;;:22;;;:67;;;;;66141:4;66104:41;;:10;:23;66115:11;66104:23;;;;;;;;;;;:33;;;;;;;;;;;;:41;;;66078:67;66070:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;66247:4;66213:38;;:10;:23;66224:11;66213:23;;;;;;;;;;;:30;;;;;;;;;;;;:38;;;66205:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;66305:1;66291:11;:15;66288:716;;;66357:23;66383:27;66402:7;66383:18;:27::i;:::-;66357:53;;66425:23;66451:27;66470:7;66451:18;:27::i;:::-;66425:53;;66493:11;66507:5;66513:11;66507:18;;;;;;;:::i;:::-;;;;;;66493:32;;66561:5;66567:11;66561:18;;;;;;;:::i;:::-;;;;;;66540:5;66546:11;66540:18;;;;;;;:::i;:::-;;;;;:39;;;;;66615:3;66594:5;66600:11;66594:18;;;;;;;:::i;:::-;;;;;:24;;;;;66633:34;66652:7;66661:5;66633:18;:34::i;:::-;66682;66701:7;66710:5;66682:18;:34::i;:::-;66307:435;;;66288:716;;;66763:11;66777:6;:15;66784:7;66777:15;;;;;;;;;;;:31;;:44;66809:11;66777:44;;;;;;;;;;;;66763:58;;66883:6;:15;66890:7;66883:15;;;;;;;;;;;:31;;:44;66915:11;66883:44;;;;;;;;;;;;66836:6;:15;66843:7;66836:15;;;;;;;;;;;:31;;:44;66868:11;66836:44;;;;;;;;;;;:91;;;;66989:3;66942:6;:15;66949:7;66942:15;;;;;;;;;;;:31;;:44;66974:11;66942:44;;;;;;;;;;;:50;;;;66748:256;66288:716;67014:10;67043:12;67027:13;;:28;;;;:::i;:::-;67014:41;;67092:2;67066:6;:15;67073:7;67066:15;;;;;;;;;;;:23;;:28;;;;67131:2;67105:6;:15;67112:7;67105:15;;;;;;;;;;;:23;;:28;;;;65952:1189;65866:1275;;;:::o;53951:256::-;54048:7;54084:23;54101:5;54084:16;:23::i;:::-;54076:5;:31;54068:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;54173:12;:19;54186:5;54173:19;;;;;;;;;;;;;;;:26;54193:5;54173:26;;;;;;;;;;;;54166:33;;53951:256;;;;:::o;63169:160::-;60948:5;;;;;;;;;;;60934:19;;:10;:19;;;:53;;;;60971:16;;;;;;;;;;;60957:30;;:10;:30;;;60934:53;60926:62;;;;;;63310:11:::1;63267:10;:24;63278:12;63267:24;;;;;;;;;;;:40;;:54;;;;;;;;;;;;:::i;:::-;;63169:160:::0;;:::o;67147:243::-;67319:12;67293:6;:15;67300:7;67293:15;;;;;;;;;;;:23;;;:38;67285:47;;;;;;67343:39;67360:4;67366:2;67370:7;67343:39;;;;;;;;;;;;:16;:39::i;:::-;67147:243;;;:::o;60645:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54473:233::-;54548:7;54584:30;:28;:30::i;:::-;54576:5;:38;54568:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;54681:10;54692:5;54681:17;;;;;;;;:::i;:::-;;;;;;;;;;54674:24;;54473:233;;;:::o;64081:277::-;60948:5;;;;;;;;;;;60934:19;;:10;:19;;;:53;;;;60971:16;;;;;;;;;;;60957:30;;:10;:30;;;60934:53;60926:62;;;;;;64213:6:::1;64209:142;64229:11;:18;64225:1;:22;64209:142;;;64324:12;64337:1;64324:15;;;;;;;;:::i;:::-;;;;;;;;64268:10;:23;64279:11;64268:23;;;;;;;;;;;:37;;:53;64306:11;64318:1;64306:14;;;;;;;;:::i;:::-;;;;;;;;64268:53;;;;;;;;;;;:71;;;;;;;;;;;;:::i;:::-;;64249:3;;;;;:::i;:::-;;;;64209:142;;;;64081:277:::0;;;:::o;62754:142::-;62824:7;62850:6;:15;62857:7;62850:15;;;;;;;;;;;:31;;:38;62882:5;62850:38;;;;;;;;;;;;62843:45;;62754:142;;;;:::o;40772:239::-;40844:7;40864:13;40880:7;:16;40888:7;40880:16;;;;;;;;;;;;;;;;;;;;;40864:32;;40932:1;40915:19;;:5;:19;;;;40907:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;40998:5;40991:12;;;40772:239;;;:::o;65430:430::-;60948:5;;;;;;;;;;;60934:19;;:10;:19;;;:53;;;;60971:16;;;;;;;;;;;60957:30;;:10;:30;;;60934:53;60926:62;;;;;;65572:1:::1;65557:12;:16;65554:299;;;65589:22;65614:28;65633:8;65614:18;:28::i;:::-;65589:53;;65678:16;65657:4;65662:12;65657:18;;;;;;;:::i;:::-;;;;;:37;;;::::0;::::1;65709:34;65728:8;65738:4;65709:18;:34::i;:::-;65574:181;65554:299;;;65825:16;65776:6;:16;65783:8;65776:16;;;;;;;;;;;:32;;:46;65809:12;65776:46;;;;;;;;;;;:65;;;;65554:299;65430:430:::0;;;:::o;60692:48::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65048:376::-;65114:17;;:::i;:::-;65143:25;;:::i;:::-;65179:16;65198:6;:16;65205:8;65198:16;;;;;;;;;;;:31;;;65179:50;;65244:9;65256:14;65244:26;;65240:152;65276:1;65272;:5;65240:152;;;65298:10;65320:1;65318;:3;;;;:::i;:::-;65311;:11;;;;:::i;:::-;65298:24;;65376:2;65366:8;:12;;65352:28;;65337:7;65347:1;65345;:3;;;;:::i;:::-;65337:12;;;;;;;:::i;:::-;;;;;:43;;;;;65283:109;65279:3;;;;;:::i;:::-;;;;65240:152;;;;65409:7;65402:14;;;;65048:376;;;:::o;40502:208::-;40574:7;40619:1;40602:19;;:5;:19;;;;40594:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;40686:9;:16;40696:5;40686:16;;;;;;;;;;;;;;;;40679:23;;40502:208;;;:::o;63590:485::-;60948:5;;;;;;;;;;;60934:19;;:10;:19;;;:53;;;;60971:16;;;;;;;;;;;60957:30;;:10;:30;;;60934:53;60926:62;;;;;;63768:23:::1;63794:10;:20;63805:8;63794:20;;;;;;;;;;;63768:46;;63840:6;63825:5;:12;;;:21;;;;;;;;;;;;;;;;;;63879:10;63857:5;:19;;:32;;;;;;;;;;;;:::i;:::-;;63921:9;63900:5;:18;;:30;;;;;;;;;;;;:::i;:::-;;63965:1;63944:11;:18;:22;63941:88;;;64006:11;63982:5;:21;;:35;;;;;;;;;;;;:::i;:::-;;63941:88;64057:10;64039:5;:15;;;:28;;;;;;;;;;;;;;;;;;63757:318;63590:485:::0;;;;;;:::o;68164:402::-;60948:5;;;;;;;;;;;60934:19;;:10;:19;;;:53;;;;60971:16;;;;;;;;;;;60957:30;;:10;:30;;;60934:53;60926:62;;;;;;68349:12:::1;68332:14;:29;;;;68406:19;68372:15;;:54;;;;;;;;;;;;;;;;;;68463:12;68437:11;;:39;;;;;;;;;;;;;;;;;;68503:8;68487:13;:24;;;;68541:17;68522:16;;:36;;;;;;;;;;;;;;;;;;68164:402:::0;;;;;:::o;62242:506::-;62331:13;62346;62361;62376;62391:4;62407:16;62426:10;:17;62437:5;62426:17;;;;;;;;;;;:31;;62407:50;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62468:16;62487:10;:17;62498:5;62487:17;;;;;;;;;;;:33;;62521:6;62487:41;;;;;;;;:::i;:::-;;;;;;;;;62468:60;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62539:16;62558:10;:17;62569:5;62558:17;;;;;;;;;;;:30;;62539:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62599:16;62618:10;:17;62629:5;62618:17;;;;;;;;;;;:31;;:39;62650:6;62618:39;;;;;;;;;;;62599:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62668:7;62678:10;:17;62689:5;62678:17;;;;;;;;;;;:24;;;;;;;;;;;;62668:34;;62721:2;62725;62729;62733;62737;62713:27;;;;;;;;;;;;;;;62242:506;;;;;;;;;:::o;59994:36::-;;;;:::o;67668:392::-;60948:5;;;;;;;;;;;60934:19;;:10;:19;;;:53;;;;60971:16;;;;;;;;;;;60957:30;;:10;:30;;;60934:53;60926:62;;;;;;67746:16:::1;67765:10;;67746:29;;67814:14;;67805:6;67794:8;:17;;;;:::i;:::-;:34;67786:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;67865:6;67861:160;67881:6;67877:1;:10;67861:160;;;67922:23;67936:8;67922:13;:23::i;:::-;67960:24;67970:3;67975:8;67960:9;:24::i;:::-;67999:10;;;;;:::i;:::-;;;;67889:3;;;;;:::i;:::-;;;;67861:160;;;;68044:8;68031:10;:21;;;;67725:335;67668:392:::0;;:::o;41247:104::-;41303:13;41336:7;41329:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41247:104;:::o;60070:25::-;;;;:::o;63335:249::-;60948:5;;;;;;;;;;;60934:19;;:10;:19;;;:53;;;;60971:16;;;;;;;;;;;60957:30;;:10;:30;;;60934:53;60926:62;;;;;;63494:82:::1;63507:10;;:12;;;;;;;;;:::i;:::-;;;;;63521:6;63529:10;63541:9;63552:11;63565:10;63494:12;:82::i;:::-;63335:249:::0;;;;;:::o;42930:155::-;43025:52;43044:12;:10;:12::i;:::-;43058:8;43068;43025:18;:52::i;:::-;42930:155;;:::o;60143:20::-;;;;;;;;;;;;;:::o;44053:328::-;44228:41;44247:12;:10;:12::i;:::-;44261:7;44228:18;:41::i;:::-;44220:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;44334:39;44348:4;44354:2;44358:7;44367:5;44334:13;:39::i;:::-;44053:328;;;;:::o;67402:260::-;67467:13;67501:16;67509:7;67501;:16::i;:::-;67493:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;67580:17;67600:11;;;;;;;;;;;:24;;;67625:7;67600:33;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67580:53;;67651:3;67644:10;;;67402:260;;;:::o;59953:34::-;;;;;;;;;;;;;:::o;62902:121::-;62958:13;62990:6;:15;62997:7;62990:15;;;;;;;;;;;:25;;62983:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62902:121;;;:::o;68735:127::-;60948:5;;;;;;;;;;;60934:19;;:10;:19;;;:53;;;;60971:16;;;;;;;;;;;60957:30;;:10;:30;;;60934:53;60926:62;;;;;;68846:8:::1;68819:6;:16;68826:8;68819:16;;;;;;;;;;;:24;;:35;;;;68735:127:::0;;:::o;43156:164::-;43253:4;43277:18;:25;43296:5;43277:25;;;;;;;;;;;;;;;:35;43303:8;43277:35;;;;;;;;;;;;;;;;;;;;;;;;;43270:42;;43156:164;;;;:::o;68066:92::-;60948:5;;;;;;;;;;;60934:19;;:10;:19;;;:53;;;;60971:16;;;;;;;;;;;60957:30;;:10;:30;;;60934:53;60926:62;;;;;;68136:14:::1;;;;;;;;;;;68135:15;68118:14;;:32;;;;;;;;;;;;;;;;;;68066:92::o:0;68578:151::-;60948:5;;;;;;;;;;;60934:19;;:10;:19;;;:53;;;;60971:16;;;;;;;;;;;60957:30;;:10;:30;;;60934:53;60926:62;;;;;;68674:5:::1;;;;;;;;;;;68660:19;;:10;:19;;;68652:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;68712:9;68704:5;;:17;;;;;;;;;;;;;;;;;;68578:151:::0;:::o;40133:305::-;40235:4;40287:25;40272:40;;;:11;:40;;;;:105;;;;40344:33;40329:48;;;:11;:48;;;;40272:105;:158;;;;40394:36;40418:11;40394:23;:36::i;:::-;40272:158;40252:178;;40133:305;;;:::o;45891:127::-;45956:4;46008:1;45980:30;;:7;:16;45988:7;45980:16;;;;;;;;;;;;;;;;;;;;;:30;;;;45973:37;;45891:127;;;:::o;5876:98::-;5929:7;5956:10;5949:17;;5876:98;:::o;49873:174::-;49975:2;49948:15;:24;49964:7;49948:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;50031:7;50027:2;49993:46;;50002:23;50017:7;50002:14;:23::i;:::-;49993:46;;;;;;;;;;;;49873:174;;:::o;46185:348::-;46278:4;46303:16;46311:7;46303;:16::i;:::-;46295:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46379:13;46395:23;46410:7;46395:14;:23::i;:::-;46379:39;;46448:5;46437:16;;:7;:16;;;:51;;;;46481:7;46457:31;;:20;46469:7;46457:11;:20::i;:::-;:31;;;46437:51;:87;;;;46492:32;46509:5;46516:7;46492:16;:32::i;:::-;46437:87;46429:96;;;46185:348;;;;:::o;49177:578::-;49336:4;49309:31;;:23;49324:7;49309:14;:23::i;:::-;:31;;;49301:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;49419:1;49405:16;;:2;:16;;;;49397:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;49475:39;49496:4;49502:2;49506:7;49475:20;:39::i;:::-;49579:29;49596:1;49600:7;49579:8;:29::i;:::-;49640:1;49621:9;:15;49631:4;49621:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;49669:1;49652:9;:13;49662:2;49652:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;49700:2;49681:7;:16;49689:7;49681:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;49739:7;49735:2;49720:27;;49729:4;49720:27;;;;;;;;;;;;49177:578;;;:::o;64693:349::-;64787:20;64837:9;64849:16;64837:28;;64833:145;64871:1;64867;:5;64833:145;;;64893:10;64915:1;64913;:3;;;;:::i;:::-;64906;:11;;;;:::i;:::-;64893:24;;64964:2;64948:9;64960:1;64958;:3;;;;:::i;:::-;64948:14;;;;;;;:::i;:::-;;;;;;:18;;64932:34;;;;64878:100;64874:3;;;;;:::i;:::-;;;;64833:145;;;;65022:12;64988:6;:16;64995:8;64988:16;;;;;;;;;;;:31;;:46;;;;64776:266;64693:349;;:::o;64370:317::-;64427:14;64469:25;64485:8;64469:15;:25::i;:::-;64495:15;64512:16;64452:77;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64444:86;;;:::i;:::-;64427:103;;64541:37;64581:15;;;;;;;;;;;:30;;;64612:6;64581:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64541:78;;64630:49;64649:8;64659:19;64630:18;:49::i;:::-;64416:271;;64370:317;:::o;46875:110::-;46951:26;46961:2;46965:7;46951:26;;;;;;;;;;;;:9;:26::i;:::-;46875:110;;:::o;50189:315::-;50344:8;50335:17;;:5;:17;;;;50327:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;50431:8;50393:18;:25;50412:5;50393:25;;;;;;;;;;;;;;;:35;50419:8;50393:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;50477:8;50455:41;;50470:5;50455:41;;;50487:8;50455:41;;;;;;:::i;:::-;;;;;;;;50189:315;;;:::o;45263:::-;45420:28;45430:4;45436:2;45440:7;45420:9;:28::i;:::-;45467:48;45490:4;45496:2;45500:7;45509:5;45467:22;:48::i;:::-;45459:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;45263:315;;;;:::o;31593:157::-;31678:4;31717:25;31702:40;;;:11;:40;;;;31695:47;;31593:157;;;:::o;55319:589::-;55463:45;55490:4;55496:2;55500:7;55463:26;:45::i;:::-;55541:1;55525:18;;:4;:18;;;55521:187;;;55560:40;55592:7;55560:31;:40::i;:::-;55521:187;;;55630:2;55622:10;;:4;:10;;;55618:90;;55649:47;55682:4;55688:7;55649:32;:47::i;:::-;55618:90;55521:187;55736:1;55722:16;;:2;:16;;;55718:183;;;55755:45;55792:7;55755:36;:45::i;:::-;55718:183;;;55828:4;55822:10;;:2;:10;;;55818:83;;55849:40;55877:2;55881:7;55849:27;:40::i;:::-;55818:83;55718:183;55319:589;;;:::o;85270:573::-;85320:27;85370:1;85364:2;:7;85360:50;;;85388:10;;;;;;;;;;;;;;;;;;;;;85360:50;85420:6;85429:2;85420:11;;85442:8;85461:69;85473:1;85468;:6;85461:69;;85491:5;;;;;:::i;:::-;;;;85516:2;85511:7;;;;;:::i;:::-;;;85461:69;;;85540:17;85570:3;85560:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85540:34;;85585:6;85594:3;85585:12;;85608:198;85621:1;85615:2;:7;85608:198;;85645:1;85643;:3;;;;:::i;:::-;85639:7;;85661:10;85701:2;85696;85691;:7;;;;:::i;:::-;:12;;;;:::i;:::-;85686:2;:17;;;;:::i;:::-;85675:2;:29;;;;:::i;:::-;85661:44;;85720:9;85739:4;85732:12;;85720:24;;85769:2;85759:4;85764:1;85759:7;;;;;;;;:::i;:::-;;;;;:12;;;;;;;;;;;85792:2;85786:8;;;;;:::i;:::-;;;85624:182;;85608:198;;;85830:4;85816:19;;;;;;85270:573;;;;:::o;47212:321::-;47342:18;47348:2;47352:7;47342:5;:18::i;:::-;47393:54;47424:1;47428:2;47432:7;47441:5;47393:22;:54::i;:::-;47371:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;47212:321;;;:::o;51069:799::-;51224:4;51245:15;:2;:13;;;:15::i;:::-;51241:620;;;51297:2;51281:36;;;51318:12;:10;:12::i;:::-;51332:4;51338:7;51347:5;51281:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51277:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51540:1;51523:6;:13;:18;51519:272;;;51566:60;;;;;;;;;;:::i;:::-;;;;;;;;51519:272;51741:6;51735:13;51726:6;51722:2;51718:15;51711:38;51277:529;51414:41;;;51404:51;;;:6;:51;;;;51397:58;;;;;51241:620;51845:4;51838:11;;51069:799;;;;;;;:::o;52440:126::-;;;;:::o;56631:164::-;56735:10;:17;;;;56708:15;:24;56724:7;56708:24;;;;;;;;;;;:44;;;;56763:10;56779:7;56763:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56631:164;:::o;57422:988::-;57688:22;57738:1;57713:22;57730:4;57713:16;:22::i;:::-;:26;;;;:::i;:::-;57688:51;;57750:18;57771:17;:26;57789:7;57771:26;;;;;;;;;;;;57750:47;;57918:14;57904:10;:28;57900:328;;57949:19;57971:12;:18;57984:4;57971:18;;;;;;;;;;;;;;;:34;57990:14;57971:34;;;;;;;;;;;;57949:56;;58055:11;58022:12;:18;58035:4;58022:18;;;;;;;;;;;;;;;:30;58041:10;58022:30;;;;;;;;;;;:44;;;;58172:10;58139:17;:30;58157:11;58139:30;;;;;;;;;;;:43;;;;57934:294;57900:328;58324:17;:26;58342:7;58324:26;;;;;;;;;;;58317:33;;;58368:12;:18;58381:4;58368:18;;;;;;;;;;;;;;;:34;58387:14;58368:34;;;;;;;;;;;58361:41;;;57503:907;;57422:988;;:::o;58705:1079::-;58958:22;59003:1;58983:10;:17;;;;:21;;;;:::i;:::-;58958:46;;59015:18;59036:15;:24;59052:7;59036:24;;;;;;;;;;;;59015:45;;59387:19;59409:10;59420:14;59409:26;;;;;;;;:::i;:::-;;;;;;;;;;59387:48;;59473:11;59448:10;59459;59448:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;59584:10;59553:15;:28;59569:11;59553:28;;;;;;;;;;;:41;;;;59725:15;:24;59741:7;59725:24;;;;;;;;;;;59718:31;;;59760:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;58776:1008;;;58705:1079;:::o;56209:221::-;56294:14;56311:20;56328:2;56311:16;:20::i;:::-;56294:37;;56369:7;56342:12;:16;56355:2;56342:16;;;;;;;;;;;;;;;:24;56359:6;56342:24;;;;;;;;;;;:34;;;;56416:6;56387:17;:26;56405:7;56387:26;;;;;;;;;;;:35;;;;56283:147;56209:221;;:::o;47869:382::-;47963:1;47949:16;;:2;:16;;;;47941:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48022:16;48030:7;48022;:16::i;:::-;48021:17;48013:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;48084:45;48113:1;48117:2;48121:7;48084:20;:45::i;:::-;48159:1;48142:9;:13;48152:2;48142:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;48190:2;48171:7;:16;48179:7;48171:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;48235:7;48231:2;48210:33;;48227:1;48210:33;;;;;;;;;;;;47869:382;;:::o;9558:387::-;9618:4;9826:12;9893:7;9881:20;9873:28;;9936:1;9929:4;:8;9922:15;;;9558:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;23:957:1:-;129:5;154:91;170:74;237:6;170:74;:::i;:::-;154:91;:::i;:::-;145:100;;265:5;294:6;287:5;280:21;328:4;321:5;317:16;310:23;;354:6;404:3;396:4;388:6;384:17;379:3;375:27;372:36;369:143;;;423:79;;:::i;:::-;369:143;536:1;521:453;546:6;543:1;540:13;521:453;;;628:3;615:17;664:18;651:11;648:35;645:122;;;686:79;;:::i;:::-;645:122;810:11;802:6;798:24;848:47;891:3;879:10;848:47;:::i;:::-;843:3;836:60;925:4;920:3;916:14;909:21;;959:4;954:3;950:14;943:21;;581:393;;568:1;565;561:9;556:14;;521:453;;;525:14;135:845;;23:957;;;;;:::o;1004:677::-;1109:5;1134:79;1150:62;1205:6;1150:62;:::i;:::-;1134:79;:::i;:::-;1125:88;;1233:5;1259:6;1309:3;1301:4;1293:6;1289:17;1284:3;1280:27;1277:36;1274:143;;;1328:79;;:::i;:::-;1274:143;1441:1;1426:249;1451:6;1448:1;1445:13;1426:249;;;1519:3;1548:48;1592:3;1580:10;1548:48;:::i;:::-;1543:3;1536:61;1626:4;1621:3;1617:14;1610:21;;1660:4;1655:3;1651:14;1644:21;;1486:189;1473:1;1470;1466:9;1461:14;;1426:249;;;1430:14;1115:566;;1004:677;;;;;:::o;1704:722::-;1800:5;1825:81;1841:64;1898:6;1841:64;:::i;:::-;1825:81;:::i;:::-;1816:90;;1926:5;1955:6;1948:5;1941:21;1989:4;1982:5;1978:16;1971:23;;2015:6;2065:3;2057:4;2049:6;2045:17;2040:3;2036:27;2033:36;2030:143;;;2084:79;;:::i;:::-;2030:143;2197:1;2182:238;2207:6;2204:1;2201:13;2182:238;;;2275:3;2304:37;2337:3;2325:10;2304:37;:::i;:::-;2299:3;2292:50;2371:4;2366:3;2362:14;2355:21;;2405:4;2400:3;2396:14;2389:21;;2242:178;2229:1;2226;2222:9;2217:14;;2182:238;;;2186:14;1806:620;;1704:722;;;;;:::o;2432:410::-;2509:5;2534:65;2550:48;2591:6;2550:48;:::i;:::-;2534:65;:::i;:::-;2525:74;;2622:6;2615:5;2608:21;2660:4;2653:5;2649:16;2698:3;2689:6;2684:3;2680:16;2677:25;2674:112;;;2705:79;;:::i;:::-;2674:112;2795:41;2829:6;2824:3;2819;2795:41;:::i;:::-;2515:327;2432:410;;;;;:::o;2848:412::-;2926:5;2951:66;2967:49;3009:6;2967:49;:::i;:::-;2951:66;:::i;:::-;2942:75;;3040:6;3033:5;3026:21;3078:4;3071:5;3067:16;3116:3;3107:6;3102:3;3098:16;3095:25;3092:112;;;3123:79;;:::i;:::-;3092:112;3213:41;3247:6;3242:3;3237;3213:41;:::i;:::-;2932:328;2848:412;;;;;:::o;3266:421::-;3355:5;3380:66;3396:49;3438:6;3396:49;:::i;:::-;3380:66;:::i;:::-;3371:75;;3469:6;3462:5;3455:21;3507:4;3500:5;3496:16;3545:3;3536:6;3531:3;3527:16;3524:25;3521:112;;;3552:79;;:::i;:::-;3521:112;3642:39;3674:6;3669:3;3664;3642:39;:::i;:::-;3361:326;3266:421;;;;;:::o;3693:139::-;3739:5;3777:6;3764:20;3755:29;;3793:33;3820:5;3793:33;:::i;:::-;3693:139;;;;:::o;3854:390::-;3935:5;3984:3;3977:4;3969:6;3965:17;3961:27;3951:122;;3992:79;;:::i;:::-;3951:122;4109:6;4096:20;4134:104;4234:3;4226:6;4219:4;4211:6;4207:17;4134:104;:::i;:::-;4125:113;;3941:303;3854:390;;;;:::o;4268:361::-;4348:5;4397:3;4390:4;4382:6;4378:17;4374:27;4364:122;;4405:79;;:::i;:::-;4364:122;4509:4;4531:92;4619:3;4611:6;4603;4531:92;:::i;:::-;4522:101;;4354:275;4268:361;;;;:::o;4652:370::-;4723:5;4772:3;4765:4;4757:6;4753:17;4749:27;4739:122;;4780:79;;:::i;:::-;4739:122;4897:6;4884:20;4922:94;5012:3;5004:6;4997:4;4989:6;4985:17;4922:94;:::i;:::-;4913:103;;4729:293;4652:370;;;;:::o;5028:133::-;5071:5;5109:6;5096:20;5087:29;;5125:30;5149:5;5125:30;:::i;:::-;5028:133;;;;:::o;5167:137::-;5212:5;5250:6;5237:20;5228:29;;5266:32;5292:5;5266:32;:::i;:::-;5167:137;;;;:::o;5310:141::-;5366:5;5397:6;5391:13;5382:22;;5413:32;5439:5;5413:32;:::i;:::-;5310:141;;;;:::o;5470:338::-;5525:5;5574:3;5567:4;5559:6;5555:17;5551:27;5541:122;;5582:79;;:::i;:::-;5541:122;5699:6;5686:20;5724:78;5798:3;5790:6;5783:4;5775:6;5771:17;5724:78;:::i;:::-;5715:87;;5531:277;5470:338;;;;:::o;5828:340::-;5884:5;5933:3;5926:4;5918:6;5914:17;5910:27;5900:122;;5941:79;;:::i;:::-;5900:122;6058:6;6045:20;6083:79;6158:3;6150:6;6143:4;6135:6;6131:17;6083:79;:::i;:::-;6074:88;;5890:278;5828:340;;;;:::o;6188:355::-;6255:5;6304:3;6297:4;6289:6;6285:17;6281:27;6271:122;;6312:79;;:::i;:::-;6271:122;6422:6;6416:13;6447:90;6533:3;6525:6;6518:4;6510:6;6506:17;6447:90;:::i;:::-;6438:99;;6261:282;6188:355;;;;:::o;6549:139::-;6595:5;6633:6;6620:20;6611:29;;6649:33;6676:5;6649:33;:::i;:::-;6549:139;;;;:::o;6694:143::-;6751:5;6782:6;6776:13;6767:22;;6798:33;6825:5;6798:33;:::i;:::-;6694:143;;;;:::o;6843:329::-;6902:6;6951:2;6939:9;6930:7;6926:23;6922:32;6919:119;;;6957:79;;:::i;:::-;6919:119;7077:1;7102:53;7147:7;7138:6;7127:9;7123:22;7102:53;:::i;:::-;7092:63;;7048:117;6843:329;;;;:::o;7178:474::-;7246:6;7254;7303:2;7291:9;7282:7;7278:23;7274:32;7271:119;;;7309:79;;:::i;:::-;7271:119;7429:1;7454:53;7499:7;7490:6;7479:9;7475:22;7454:53;:::i;:::-;7444:63;;7400:117;7556:2;7582:53;7627:7;7618:6;7607:9;7603:22;7582:53;:::i;:::-;7572:63;;7527:118;7178:474;;;;;:::o;7658:619::-;7735:6;7743;7751;7800:2;7788:9;7779:7;7775:23;7771:32;7768:119;;;7806:79;;:::i;:::-;7768:119;7926:1;7951:53;7996:7;7987:6;7976:9;7972:22;7951:53;:::i;:::-;7941:63;;7897:117;8053:2;8079:53;8124:7;8115:6;8104:9;8100:22;8079:53;:::i;:::-;8069:63;;8024:118;8181:2;8207:53;8252:7;8243:6;8232:9;8228:22;8207:53;:::i;:::-;8197:63;;8152:118;7658:619;;;;;:::o;8283:943::-;8378:6;8386;8394;8402;8451:3;8439:9;8430:7;8426:23;8422:33;8419:120;;;8458:79;;:::i;:::-;8419:120;8578:1;8603:53;8648:7;8639:6;8628:9;8624:22;8603:53;:::i;:::-;8593:63;;8549:117;8705:2;8731:53;8776:7;8767:6;8756:9;8752:22;8731:53;:::i;:::-;8721:63;;8676:118;8833:2;8859:53;8904:7;8895:6;8884:9;8880:22;8859:53;:::i;:::-;8849:63;;8804:118;8989:2;8978:9;8974:18;8961:32;9020:18;9012:6;9009:30;9006:117;;;9042:79;;:::i;:::-;9006:117;9147:62;9201:7;9192:6;9181:9;9177:22;9147:62;:::i;:::-;9137:72;;8932:287;8283:943;;;;;;;:::o;9232:468::-;9297:6;9305;9354:2;9342:9;9333:7;9329:23;9325:32;9322:119;;;9360:79;;:::i;:::-;9322:119;9480:1;9505:53;9550:7;9541:6;9530:9;9526:22;9505:53;:::i;:::-;9495:63;;9451:117;9607:2;9633:50;9675:7;9666:6;9655:9;9651:22;9633:50;:::i;:::-;9623:60;;9578:115;9232:468;;;;;:::o;9706:474::-;9774:6;9782;9831:2;9819:9;9810:7;9806:23;9802:32;9799:119;;;9837:79;;:::i;:::-;9799:119;9957:1;9982:53;10027:7;10018:6;10007:9;10003:22;9982:53;:::i;:::-;9972:63;;9928:117;10084:2;10110:53;10155:7;10146:6;10135:9;10131:22;10110:53;:::i;:::-;10100:63;;10055:118;9706:474;;;;;:::o;10186:398::-;10279:6;10328:3;10316:9;10307:7;10303:23;10299:33;10296:120;;;10335:79;;:::i;:::-;10296:120;10455:1;10480:87;10559:7;10550:6;10539:9;10535:22;10480:87;:::i;:::-;10470:97;;10426:151;10186:398;;;;:::o;10590:1489::-;10734:6;10742;10750;10758;10766;10815:3;10803:9;10794:7;10790:23;10786:33;10783:120;;;10822:79;;:::i;:::-;10783:120;10942:1;10967:50;11009:7;11000:6;10989:9;10985:22;10967:50;:::i;:::-;10957:60;;10913:114;11094:2;11083:9;11079:18;11066:32;11125:18;11117:6;11114:30;11111:117;;;11147:79;;:::i;:::-;11111:117;11252:63;11307:7;11298:6;11287:9;11283:22;11252:63;:::i;:::-;11242:73;;11037:288;11392:2;11381:9;11377:18;11364:32;11423:18;11415:6;11412:30;11409:117;;;11445:79;;:::i;:::-;11409:117;11550:63;11605:7;11596:6;11585:9;11581:22;11550:63;:::i;:::-;11540:73;;11335:288;11690:2;11679:9;11675:18;11662:32;11721:18;11713:6;11710:30;11707:117;;;11743:79;;:::i;:::-;11707:117;11848:88;11928:7;11919:6;11908:9;11904:22;11848:88;:::i;:::-;11838:98;;11633:313;11985:3;12012:50;12054:7;12045:6;12034:9;12030:22;12012:50;:::i;:::-;12002:60;;11956:116;10590:1489;;;;;;;;:::o;12085:327::-;12143:6;12192:2;12180:9;12171:7;12167:23;12163:32;12160:119;;;12198:79;;:::i;:::-;12160:119;12318:1;12343:52;12387:7;12378:6;12367:9;12363:22;12343:52;:::i;:::-;12333:62;;12289:116;12085:327;;;;:::o;12418:349::-;12487:6;12536:2;12524:9;12515:7;12511:23;12507:32;12504:119;;;12542:79;;:::i;:::-;12504:119;12662:1;12687:63;12742:7;12733:6;12722:9;12718:22;12687:63;:::i;:::-;12677:73;;12633:127;12418:349;;;;:::o;12773:524::-;12853:6;12902:2;12890:9;12881:7;12877:23;12873:32;12870:119;;;12908:79;;:::i;:::-;12870:119;13049:1;13038:9;13034:17;13028:24;13079:18;13071:6;13068:30;13065:117;;;13101:79;;:::i;:::-;13065:117;13206:74;13272:7;13263:6;13252:9;13248:22;13206:74;:::i;:::-;13196:84;;12999:291;12773:524;;;;:::o;13303:329::-;13362:6;13411:2;13399:9;13390:7;13386:23;13382:32;13379:119;;;13417:79;;:::i;:::-;13379:119;13537:1;13562:53;13607:7;13598:6;13587:9;13583:22;13562:53;:::i;:::-;13552:63;;13508:117;13303:329;;;;:::o;13638:474::-;13706:6;13714;13763:2;13751:9;13742:7;13738:23;13734:32;13731:119;;;13769:79;;:::i;:::-;13731:119;13889:1;13914:53;13959:7;13950:6;13939:9;13935:22;13914:53;:::i;:::-;13904:63;;13860:117;14016:2;14042:53;14087:7;14078:6;14067:9;14063:22;14042:53;:::i;:::-;14032:63;;13987:118;13638:474;;;;;:::o;14118:911::-;14213:6;14221;14229;14237;14245;14294:3;14282:9;14273:7;14269:23;14265:33;14262:120;;;14301:79;;:::i;:::-;14262:120;14421:1;14446:53;14491:7;14482:6;14471:9;14467:22;14446:53;:::i;:::-;14436:63;;14392:117;14548:2;14574:53;14619:7;14610:6;14599:9;14595:22;14574:53;:::i;:::-;14564:63;;14519:118;14676:2;14702:53;14747:7;14738:6;14727:9;14723:22;14702:53;:::i;:::-;14692:63;;14647:118;14804:2;14830:53;14875:7;14866:6;14855:9;14851:22;14830:53;:::i;:::-;14820:63;;14775:118;14932:3;14959:53;15004:7;14995:6;14984:9;14980:22;14959:53;:::i;:::-;14949:63;;14903:119;14118:911;;;;;;;;:::o;15035:704::-;15138:6;15146;15195:2;15183:9;15174:7;15170:23;15166:32;15163:119;;;15201:79;;:::i;:::-;15163:119;15321:1;15346:53;15391:7;15382:6;15371:9;15367:22;15346:53;:::i;:::-;15336:63;;15292:117;15476:2;15465:9;15461:18;15448:32;15507:18;15499:6;15496:30;15493:117;;;15529:79;;:::i;:::-;15493:117;15634:88;15714:7;15705:6;15694:9;15690:22;15634:88;:::i;:::-;15624:98;;15419:313;15035:704;;;;;:::o;15745:1059::-;15882:6;15890;15898;15947:2;15935:9;15926:7;15922:23;15918:32;15915:119;;;15953:79;;:::i;:::-;15915:119;16073:1;16098:53;16143:7;16134:6;16123:9;16119:22;16098:53;:::i;:::-;16088:63;;16044:117;16228:2;16217:9;16213:18;16200:32;16259:18;16251:6;16248:30;16245:117;;;16281:79;;:::i;:::-;16245:117;16386:78;16456:7;16447:6;16436:9;16432:22;16386:78;:::i;:::-;16376:88;;16171:303;16541:2;16530:9;16526:18;16513:32;16572:18;16564:6;16561:30;16558:117;;;16594:79;;:::i;:::-;16558:117;16699:88;16779:7;16770:6;16759:9;16755:22;16699:88;:::i;:::-;16689:98;;16484:313;15745:1059;;;;;:::o;16810:1635::-;16963:6;16971;16979;16987;16995;17003;17052:3;17040:9;17031:7;17027:23;17023:33;17020:120;;;17059:79;;:::i;:::-;17020:120;17179:1;17204:53;17249:7;17240:6;17229:9;17225:22;17204:53;:::i;:::-;17194:63;;17150:117;17306:2;17332:50;17374:7;17365:6;17354:9;17350:22;17332:50;:::i;:::-;17322:60;;17277:115;17459:2;17448:9;17444:18;17431:32;17490:18;17482:6;17479:30;17476:117;;;17512:79;;:::i;:::-;17476:117;17617:63;17672:7;17663:6;17652:9;17648:22;17617:63;:::i;:::-;17607:73;;17402:288;17757:2;17746:9;17742:18;17729:32;17788:18;17780:6;17777:30;17774:117;;;17810:79;;:::i;:::-;17774:117;17915:63;17970:7;17961:6;17950:9;17946:22;17915:63;:::i;:::-;17905:73;;17700:288;18055:3;18044:9;18040:19;18027:33;18087:18;18079:6;18076:30;18073:117;;;18109:79;;:::i;:::-;18073:117;18214:88;18294:7;18285:6;18274:9;18270:22;18214:88;:::i;:::-;18204:98;;17998:314;18351:3;18378:50;18420:7;18411:6;18400:9;18396:22;18378:50;:::i;:::-;18368:60;;18322:116;16810:1635;;;;;;;;:::o;18451:654::-;18529:6;18537;18586:2;18574:9;18565:7;18561:23;18557:32;18554:119;;;18592:79;;:::i;:::-;18554:119;18712:1;18737:53;18782:7;18773:6;18762:9;18758:22;18737:53;:::i;:::-;18727:63;;18683:117;18867:2;18856:9;18852:18;18839:32;18898:18;18890:6;18887:30;18884:117;;;18920:79;;:::i;:::-;18884:117;19025:63;19080:7;19071:6;19060:9;19056:22;19025:63;:::i;:::-;19015:73;;18810:288;18451:654;;;;;:::o;19111:474::-;19179:6;19187;19236:2;19224:9;19215:7;19211:23;19207:32;19204:119;;;19242:79;;:::i;:::-;19204:119;19362:1;19387:53;19432:7;19423:6;19412:9;19408:22;19387:53;:::i;:::-;19377:63;;19333:117;19489:2;19515:53;19560:7;19551:6;19540:9;19536:22;19515:53;:::i;:::-;19505:63;;19460:118;19111:474;;;;;:::o;19591:619::-;19668:6;19676;19684;19733:2;19721:9;19712:7;19708:23;19704:32;19701:119;;;19739:79;;:::i;:::-;19701:119;19859:1;19884:53;19929:7;19920:6;19909:9;19905:22;19884:53;:::i;:::-;19874:63;;19830:117;19986:2;20012:53;20057:7;20048:6;20037:9;20033:22;20012:53;:::i;:::-;20002:63;;19957:118;20114:2;20140:53;20185:7;20176:6;20165:9;20161:22;20140:53;:::i;:::-;20130:63;;20085:118;19591:619;;;;;:::o;20216:179::-;20285:10;20306:46;20348:3;20340:6;20306:46;:::i;:::-;20384:4;20379:3;20375:14;20361:28;;20216:179;;;;:::o;20401:118::-;20488:24;20506:5;20488:24;:::i;:::-;20483:3;20476:37;20401:118;;:::o;20557:694::-;20693:52;20739:5;20693:52;:::i;:::-;20761:84;20838:6;20833:3;20761:84;:::i;:::-;20754:91;;20869:54;20917:5;20869:54;:::i;:::-;20946:7;20977:1;20962:282;20987:6;20984:1;20981:13;20962:282;;;21063:6;21057:13;21090:63;21149:3;21134:13;21090:63;:::i;:::-;21083:70;;21176:58;21227:6;21176:58;:::i;:::-;21166:68;;21022:222;21009:1;21006;21002:9;20997:14;;20962:282;;;20966:14;20669:582;;;20557:694;;:::o;21257:109::-;21338:21;21353:5;21338:21;:::i;:::-;21333:3;21326:34;21257:109;;:::o;21372:118::-;21459:24;21477:5;21459:24;:::i;:::-;21454:3;21447:37;21372:118;;:::o;21496:360::-;21582:3;21610:38;21642:5;21610:38;:::i;:::-;21664:70;21727:6;21722:3;21664:70;:::i;:::-;21657:77;;21743:52;21788:6;21783:3;21776:4;21769:5;21765:16;21743:52;:::i;:::-;21820:29;21842:6;21820:29;:::i;:::-;21815:3;21811:39;21804:46;;21586:270;21496:360;;;;:::o;21862:364::-;21950:3;21978:39;22011:5;21978:39;:::i;:::-;22033:71;22097:6;22092:3;22033:71;:::i;:::-;22026:78;;22113:52;22158:6;22153:3;22146:4;22139:5;22135:16;22113:52;:::i;:::-;22190:29;22212:6;22190:29;:::i;:::-;22185:3;22181:39;22174:46;;21954:272;21862:364;;;;:::o;22232:377::-;22338:3;22366:39;22399:5;22366:39;:::i;:::-;22421:89;22503:6;22498:3;22421:89;:::i;:::-;22414:96;;22519:52;22564:6;22559:3;22552:4;22545:5;22541:16;22519:52;:::i;:::-;22596:6;22591:3;22587:16;22580:23;;22342:267;22232:377;;;;:::o;22615:366::-;22757:3;22778:67;22842:2;22837:3;22778:67;:::i;:::-;22771:74;;22854:93;22943:3;22854:93;:::i;:::-;22972:2;22967:3;22963:12;22956:19;;22615:366;;;:::o;22987:::-;23129:3;23150:67;23214:2;23209:3;23150:67;:::i;:::-;23143:74;;23226:93;23315:3;23226:93;:::i;:::-;23344:2;23339:3;23335:12;23328:19;;22987:366;;;:::o;23359:::-;23501:3;23522:67;23586:2;23581:3;23522:67;:::i;:::-;23515:74;;23598:93;23687:3;23598:93;:::i;:::-;23716:2;23711:3;23707:12;23700:19;;23359:366;;;:::o;23731:::-;23873:3;23894:67;23958:2;23953:3;23894:67;:::i;:::-;23887:74;;23970:93;24059:3;23970:93;:::i;:::-;24088:2;24083:3;24079:12;24072:19;;23731:366;;;:::o;24103:::-;24245:3;24266:67;24330:2;24325:3;24266:67;:::i;:::-;24259:74;;24342:93;24431:3;24342:93;:::i;:::-;24460:2;24455:3;24451:12;24444:19;;24103:366;;;:::o;24475:::-;24617:3;24638:67;24702:2;24697:3;24638:67;:::i;:::-;24631:74;;24714:93;24803:3;24714:93;:::i;:::-;24832:2;24827:3;24823:12;24816:19;;24475:366;;;:::o;24847:::-;24989:3;25010:67;25074:2;25069:3;25010:67;:::i;:::-;25003:74;;25086:93;25175:3;25086:93;:::i;:::-;25204:2;25199:3;25195:12;25188:19;;24847:366;;;:::o;25219:::-;25361:3;25382:67;25446:2;25441:3;25382:67;:::i;:::-;25375:74;;25458:93;25547:3;25458:93;:::i;:::-;25576:2;25571:3;25567:12;25560:19;;25219:366;;;:::o;25591:::-;25733:3;25754:67;25818:2;25813:3;25754:67;:::i;:::-;25747:74;;25830:93;25919:3;25830:93;:::i;:::-;25948:2;25943:3;25939:12;25932:19;;25591:366;;;:::o;25963:::-;26105:3;26126:67;26190:2;26185:3;26126:67;:::i;:::-;26119:74;;26202:93;26291:3;26202:93;:::i;:::-;26320:2;26315:3;26311:12;26304:19;;25963:366;;;:::o;26335:::-;26477:3;26498:67;26562:2;26557:3;26498:67;:::i;:::-;26491:74;;26574:93;26663:3;26574:93;:::i;:::-;26692:2;26687:3;26683:12;26676:19;;26335:366;;;:::o;26707:::-;26849:3;26870:67;26934:2;26929:3;26870:67;:::i;:::-;26863:74;;26946:93;27035:3;26946:93;:::i;:::-;27064:2;27059:3;27055:12;27048:19;;26707:366;;;:::o;27079:::-;27221:3;27242:67;27306:2;27301:3;27242:67;:::i;:::-;27235:74;;27318:93;27407:3;27318:93;:::i;:::-;27436:2;27431:3;27427:12;27420:19;;27079:366;;;:::o;27451:::-;27593:3;27614:67;27678:2;27673:3;27614:67;:::i;:::-;27607:74;;27690:93;27779:3;27690:93;:::i;:::-;27808:2;27803:3;27799:12;27792:19;;27451:366;;;:::o;27823:::-;27965:3;27986:67;28050:2;28045:3;27986:67;:::i;:::-;27979:74;;28062:93;28151:3;28062:93;:::i;:::-;28180:2;28175:3;28171:12;28164:19;;27823:366;;;:::o;28195:::-;28337:3;28358:67;28422:2;28417:3;28358:67;:::i;:::-;28351:74;;28434:93;28523:3;28434:93;:::i;:::-;28552:2;28547:3;28543:12;28536:19;;28195:366;;;:::o;28567:365::-;28709:3;28730:66;28794:1;28789:3;28730:66;:::i;:::-;28723:73;;28805:93;28894:3;28805:93;:::i;:::-;28923:2;28918:3;28914:12;28907:19;;28567:365;;;:::o;28938:366::-;29080:3;29101:67;29165:2;29160:3;29101:67;:::i;:::-;29094:74;;29177:93;29266:3;29177:93;:::i;:::-;29295:2;29290:3;29286:12;29279:19;;28938:366;;;:::o;29310:::-;29452:3;29473:67;29537:2;29532:3;29473:67;:::i;:::-;29466:74;;29549:93;29638:3;29549:93;:::i;:::-;29667:2;29662:3;29658:12;29651:19;;29310:366;;;:::o;29682:::-;29824:3;29845:67;29909:2;29904:3;29845:67;:::i;:::-;29838:74;;29921:93;30010:3;29921:93;:::i;:::-;30039:2;30034:3;30030:12;30023:19;;29682:366;;;:::o;30054:::-;30196:3;30217:67;30281:2;30276:3;30217:67;:::i;:::-;30210:74;;30293:93;30382:3;30293:93;:::i;:::-;30411:2;30406:3;30402:12;30395:19;;30054:366;;;:::o;30426:108::-;30503:24;30521:5;30503:24;:::i;:::-;30498:3;30491:37;30426:108;;:::o;30540:118::-;30627:24;30645:5;30627:24;:::i;:::-;30622:3;30615:37;30540:118;;:::o;30664:157::-;30769:45;30789:24;30807:5;30789:24;:::i;:::-;30769:45;:::i;:::-;30764:3;30757:58;30664:157;;:::o;30827:557::-;31015:3;31037:95;31128:3;31119:6;31037:95;:::i;:::-;31030:102;;31142:75;31213:3;31204:6;31142:75;:::i;:::-;31242:2;31237:3;31233:12;31226:19;;31255:75;31326:3;31317:6;31255:75;:::i;:::-;31355:2;31350:3;31346:12;31339:19;;31375:3;31368:10;;30827:557;;;;;;:::o;31390:222::-;31483:4;31521:2;31510:9;31506:18;31498:26;;31534:71;31602:1;31591:9;31587:17;31578:6;31534:71;:::i;:::-;31390:222;;;;:::o;31618:640::-;31813:4;31851:3;31840:9;31836:19;31828:27;;31865:71;31933:1;31922:9;31918:17;31909:6;31865:71;:::i;:::-;31946:72;32014:2;32003:9;31999:18;31990:6;31946:72;:::i;:::-;32028;32096:2;32085:9;32081:18;32072:6;32028:72;:::i;:::-;32147:9;32141:4;32137:20;32132:2;32121:9;32117:18;32110:48;32175:76;32246:4;32237:6;32175:76;:::i;:::-;32167:84;;31618:640;;;;;;;:::o;32264:315::-;32403:4;32441:3;32430:9;32426:19;32418:27;;32455:117;32569:1;32558:9;32554:17;32545:6;32455:117;:::i;:::-;32264:315;;;;:::o;32585:210::-;32672:4;32710:2;32699:9;32695:18;32687:26;;32723:65;32785:1;32774:9;32770:17;32761:6;32723:65;:::i;:::-;32585:210;;;;:::o;32801:222::-;32894:4;32932:2;32921:9;32917:18;32909:26;;32945:71;33013:1;33002:9;32998:17;32989:6;32945:71;:::i;:::-;32801:222;;;;:::o;33029:313::-;33142:4;33180:2;33169:9;33165:18;33157:26;;33229:9;33223:4;33219:20;33215:1;33204:9;33200:17;33193:47;33257:78;33330:4;33321:6;33257:78;:::i;:::-;33249:86;;33029:313;;;;:::o;33348:711::-;33553:4;33591:3;33580:9;33576:19;33568:27;;33641:9;33635:4;33631:20;33627:1;33616:9;33612:17;33605:47;33669:78;33742:4;33733:6;33669:78;:::i;:::-;33661:86;;33794:9;33788:4;33784:20;33779:2;33768:9;33764:18;33757:48;33822:78;33895:4;33886:6;33822:78;:::i;:::-;33814:86;;33910:66;33972:2;33961:9;33957:18;33948:6;33910:66;:::i;:::-;33986;34048:2;34037:9;34033:18;34024:6;33986:66;:::i;:::-;33348:711;;;;;;;:::o;34065:1016::-;34344:4;34382:3;34371:9;34367:19;34359:27;;34432:9;34426:4;34422:20;34418:1;34407:9;34403:17;34396:47;34460:78;34533:4;34524:6;34460:78;:::i;:::-;34452:86;;34585:9;34579:4;34575:20;34570:2;34559:9;34555:18;34548:48;34613:78;34686:4;34677:6;34613:78;:::i;:::-;34605:86;;34738:9;34732:4;34728:20;34723:2;34712:9;34708:18;34701:48;34766:78;34839:4;34830:6;34766:78;:::i;:::-;34758:86;;34891:9;34885:4;34881:20;34876:2;34865:9;34861:18;34854:48;34919:78;34992:4;34983:6;34919:78;:::i;:::-;34911:86;;35007:67;35069:3;35058:9;35054:19;35045:6;35007:67;:::i;:::-;34065:1016;;;;;;;;:::o;35087:419::-;35253:4;35291:2;35280:9;35276:18;35268:26;;35340:9;35334:4;35330:20;35326:1;35315:9;35311:17;35304:47;35368:131;35494:4;35368:131;:::i;:::-;35360:139;;35087:419;;;:::o;35512:::-;35678:4;35716:2;35705:9;35701:18;35693:26;;35765:9;35759:4;35755:20;35751:1;35740:9;35736:17;35729:47;35793:131;35919:4;35793:131;:::i;:::-;35785:139;;35512:419;;;:::o;35937:::-;36103:4;36141:2;36130:9;36126:18;36118:26;;36190:9;36184:4;36180:20;36176:1;36165:9;36161:17;36154:47;36218:131;36344:4;36218:131;:::i;:::-;36210:139;;35937:419;;;:::o;36362:::-;36528:4;36566:2;36555:9;36551:18;36543:26;;36615:9;36609:4;36605:20;36601:1;36590:9;36586:17;36579:47;36643:131;36769:4;36643:131;:::i;:::-;36635:139;;36362:419;;;:::o;36787:::-;36953:4;36991:2;36980:9;36976:18;36968:26;;37040:9;37034:4;37030:20;37026:1;37015:9;37011:17;37004:47;37068:131;37194:4;37068:131;:::i;:::-;37060:139;;36787:419;;;:::o;37212:::-;37378:4;37416:2;37405:9;37401:18;37393:26;;37465:9;37459:4;37455:20;37451:1;37440:9;37436:17;37429:47;37493:131;37619:4;37493:131;:::i;:::-;37485:139;;37212:419;;;:::o;37637:::-;37803:4;37841:2;37830:9;37826:18;37818:26;;37890:9;37884:4;37880:20;37876:1;37865:9;37861:17;37854:47;37918:131;38044:4;37918:131;:::i;:::-;37910:139;;37637:419;;;:::o;38062:::-;38228:4;38266:2;38255:9;38251:18;38243:26;;38315:9;38309:4;38305:20;38301:1;38290:9;38286:17;38279:47;38343:131;38469:4;38343:131;:::i;:::-;38335:139;;38062:419;;;:::o;38487:::-;38653:4;38691:2;38680:9;38676:18;38668:26;;38740:9;38734:4;38730:20;38726:1;38715:9;38711:17;38704:47;38768:131;38894:4;38768:131;:::i;:::-;38760:139;;38487:419;;;:::o;38912:::-;39078:4;39116:2;39105:9;39101:18;39093:26;;39165:9;39159:4;39155:20;39151:1;39140:9;39136:17;39129:47;39193:131;39319:4;39193:131;:::i;:::-;39185:139;;38912:419;;;:::o;39337:::-;39503:4;39541:2;39530:9;39526:18;39518:26;;39590:9;39584:4;39580:20;39576:1;39565:9;39561:17;39554:47;39618:131;39744:4;39618:131;:::i;:::-;39610:139;;39337:419;;;:::o;39762:::-;39928:4;39966:2;39955:9;39951:18;39943:26;;40015:9;40009:4;40005:20;40001:1;39990:9;39986:17;39979:47;40043:131;40169:4;40043:131;:::i;:::-;40035:139;;39762:419;;;:::o;40187:::-;40353:4;40391:2;40380:9;40376:18;40368:26;;40440:9;40434:4;40430:20;40426:1;40415:9;40411:17;40404:47;40468:131;40594:4;40468:131;:::i;:::-;40460:139;;40187:419;;;:::o;40612:::-;40778:4;40816:2;40805:9;40801:18;40793:26;;40865:9;40859:4;40855:20;40851:1;40840:9;40836:17;40829:47;40893:131;41019:4;40893:131;:::i;:::-;40885:139;;40612:419;;;:::o;41037:::-;41203:4;41241:2;41230:9;41226:18;41218:26;;41290:9;41284:4;41280:20;41276:1;41265:9;41261:17;41254:47;41318:131;41444:4;41318:131;:::i;:::-;41310:139;;41037:419;;;:::o;41462:::-;41628:4;41666:2;41655:9;41651:18;41643:26;;41715:9;41709:4;41705:20;41701:1;41690:9;41686:17;41679:47;41743:131;41869:4;41743:131;:::i;:::-;41735:139;;41462:419;;;:::o;41887:::-;42053:4;42091:2;42080:9;42076:18;42068:26;;42140:9;42134:4;42130:20;42126:1;42115:9;42111:17;42104:47;42168:131;42294:4;42168:131;:::i;:::-;42160:139;;41887:419;;;:::o;42312:::-;42478:4;42516:2;42505:9;42501:18;42493:26;;42565:9;42559:4;42555:20;42551:1;42540:9;42536:17;42529:47;42593:131;42719:4;42593:131;:::i;:::-;42585:139;;42312:419;;;:::o;42737:::-;42903:4;42941:2;42930:9;42926:18;42918:26;;42990:9;42984:4;42980:20;42976:1;42965:9;42961:17;42954:47;43018:131;43144:4;43018:131;:::i;:::-;43010:139;;42737:419;;;:::o;43162:::-;43328:4;43366:2;43355:9;43351:18;43343:26;;43415:9;43409:4;43405:20;43401:1;43390:9;43386:17;43379:47;43443:131;43569:4;43443:131;:::i;:::-;43435:139;;43162:419;;;:::o;43587:::-;43753:4;43791:2;43780:9;43776:18;43768:26;;43840:9;43834:4;43830:20;43826:1;43815:9;43811:17;43804:47;43868:131;43994:4;43868:131;:::i;:::-;43860:139;;43587:419;;;:::o;44012:222::-;44105:4;44143:2;44132:9;44128:18;44120:26;;44156:71;44224:1;44213:9;44209:17;44200:6;44156:71;:::i;:::-;44012:222;;;;:::o;44240:533::-;44409:4;44447:2;44436:9;44432:18;44424:26;;44460:71;44528:1;44517:9;44513:17;44504:6;44460:71;:::i;:::-;44578:9;44572:4;44568:20;44563:2;44552:9;44548:18;44541:48;44606:78;44679:4;44670:6;44606:78;:::i;:::-;44598:86;;44694:72;44762:2;44751:9;44747:18;44738:6;44694:72;:::i;:::-;44240:533;;;;;;:::o;44779:129::-;44813:6;44840:20;;:::i;:::-;44830:30;;44869:33;44897:4;44889:6;44869:33;:::i;:::-;44779:129;;;:::o;44914:75::-;44947:6;44980:2;44974:9;44964:19;;44914:75;:::o;44995:321::-;45082:4;45172:18;45164:6;45161:30;45158:56;;;45194:18;;:::i;:::-;45158:56;45244:4;45236:6;45232:17;45224:25;;45304:4;45298;45294:15;45286:23;;44995:321;;;:::o;45322:249::-;45397:4;45487:18;45479:6;45476:30;45473:56;;;45509:18;;:::i;:::-;45473:56;45559:4;45551:6;45547:17;45539:25;;45322:249;;;:::o;45577:311::-;45654:4;45744:18;45736:6;45733:30;45730:56;;;45766:18;;:::i;:::-;45730:56;45816:4;45808:6;45804:17;45796:25;;45876:4;45870;45866:15;45858:23;;45577:311;;;:::o;45894:307::-;45955:4;46045:18;46037:6;46034:30;46031:56;;;46067:18;;:::i;:::-;46031:56;46105:29;46127:6;46105:29;:::i;:::-;46097:37;;46189:4;46183;46179:15;46171:23;;45894:307;;;:::o;46207:308::-;46269:4;46359:18;46351:6;46348:30;46345:56;;;46381:18;;:::i;:::-;46345:56;46419:29;46441:6;46419:29;:::i;:::-;46411:37;;46503:4;46497;46493:15;46485:23;;46207:308;;;:::o;46521:98::-;46586:4;46609:3;46601:11;;46521:98;;;:::o;46625:116::-;46676:4;46699:3;46691:11;;46729:4;46724:3;46720:14;46712:22;;46625:116;;;:::o;46747:104::-;46812:6;46840:4;46830:14;;46747:104;;;:::o;46857:98::-;46908:6;46942:5;46936:12;46926:22;;46857:98;;;:::o;46961:99::-;47013:6;47047:5;47041:12;47031:22;;46961:99;;;:::o;47066:111::-;47134:4;47166;47161:3;47157:14;47149:22;;47066:111;;;:::o;47183:143::-;47280:11;47317:3;47302:18;;47183:143;;;;:::o;47332:168::-;47415:11;47449:6;47444:3;47437:19;47489:4;47484:3;47480:14;47465:29;;47332:168;;;;:::o;47506:169::-;47590:11;47624:6;47619:3;47612:19;47664:4;47659:3;47655:14;47640:29;;47506:169;;;;:::o;47681:148::-;47783:11;47820:3;47805:18;;47681:148;;;;:::o;47835:305::-;47875:3;47894:20;47912:1;47894:20;:::i;:::-;47889:25;;47928:20;47946:1;47928:20;:::i;:::-;47923:25;;48082:1;48014:66;48010:74;48007:1;48004:81;48001:107;;;48088:18;;:::i;:::-;48001:107;48132:1;48129;48125:9;48118:16;;47835:305;;;;:::o;48146:237::-;48184:3;48203:18;48219:1;48203:18;:::i;:::-;48198:23;;48235:18;48251:1;48235:18;:::i;:::-;48230:23;;48325:1;48319:4;48315:12;48312:1;48309:19;48306:45;;;48331:18;;:::i;:::-;48306:45;48375:1;48372;48368:9;48361:16;;48146:237;;;;:::o;48389:185::-;48429:1;48446:20;48464:1;48446:20;:::i;:::-;48441:25;;48480:20;48498:1;48480:20;:::i;:::-;48475:25;;48519:1;48509:35;;48524:18;;:::i;:::-;48509:35;48566:1;48563;48559:9;48554:14;;48389:185;;;;:::o;48580:348::-;48620:7;48643:20;48661:1;48643:20;:::i;:::-;48638:25;;48677:20;48695:1;48677:20;:::i;:::-;48672:25;;48865:1;48797:66;48793:74;48790:1;48787:81;48782:1;48775:9;48768:17;48764:105;48761:131;;;48872:18;;:::i;:::-;48761:131;48920:1;48917;48913:9;48902:20;;48580:348;;;;:::o;48934:191::-;48974:4;48994:20;49012:1;48994:20;:::i;:::-;48989:25;;49028:20;49046:1;49028:20;:::i;:::-;49023:25;;49067:1;49064;49061:8;49058:34;;;49072:18;;:::i;:::-;49058:34;49117:1;49114;49110:9;49102:17;;48934:191;;;;:::o;49131:96::-;49168:7;49197:24;49215:5;49197:24;:::i;:::-;49186:35;;49131:96;;;:::o;49233:90::-;49267:7;49310:5;49303:13;49296:21;49285:32;;49233:90;;;:::o;49329:77::-;49366:7;49395:5;49384:16;;49329:77;;;:::o;49412:149::-;49448:7;49488:66;49481:5;49477:78;49466:89;;49412:149;;;:::o;49567:126::-;49604:7;49644:42;49637:5;49633:54;49622:65;;49567:126;;;:::o;49699:77::-;49736:7;49765:5;49754:16;;49699:77;;;:::o;49782:86::-;49817:7;49857:4;49850:5;49846:16;49835:27;;49782:86;;;:::o;49874:594::-;49958:5;49989:38;50021:5;49989:38;:::i;:::-;50052:5;50079:40;50113:5;50079:40;:::i;:::-;50067:52;;50138:35;50164:8;50138:35;:::i;:::-;50129:44;;50197:2;50189:6;50186:14;50183:278;;;50268:169;50353:66;50323:6;50319:2;50315:15;50312:1;50308:23;50268:169;:::i;:::-;50245:5;50224:227;50215:236;;50183:278;49964:504;;49874:594;;;:::o;50474:154::-;50558:6;50553:3;50548;50535:30;50620:1;50611:6;50606:3;50602:16;50595:27;50474:154;;;:::o;50634:307::-;50702:1;50712:113;50726:6;50723:1;50720:13;50712:113;;;50811:1;50806:3;50802:11;50796:18;50792:1;50787:3;50783:11;50776:39;50748:2;50745:1;50741:10;50736:15;;50712:113;;;50843:6;50840:1;50837:13;50834:101;;;50923:1;50914:6;50909:3;50905:16;50898:27;50834:101;50683:258;50634:307;;;:::o;50947:171::-;50986:3;51009:24;51027:5;51009:24;:::i;:::-;51000:33;;51055:4;51048:5;51045:15;51042:41;;;51063:18;;:::i;:::-;51042:41;51110:1;51103:5;51099:13;51092:20;;50947:171;;;:::o;51124:320::-;51168:6;51205:1;51199:4;51195:12;51185:22;;51252:1;51246:4;51242:12;51273:18;51263:81;;51329:4;51321:6;51317:17;51307:27;;51263:81;51391:2;51383:6;51380:14;51360:18;51357:38;51354:84;;;51410:18;;:::i;:::-;51354:84;51175:269;51124:320;;;:::o;51450:281::-;51533:27;51555:4;51533:27;:::i;:::-;51525:6;51521:40;51663:6;51651:10;51648:22;51627:18;51615:10;51612:34;51609:62;51606:88;;;51674:18;;:::i;:::-;51606:88;51714:10;51710:2;51703:22;51493:238;51450:281;;:::o;51737:233::-;51776:3;51799:24;51817:5;51799:24;:::i;:::-;51790:33;;51845:66;51838:5;51835:77;51832:103;;;51915:18;;:::i;:::-;51832:103;51962:1;51955:5;51951:13;51944:20;;51737:233;;;:::o;51976:79::-;52015:7;52044:5;52033:16;;51976:79;;;:::o;52061:180::-;52109:77;52106:1;52099:88;52206:4;52203:1;52196:15;52230:4;52227:1;52220:15;52247:180;52295:77;52292:1;52285:88;52392:4;52389:1;52382:15;52416:4;52413:1;52406:15;52433:180;52481:77;52478:1;52471:88;52578:4;52575:1;52568:15;52602:4;52599:1;52592:15;52619:180;52667:77;52664:1;52657:88;52764:4;52761:1;52754:15;52788:4;52785:1;52778:15;52805:180;52853:77;52850:1;52843:88;52950:4;52947:1;52940:15;52974:4;52971:1;52964:15;52991:180;53039:77;53036:1;53029:88;53136:4;53133:1;53126:15;53160:4;53157:1;53150:15;53177:154;53220:11;53256:29;53280:3;53274:10;53256:29;:::i;:::-;53319:5;53295:29;;53232:99;53177:154;;;:::o;53337:117::-;53446:1;53443;53436:12;53460:117;53569:1;53566;53559:12;53583:117;53692:1;53689;53682:12;53706:117;53815:1;53812;53805:12;53829:117;53938:1;53935;53928:12;53952:102;53993:6;54044:2;54040:7;54035:2;54028:5;54024:14;54020:28;54010:38;;53952:102;;;:::o;54060:107::-;54104:8;54154:5;54148:4;54144:16;54123:37;;54060:107;;;;:::o;54173:230::-;54313:34;54309:1;54301:6;54297:14;54290:58;54382:13;54377:2;54369:6;54365:15;54358:38;54173:230;:::o;54409:237::-;54549:34;54545:1;54537:6;54533:14;54526:58;54618:20;54613:2;54605:6;54601:15;54594:45;54409:237;:::o;54652:178::-;54792:30;54788:1;54780:6;54776:14;54769:54;54652:178;:::o;54836:223::-;54976:34;54972:1;54964:6;54960:14;54953:58;55045:6;55040:2;55032:6;55028:15;55021:31;54836:223;:::o;55065:175::-;55205:27;55201:1;55193:6;55189:14;55182:51;55065:175;:::o;55246:167::-;55386:19;55382:1;55374:6;55370:14;55363:43;55246:167;:::o;55419:231::-;55559:34;55555:1;55547:6;55543:14;55536:58;55628:14;55623:2;55615:6;55611:15;55604:39;55419:231;:::o;55656:::-;55796:34;55792:1;55784:6;55780:14;55773:58;55865:14;55860:2;55852:6;55848:15;55841:39;55656:231;:::o;55893:243::-;56033:34;56029:1;56021:6;56017:14;56010:58;56102:26;56097:2;56089:6;56085:15;56078:51;55893:243;:::o;56142:229::-;56282:34;56278:1;56270:6;56266:14;56259:58;56351:12;56346:2;56338:6;56334:15;56327:37;56142:229;:::o;56377:228::-;56517:34;56513:1;56505:6;56501:14;56494:58;56586:11;56581:2;56573:6;56569:15;56562:36;56377:228;:::o;56611:182::-;56751:34;56747:1;56739:6;56735:14;56728:58;56611:182;:::o;56799:231::-;56939:34;56935:1;56927:6;56923:14;56916:58;57008:14;57003:2;56995:6;56991:15;56984:39;56799:231;:::o;57036:228::-;57176:34;57172:1;57164:6;57160:14;57153:58;57245:11;57240:2;57232:6;57228:15;57221:36;57036:228;:::o;57270:234::-;57410:34;57406:1;57398:6;57394:14;57387:58;57479:17;57474:2;57466:6;57462:15;57455:42;57270:234;:::o;57510:220::-;57650:34;57646:1;57638:6;57634:14;57627:58;57719:3;57714:2;57706:6;57702:15;57695:28;57510:220;:::o;57736:159::-;57876:11;57872:1;57864:6;57860:14;57853:35;57736:159;:::o;57901:236::-;58041:34;58037:1;58029:6;58025:14;58018:58;58110:19;58105:2;58097:6;58093:15;58086:44;57901:236;:::o;58143:231::-;58283:34;58279:1;58271:6;58267:14;58260:58;58352:14;58347:2;58339:6;58335:15;58328:39;58143:231;:::o;58380:169::-;58520:21;58516:1;58508:6;58504:14;58497:45;58380:169;:::o;58555:171::-;58695:23;58691:1;58683:6;58679:14;58672:47;58555:171;:::o;58732:122::-;58805:24;58823:5;58805:24;:::i;:::-;58798:5;58795:35;58785:63;;58844:1;58841;58834:12;58785:63;58732:122;:::o;58860:116::-;58930:21;58945:5;58930:21;:::i;:::-;58923:5;58920:32;58910:60;;58966:1;58963;58956:12;58910:60;58860:116;:::o;58982:120::-;59054:23;59071:5;59054:23;:::i;:::-;59047:5;59044:34;59034:62;;59092:1;59089;59082:12;59034:62;58982:120;:::o;59108:122::-;59181:24;59199:5;59181:24;:::i;:::-;59174:5;59171:35;59161:63;;59220:1;59217;59210:12;59161:63;59108:122;:::o

Swarm Source

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