ETH Price: $3,106.84 (+1.24%)
Gas: 7 Gwei

Token

Pioneer (PIONEER)
 

Overview

Max Total Supply

1,097 PIONEER

Holders

603

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 PIONEER
0xccd7c3cc2bea0ee7addc131a8fa0ee4ba5015691
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
PioneerIndustries

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;




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

    uint256 private _totalShares;
    uint256 private _totalReleased;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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: contracts/PioneerIndustries.sol



pragma solidity ^0.8.4;






contract PioneerIndustries is
    ERC721Enumerable,
    Ownable,
    PaymentSplitter
{
    using Strings for uint256;
    using Counters for Counters.Counter;

    uint256 public maxSupply = 7030;
    uint256 public totalNFT;

    string public baseURI;
    string public notRevealedUri;
    string public baseExtension = ".json";

    bool public isBurnEnabled = false;
    bool public revealed = false;

    bool public paused = false;
    bool public presaleState = false;
    bool public publicState = false;

    mapping(address => uint256) public _nftMinted;
    mapping(address => uint256) public _whitelistClaimed;

    uint256 _publicPrice = 200000000000000000; //0.2 ETH
    uint256 _whitelistPrice = 180000000000000000; //0.18 ETH

    bytes32 public whitelistRoot;

    Counters.Counter private _tokenIds;

    uint256[] private _teamShares = [6, 94];
    address[] private _team = [
        0xd293f119eD1Cb766b6E4863e9B41c95C677fCFbe,
        0x268CeCa1AF6D2e0b5298A7f6187c8fA9Ea88de8B
    ];

    constructor()
        ERC721("Pioneer", "PIONEER")
        PaymentSplitter(_team, _teamShares)
    {}

    function changePauseState() public onlyOwner {
        paused = !paused;
    }

    function changePresaleState() public onlyOwner {
        presaleState = !presaleState;
    }

    function changePublicState() public onlyOwner {
        publicState = !publicState;
    }

    function setBaseURI(string calldata _tokenBaseURI) external onlyOwner {
        baseURI = _tokenBaseURI;
    }

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

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setIsBurnEnabled(bool _isBurnEnabled) external onlyOwner {
        isBurnEnabled = _isBurnEnabled;
    }


    function giftMint(address[] calldata _addresses) external onlyOwner {
        require(
            totalNFT + _addresses.length <= maxSupply,
            "Pioneer Industries: max total supply exceeded"
        );

        uint256 _newItemId;
        for (uint256 ind = 0; ind < _addresses.length; ind++) {
            require(
                _addresses[ind] != address(0),
                "Pioneer Industries: recepient is the null address"
            );
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(_addresses[ind], _newItemId);
            totalNFT = totalNFT + 1;
        }
    }

    function presaleMint(uint256 _amount) external payable {
        require(presaleState, "Pioneer Industries: presale is OFF");
        require(!paused, "Pioneer Industries: contract is paused");
        require(
            _amount <= 3,
            "Pioneer Industries: You can't mint so much tokens"
        );
        require(
            _whitelistClaimed[msg.sender] + _amount <= 3,
            "Pioneer Industries: You can't mint so much tokens"
        );

        require(
            totalNFT + _amount <= maxSupply,
            "Pioneer Industries: max supply exceeded"
        );
        require(
            _whitelistPrice * _amount <= msg.value,
            "Pioneer Industries: Ether value sent is not correct"
        );
        uint256 _newItemId;
        for (uint256 ind = 0; ind < _amount; ind++) {
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(msg.sender, _newItemId);
            _whitelistClaimed[msg.sender] = _whitelistClaimed[msg.sender] + 1;
            totalNFT = totalNFT + 1;
            
        }
    }

    function publicMint(uint256 _amount) external payable {
        require(publicState, "Pioneer Industries: Public is OFF");
        require(_amount > 0, "Pioneer Industries: zero amount");
        require(
            totalNFT + _amount <= maxSupply,
            "Pioneer Industries: max supply exceeded"
        );
        require(
            _publicPrice * _amount <= msg.value,
            "Pioneer Industries: Ether value sent is not correct"
        );
        require(!paused, "Pioneer Industries: contract is paused");
        uint256 _newItemId;
        for (uint256 ind = 0; ind < _amount; ind++) {
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(msg.sender, _newItemId);
            totalNFT = totalNFT + 1;
        }
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if (revealed == false) {
            return notRevealedUri;
        }

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

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function changeTotalSupply(uint256 _newSupply) public onlyOwner {
        maxSupply = _newSupply;
    }

    function changewhitelistRoot(bytes32 _whitelistRoot) public onlyOwner {
        whitelistRoot = _whitelistRoot;
    }

    function burn(uint256 tokenId) external {
        require(isBurnEnabled, "Pioneer Industries : burning disabled");
        require(
            _isApprovedOrOwner(msg.sender, tokenId),
            "Pioneer Industries : burn caller is not owner nor approved"
        );
        _burn(tokenId);
        totalNFT = totalNFT - 1;
    }

    function verifyWhitelist(address account, bytes32[] memory proof)
        internal
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(account));
        return MerkleProof.verify(proof, whitelistRoot, leaf);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_nftMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changePauseState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changePresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changePublicState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"changeTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistRoot","type":"bytes32"}],"name":"changewhitelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"giftMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","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":"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":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isBurnEnabled","type":"bool"}],"name":"setIsBurnEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

611b7660125560c06040526005608081905264173539b7b760d91b60a09081526200002e9160169190620005a6565b506017805464ffffffffff191690556702c68af0bb140000601a5567027f7d0bdb920000601b556040805180820190915260068152605e60208201526200007a90601e90600262000635565b506040805180820190915273d293f119ed1cb766b6e4863e9b41c95c677fcfbe815273268ceca1af6d2e0b5298a7f6187c8fa9ea88de8b6020820152620000c690601f90600262000678565b50348015620000d457600080fd5b50601f8054806020026020016040519081016040528092919081815260200182805480156200012d57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200010e575b5050505050601e8054806020026020016040519081016040528092919081815260200182805480156200018057602002820191906000526020600020905b8154815260200190600101908083116200016b575b5050505050604051806040016040528060078152602001662834b7b732b2b960c91b815250604051806040016040528060078152602001662824a7a722a2a960c91b8152508160009080519060200190620001dd929190620005a6565b508051620001f3906001906020840190620005a6565b505050620002106200020a6200036260201b60201c565b62000366565b8051825114620002825760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002d55760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000279565b60005b82518110156200035957620003448382815181106200030757634e487b7160e01b600052603260045260246000fd5b60200260200101518383815181106200033057634e487b7160e01b600052603260045260246000fd5b6020026020010151620003b860201b60201c565b8062000350816200073f565b915050620002d8565b50505062000773565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004255760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000279565b60008111620004775760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000279565b6001600160a01b0382166000908152600d602052604090205415620004f35760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000279565b600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319166001600160a01b0384169081179091556000908152600d60205260409020819055600b546200055d908290620006e7565b600b55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054620005b49062000702565b90600052602060002090601f016020900481019282620005d8576000855562000623565b82601f10620005f357805160ff191683800117855562000623565b8280016001018555821562000623579182015b828111156200062357825182559160200191906001019062000606565b5062000631929150620006d0565b5090565b82805482825590600052602060002090810192821562000623579160200282015b8281111562000623578251829060ff1690559160200191906001019062000656565b82805482825590600052602060002090810192821562000623579160200282015b828111156200062357825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000699565b5b80821115620006315760008155600101620006d1565b60008219821115620006fd57620006fd6200075d565b500190565b600181811c908216806200071757607f821691505b602082108114156200073957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200075657620007566200075d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b61381a80620007836000396000f3fe6080604052600436106103535760003560e01c80636c0360eb116101c6578063abfe7614116100f7578063d5abeb0111610095578063e33b7de31161006f578063e33b7de314610a0b578063e985e9c514610a20578063f2c4ce1e14610a69578063f2fde38b14610a8957600080fd5b8063d5abeb011461099f578063d79779b2146109b5578063da3ef23f146109eb57600080fd5b8063c87b56dd116100d1578063c87b56dd14610921578063c9b298f114610941578063ce7c2ac214610954578063d082a3f71461098a57600080fd5b8063abfe7614146108ca578063b88d4fde146108ec578063c66828621461090c57600080fd5b80638b83209b116101645780639852595c1161013e5780639852595c1461083f578063a22cb46514610875578063a475b5dd14610895578063a5fd7bec146108aa57600080fd5b80638b83209b146107ec5780638da5cb5b1461080c57806395d89b411461082a57600080fd5b8063715018a6116101a0578063715018a61461075d57806378fda110146107725780637f1e371114610792578063851a7708146107bf57600080fd5b80636c0360eb146107085780636e0e5b191461071d57806370a082311461073d57600080fd5b8063386bfc98116102a05780634f6ccce71161023e57806355f804b31161021857806355f804b3146106935780635c975abb146106b357806360e5bb85146106d35780636352211e146106e857600080fd5b80634f6ccce714610634578063518302271461065457806352e973261461067357600080fd5b806342842e0e1161027a57806342842e0e146105bf57806342966c68146105df57806346e79ffc146105ff57806348b750441461061457600080fd5b8063386bfc981461054e5780633a98ef3914610564578063406072a91461057957600080fd5b8063095ea7b31161030d57806319165587116102e757806319165587146104db57806323b872dd146104fb5780632db115441461051b5780632f745c591461052e57600080fd5b8063095ea7b3146104835780630d0c31b7146104a557806318160ddd146104c657600080fd5b8062456379146103a157806301ffc9a7146103ca57806306fdde03146103fa57806307ebec271461041c578063081812fc14610436578063081c8c441461046e57600080fd5b3661039c577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103ad57600080fd5b506103b760135481565b6040519081526020015b60405180910390f35b3480156103d657600080fd5b506103ea6103e536600461317a565b610aa9565b60405190151581526020016103c1565b34801561040657600080fd5b5061040f610ad4565b6040516103c191906133c4565b34801561042857600080fd5b506017546103ea9060ff1681565b34801561044257600080fd5b50610456610451366004613162565b610b66565b6040516001600160a01b0390911681526020016103c1565b34801561047a57600080fd5b5061040f610c00565b34801561048f57600080fd5b506104a361049e36600461308f565b610c8e565b005b3480156104b157600080fd5b506017546103ea906301000000900460ff1681565b3480156104d257600080fd5b506008546103b7565b3480156104e757600080fd5b506104a36104f6366004612f51565b610da4565b34801561050757600080fd5b506104a3610516366004612fa5565b610ed2565b6104a3610529366004613162565b610f03565b34801561053a57600080fd5b506103b761054936600461308f565b611088565b34801561055a57600080fd5b506103b7601c5481565b34801561057057600080fd5b50600b546103b7565b34801561058557600080fd5b506103b76105943660046131b2565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b3480156105cb57600080fd5b506104a36105da366004612fa5565b61111e565b3480156105eb57600080fd5b506104a36105fa366004613162565b611139565b34801561060b57600080fd5b506104a3611233565b34801561062057600080fd5b506104a361062f3660046131b2565b61127c565b34801561064057600080fd5b506103b761064f366004613162565b611464565b34801561066057600080fd5b506017546103ea90610100900460ff1681565b34801561067f57600080fd5b506104a361068e366004613162565b611505565b34801561069f57600080fd5b506104a36106ae3660046131c4565b611534565b3480156106bf57600080fd5b506017546103ea9062010000900460ff1681565b3480156106df57600080fd5b506104a361156a565b3480156106f457600080fd5b50610456610703366004613162565b6115b7565b34801561071457600080fd5b5061040f61162e565b34801561072957600080fd5b506104a361073836600461312a565b61163b565b34801561074957600080fd5b506103b7610758366004612f51565b611678565b34801561076957600080fd5b506104a36116ff565b34801561077e57600080fd5b506104a361078d366004613162565b611735565b34801561079e57600080fd5b506103b76107ad366004612f51565b60186020526000908152604090205481565b3480156107cb57600080fd5b506103b76107da366004612f51565b60196020526000908152604090205481565b3480156107f857600080fd5b50610456610807366004613162565b611764565b34801561081857600080fd5b50600a546001600160a01b0316610456565b34801561083657600080fd5b5061040f6117a2565b34801561084b57600080fd5b506103b761085a366004612f51565b6001600160a01b03166000908152600e602052604090205490565b34801561088157600080fd5b506104a3610890366004613062565b6117b1565b3480156108a157600080fd5b506104a36117c0565b3480156108b657600080fd5b506104a36108c53660046130ba565b6117fb565b3480156108d657600080fd5b506017546103ea90640100000000900460ff1681565b3480156108f857600080fd5b506104a3610907366004612fe5565b6119c8565b34801561091857600080fd5b5061040f6119fa565b34801561092d57600080fd5b5061040f61093c366004613162565b611a07565b6104a361094f366004613162565b611b86565b34801561096057600080fd5b506103b761096f366004612f51565b6001600160a01b03166000908152600d602052604090205490565b34801561099657600080fd5b506104a3611d43565b3480156109ab57600080fd5b506103b760125481565b3480156109c157600080fd5b506103b76109d0366004612f51565b6001600160a01b031660009081526010602052604090205490565b3480156109f757600080fd5b506104a3610a0636600461321f565b611d8e565b348015610a1757600080fd5b50600c546103b7565b348015610a2c57600080fd5b506103ea610a3b366004612f6d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a7557600080fd5b506104a3610a8436600461321f565b611dcb565b348015610a9557600080fd5b506104a3610aa4366004612f51565b611e08565b60006001600160e01b0319821663780e9d6360e01b1480610ace5750610ace82611ea3565b92915050565b606060008054610ae3906136ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0f906136ff565b8015610b5c5780601f10610b3157610100808354040283529160200191610b5c565b820191906000526020600020905b815481529060010190602001808311610b3f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610be45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60158054610c0d906136ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610c39906136ff565b8015610c865780601f10610c5b57610100808354040283529160200191610c86565b820191906000526020600020905b815481529060010190602001808311610c6957829003601f168201915b505050505081565b6000610c99826115b7565b9050806001600160a01b0316836001600160a01b03161415610d075760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bdb565b336001600160a01b0382161480610d235750610d238133610a3b565b610d955760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bdb565b610d9f8383611ef3565b505050565b6001600160a01b0381166000908152600d6020526040902054610dd95760405162461bcd60e51b8152600401610bdb9061346f565b6000610de4600c5490565b610dee9047613671565b90506000610e1b8383610e16866001600160a01b03166000908152600e602052604090205490565b611f61565b905080610e3a5760405162461bcd60e51b8152600401610bdb906134b5565b6001600160a01b0383166000908152600e602052604081208054839290610e62908490613671565b9250508190555080600c6000828254610e7b9190613671565b90915550610e8b90508382611fa7565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610edc33826120c0565b610ef85760405162461bcd60e51b8152600401610bdb90613620565b610d9f8383836121b6565b601754640100000000900460ff16610f675760405162461bcd60e51b815260206004820152602160248201527f50696f6e65657220496e64757374726965733a205075626c6963206973204f466044820152602360f91b6064820152608401610bdb565b60008111610fb75760405162461bcd60e51b815260206004820152601f60248201527f50696f6e65657220496e64757374726965733a207a65726f20616d6f756e74006044820152606401610bdb565b60125481601354610fc89190613671565b1115610fe65760405162461bcd60e51b8152600401610bdb90613500565b3481601a54610ff5919061369d565b11156110135760405162461bcd60e51b8152600401610bdb906135cd565b60175462010000900460ff161561103c5760405162461bcd60e51b8152600401610bdb90613429565b6000805b82811015610d9f57611056601d80546001019055565b601d5491506110653383612361565b601354611073906001613671565b601355806110808161373a565b915050611040565b600061109383611678565b82106110f55760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bdb565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610d9f838383604051806020016040528060008152506119c8565b60175460ff166111995760405162461bcd60e51b815260206004820152602560248201527f50696f6e65657220496e6475737472696573203a206275726e696e672064697360448201526418589b195960da1b6064820152608401610bdb565b6111a333826120c0565b6112155760405162461bcd60e51b815260206004820152603a60248201527f50696f6e65657220496e6475737472696573203a206275726e2063616c6c657260448201527f206973206e6f74206f776e6572206e6f7220617070726f7665640000000000006064820152608401610bdb565b61121e8161237b565b600160135461122d91906136bc565b60135550565b600a546001600160a01b0316331461125d5760405162461bcd60e51b8152600401610bdb90613598565b6017805462ff0000198116620100009182900460ff1615909102179055565b6001600160a01b0381166000908152600d60205260409020546112b15760405162461bcd60e51b8152600401610bdb9061346f565b6001600160a01b0382166000908152601060205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561130957600080fd5b505afa15801561131d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113419190613265565b61134b9190613671565b905060006113848383610e1687876001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b9050806113a35760405162461bcd60e51b8152600401610bdb906134b5565b6001600160a01b038085166000908152601160209081526040808320938716835292905290812080548392906113da908490613671565b90915550506001600160a01b03841660009081526010602052604081208054839290611407908490613671565b909155506114189050848483612422565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600061146f60085490565b82106114d25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bdb565b600882815481106114f357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b0316331461152f5760405162461bcd60e51b8152600401610bdb90613598565b601255565b600a546001600160a01b0316331461155e5760405162461bcd60e51b8152600401610bdb90613598565b610d9f60148383612dce565b600a546001600160a01b031633146115945760405162461bcd60e51b8152600401610bdb90613598565b6017805464ff000000001981166401000000009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b031680610ace5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bdb565b60148054610c0d906136ff565b600a546001600160a01b031633146116655760405162461bcd60e51b8152600401610bdb90613598565b6017805460ff1916911515919091179055565b60006001600160a01b0382166116e35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bdb565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146117295760405162461bcd60e51b8152600401610bdb90613598565b6117336000612474565b565b600a546001600160a01b0316331461175f5760405162461bcd60e51b8152600401610bdb90613598565b601c55565b6000600f828154811061178757634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b606060018054610ae3906136ff565b6117bc3383836124c6565b5050565b600a546001600160a01b031633146117ea5760405162461bcd60e51b8152600401610bdb90613598565b6017805461ff001916610100179055565b600a546001600160a01b031633146118255760405162461bcd60e51b8152600401610bdb90613598565b601254601354611836908390613671565b111561189a5760405162461bcd60e51b815260206004820152602d60248201527f50696f6e65657220496e64757374726965733a206d617820746f74616c20737560448201526c1c1c1b1e48195e18d959591959609a1b6064820152608401610bdb565b6000805b828110156119c25760008484838181106118c857634e487b7160e01b600052603260045260246000fd5b90506020020160208101906118dd9190612f51565b6001600160a01b0316141561194e5760405162461bcd60e51b815260206004820152603160248201527f50696f6e65657220496e64757374726965733a20726563657069656e7420697360448201527020746865206e756c6c206164647265737360781b6064820152608401610bdb565b61195c601d80546001019055565b601d54915061199f84848381811061198457634e487b7160e01b600052603260045260246000fd5b90506020020160208101906119999190612f51565b83612361565b6013546119ad906001613671565b601355806119ba8161373a565b91505061189e565b50505050565b6119d233836120c0565b6119ee5760405162461bcd60e51b8152600401610bdb90613620565b6119c284848484612595565b60168054610c0d906136ff565b6000818152600260205260409020546060906001600160a01b0316611a865760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bdb565b601754610100900460ff16611b275760158054611aa2906136ff565b80601f0160208091040260200160405190810160405280929190818152602001828054611ace906136ff565b8015611b1b5780601f10611af057610100808354040283529160200191611b1b565b820191906000526020600020905b815481529060010190602001808311611afe57829003601f168201915b50505050509050919050565b6000611b316125c8565b90506000815111611b515760405180602001604052806000815250611b7f565b80611b5b846125d7565b6016604051602001611b6f939291906132c5565b6040516020818303038152906040525b9392505050565b6017546301000000900460ff16611bea5760405162461bcd60e51b815260206004820152602260248201527f50696f6e65657220496e64757374726965733a2070726573616c65206973204f604482015261232360f11b6064820152608401610bdb565b60175462010000900460ff1615611c135760405162461bcd60e51b8152600401610bdb90613429565b6003811115611c345760405162461bcd60e51b8152600401610bdb90613547565b33600090815260196020526040902054600390611c52908390613671565b1115611c705760405162461bcd60e51b8152600401610bdb90613547565b60125481601354611c819190613671565b1115611c9f5760405162461bcd60e51b8152600401610bdb90613500565b3481601b54611cae919061369d565b1115611ccc5760405162461bcd60e51b8152600401610bdb906135cd565b6000805b82811015610d9f57611ce6601d80546001019055565b601d549150611cf53383612361565b33600090815260196020526040902054611d10906001613671565b33600090815260196020526040902055601354611d2e906001613671565b60135580611d3b8161373a565b915050611cd0565b600a546001600160a01b03163314611d6d5760405162461bcd60e51b8152600401610bdb90613598565b6017805463ff00000019811663010000009182900460ff1615909102179055565b600a546001600160a01b03163314611db85760405162461bcd60e51b8152600401610bdb90613598565b80516117bc906016906020840190612e52565b600a546001600160a01b03163314611df55760405162461bcd60e51b8152600401610bdb90613598565b80516117bc906015906020840190612e52565b600a546001600160a01b03163314611e325760405162461bcd60e51b8152600401610bdb90613598565b6001600160a01b038116611e975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bdb565b611ea081612474565b50565b60006001600160e01b031982166380ac58cd60e01b1480611ed457506001600160e01b03198216635b5e139f60e01b145b80610ace57506301ffc9a760e01b6001600160e01b0319831614610ace565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f28826115b7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b0384166000908152600d602052604081205490918391611f8b908661369d565b611f959190613689565b611f9f91906136bc565b949350505050565b80471015611ff75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bdb565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612044576040519150601f19603f3d011682016040523d82523d6000602084013e612049565b606091505b5050905080610d9f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bdb565b6000818152600260205260408120546001600160a01b03166121395760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bdb565b6000612144836115b7565b9050806001600160a01b0316846001600160a01b0316148061217f5750836001600160a01b031661217484610b66565b6001600160a01b0316145b80611f9f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16949350505050565b826001600160a01b03166121c9826115b7565b6001600160a01b0316146122315760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bdb565b6001600160a01b0382166122935760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bdb565b61229e8383836126f1565b6122a9600082611ef3565b6001600160a01b03831660009081526003602052604081208054600192906122d29084906136bc565b90915550506001600160a01b0382166000908152600360205260408120805460019290612300908490613671565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6117bc8282604051806020016040528060008152506127a9565b6000612386826115b7565b9050612394816000846126f1565b61239f600083611ef3565b6001600160a01b03811660009081526003602052604081208054600192906123c89084906136bc565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610d9f9084906127dc565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156125285760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bdb565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6125a08484846121b6565b6125ac848484846128ae565b6119c25760405162461bcd60e51b8152600401610bdb906133d7565b606060148054610ae3906136ff565b6060816125fb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612625578061260f8161373a565b915061261e9050600a83613689565b91506125ff565b60008167ffffffffffffffff81111561264e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612678576020820181803683370190505b5090505b8415611f9f5761268d6001836136bc565b915061269a600a86613755565b6126a5906030613671565b60f81b8183815181106126c857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506126ea600a86613689565b945061267c565b6001600160a01b03831661274c5761274781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61276f565b816001600160a01b0316836001600160a01b03161461276f5761276f83826129bb565b6001600160a01b03821661278657610d9f81612a58565b826001600160a01b0316826001600160a01b031614610d9f57610d9f8282612b31565b6127b38383612b75565b6127c060008484846128ae565b610d9f5760405162461bcd60e51b8152600401610bdb906133d7565b6000612831826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612cc39092919063ffffffff16565b805190915015610d9f578080602001905181019061284f9190613146565b610d9f5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bdb565b60006001600160a01b0384163b156129b057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906128f2903390899088908890600401613387565b602060405180830381600087803b15801561290c57600080fd5b505af192505050801561293c575060408051601f3d908101601f1916820190925261293991810190613196565b60015b612996573d80801561296a576040519150601f19603f3d011682016040523d82523d6000602084013e61296f565b606091505b50805161298e5760405162461bcd60e51b8152600401610bdb906133d7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f9f565b506001949350505050565b600060016129c884611678565b6129d291906136bc565b600083815260076020526040902054909150808214612a25576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612a6a906001906136bc565b60008381526009602052604081205460088054939450909284908110612aa057634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612acf57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612b1557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612b3c83611678565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612bcb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bdb565b6000818152600260205260409020546001600160a01b031615612c305760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bdb565b612c3c600083836126f1565b6001600160a01b0382166000908152600360205260408120805460019290612c65908490613671565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060611f9f848460008585843b612d1c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bdb565b600080866001600160a01b03168587604051612d3891906132a9565b60006040518083038185875af1925050503d8060008114612d75576040519150601f19603f3d011682016040523d82523d6000602084013e612d7a565b606091505b5091509150612d8a828286612d95565b979650505050505050565b60608315612da4575081611b7f565b825115612db45782518084602001fd5b8160405162461bcd60e51b8152600401610bdb91906133c4565b828054612dda906136ff565b90600052602060002090601f016020900481019282612dfc5760008555612e42565b82601f10612e155782800160ff19823516178555612e42565b82800160010185558215612e42579182015b82811115612e42578235825591602001919060010190612e27565b50612e4e929150612ec6565b5090565b828054612e5e906136ff565b90600052602060002090601f016020900481019282612e805760008555612e42565b82601f10612e9957805160ff1916838001178555612e42565b82800160010185558215612e42579182015b82811115612e42578251825591602001919060010190612eab565b5b80821115612e4e5760008155600101612ec7565b600067ffffffffffffffff80841115612ef657612ef6613795565b604051601f8501601f19908116603f01168101908282118183101715612f1e57612f1e613795565b81604052809350858152868686011115612f3757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612f62578081fd5b8135611b7f816137ab565b60008060408385031215612f7f578081fd5b8235612f8a816137ab565b91506020830135612f9a816137ab565b809150509250929050565b600080600060608486031215612fb9578081fd5b8335612fc4816137ab565b92506020840135612fd4816137ab565b929592945050506040919091013590565b60008060008060808587031215612ffa578081fd5b8435613005816137ab565b93506020850135613015816137ab565b925060408501359150606085013567ffffffffffffffff811115613037578182fd5b8501601f81018713613047578182fd5b61305687823560208401612edb565b91505092959194509250565b60008060408385031215613074578182fd5b823561307f816137ab565b91506020830135612f9a816137c0565b600080604083850312156130a1578182fd5b82356130ac816137ab565b946020939093013593505050565b600080602083850312156130cc578182fd5b823567ffffffffffffffff808211156130e3578384fd5b818501915085601f8301126130f6578384fd5b813581811115613104578485fd5b8660208260051b8501011115613118578485fd5b60209290920196919550909350505050565b60006020828403121561313b578081fd5b8135611b7f816137c0565b600060208284031215613157578081fd5b8151611b7f816137c0565b600060208284031215613173578081fd5b5035919050565b60006020828403121561318b578081fd5b8135611b7f816137ce565b6000602082840312156131a7578081fd5b8151611b7f816137ce565b60008060408385031215612f7f578182fd5b600080602083850312156131d6578182fd5b823567ffffffffffffffff808211156131ed578384fd5b818501915085601f830112613200578384fd5b81358181111561320e578485fd5b866020828501011115613118578485fd5b600060208284031215613230578081fd5b813567ffffffffffffffff811115613246578182fd5b8201601f81018413613256578182fd5b611f9f84823560208401612edb565b600060208284031215613276578081fd5b5051919050565b600081518084526132958160208601602086016136d3565b601f01601f19169290920160200192915050565b600082516132bb8184602087016136d3565b9190910192915050565b6000845160206132d88285838a016136d3565b8551918401916132eb8184848a016136d3565b85549201918390600181811c908083168061330757607f831692505b85831081141561332557634e487b7160e01b88526022600452602488fd5b808015613339576001811461334a57613376565b60ff19851688528388019550613376565b60008b815260209020895b8581101561336e5781548a820152908401908801613355565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906133ba9083018461327d565b9695505050505050565b602081526000611b7f602083018461327d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f50696f6e65657220496e64757374726965733a20636f6e7472616374206973206040820152651c185d5cd95960d21b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526027908201527f50696f6e65657220496e64757374726965733a206d617820737570706c7920656040820152661e18d95959195960ca1b606082015260800190565b60208082526031908201527f50696f6e65657220496e64757374726965733a20596f752063616e2774206d696040820152706e7420736f206d75636820746f6b656e7360781b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f50696f6e65657220496e64757374726965733a2045746865722076616c7565206040820152721cd95b9d081a5cc81b9bdd0818dbdc9c9958dd606a1b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561368457613684613769565b500190565b6000826136985761369861377f565b500490565b60008160001904831182151516156136b7576136b7613769565b500290565b6000828210156136ce576136ce613769565b500390565b60005b838110156136ee5781810151838201526020016136d6565b838111156119c25750506000910152565b600181811c9082168061371357607f821691505b6020821081141561373457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561374e5761374e613769565b5060010190565b6000826137645761376461377f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611ea057600080fd5b8015158114611ea057600080fd5b6001600160e01b031981168114611ea057600080fdfea26469706673582212203f24a1f764d6977b11286e91f871dad8c3ef6bd01f452fd3872efc2b733e1cec64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106103535760003560e01c80636c0360eb116101c6578063abfe7614116100f7578063d5abeb0111610095578063e33b7de31161006f578063e33b7de314610a0b578063e985e9c514610a20578063f2c4ce1e14610a69578063f2fde38b14610a8957600080fd5b8063d5abeb011461099f578063d79779b2146109b5578063da3ef23f146109eb57600080fd5b8063c87b56dd116100d1578063c87b56dd14610921578063c9b298f114610941578063ce7c2ac214610954578063d082a3f71461098a57600080fd5b8063abfe7614146108ca578063b88d4fde146108ec578063c66828621461090c57600080fd5b80638b83209b116101645780639852595c1161013e5780639852595c1461083f578063a22cb46514610875578063a475b5dd14610895578063a5fd7bec146108aa57600080fd5b80638b83209b146107ec5780638da5cb5b1461080c57806395d89b411461082a57600080fd5b8063715018a6116101a0578063715018a61461075d57806378fda110146107725780637f1e371114610792578063851a7708146107bf57600080fd5b80636c0360eb146107085780636e0e5b191461071d57806370a082311461073d57600080fd5b8063386bfc98116102a05780634f6ccce71161023e57806355f804b31161021857806355f804b3146106935780635c975abb146106b357806360e5bb85146106d35780636352211e146106e857600080fd5b80634f6ccce714610634578063518302271461065457806352e973261461067357600080fd5b806342842e0e1161027a57806342842e0e146105bf57806342966c68146105df57806346e79ffc146105ff57806348b750441461061457600080fd5b8063386bfc981461054e5780633a98ef3914610564578063406072a91461057957600080fd5b8063095ea7b31161030d57806319165587116102e757806319165587146104db57806323b872dd146104fb5780632db115441461051b5780632f745c591461052e57600080fd5b8063095ea7b3146104835780630d0c31b7146104a557806318160ddd146104c657600080fd5b8062456379146103a157806301ffc9a7146103ca57806306fdde03146103fa57806307ebec271461041c578063081812fc14610436578063081c8c441461046e57600080fd5b3661039c577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103ad57600080fd5b506103b760135481565b6040519081526020015b60405180910390f35b3480156103d657600080fd5b506103ea6103e536600461317a565b610aa9565b60405190151581526020016103c1565b34801561040657600080fd5b5061040f610ad4565b6040516103c191906133c4565b34801561042857600080fd5b506017546103ea9060ff1681565b34801561044257600080fd5b50610456610451366004613162565b610b66565b6040516001600160a01b0390911681526020016103c1565b34801561047a57600080fd5b5061040f610c00565b34801561048f57600080fd5b506104a361049e36600461308f565b610c8e565b005b3480156104b157600080fd5b506017546103ea906301000000900460ff1681565b3480156104d257600080fd5b506008546103b7565b3480156104e757600080fd5b506104a36104f6366004612f51565b610da4565b34801561050757600080fd5b506104a3610516366004612fa5565b610ed2565b6104a3610529366004613162565b610f03565b34801561053a57600080fd5b506103b761054936600461308f565b611088565b34801561055a57600080fd5b506103b7601c5481565b34801561057057600080fd5b50600b546103b7565b34801561058557600080fd5b506103b76105943660046131b2565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b3480156105cb57600080fd5b506104a36105da366004612fa5565b61111e565b3480156105eb57600080fd5b506104a36105fa366004613162565b611139565b34801561060b57600080fd5b506104a3611233565b34801561062057600080fd5b506104a361062f3660046131b2565b61127c565b34801561064057600080fd5b506103b761064f366004613162565b611464565b34801561066057600080fd5b506017546103ea90610100900460ff1681565b34801561067f57600080fd5b506104a361068e366004613162565b611505565b34801561069f57600080fd5b506104a36106ae3660046131c4565b611534565b3480156106bf57600080fd5b506017546103ea9062010000900460ff1681565b3480156106df57600080fd5b506104a361156a565b3480156106f457600080fd5b50610456610703366004613162565b6115b7565b34801561071457600080fd5b5061040f61162e565b34801561072957600080fd5b506104a361073836600461312a565b61163b565b34801561074957600080fd5b506103b7610758366004612f51565b611678565b34801561076957600080fd5b506104a36116ff565b34801561077e57600080fd5b506104a361078d366004613162565b611735565b34801561079e57600080fd5b506103b76107ad366004612f51565b60186020526000908152604090205481565b3480156107cb57600080fd5b506103b76107da366004612f51565b60196020526000908152604090205481565b3480156107f857600080fd5b50610456610807366004613162565b611764565b34801561081857600080fd5b50600a546001600160a01b0316610456565b34801561083657600080fd5b5061040f6117a2565b34801561084b57600080fd5b506103b761085a366004612f51565b6001600160a01b03166000908152600e602052604090205490565b34801561088157600080fd5b506104a3610890366004613062565b6117b1565b3480156108a157600080fd5b506104a36117c0565b3480156108b657600080fd5b506104a36108c53660046130ba565b6117fb565b3480156108d657600080fd5b506017546103ea90640100000000900460ff1681565b3480156108f857600080fd5b506104a3610907366004612fe5565b6119c8565b34801561091857600080fd5b5061040f6119fa565b34801561092d57600080fd5b5061040f61093c366004613162565b611a07565b6104a361094f366004613162565b611b86565b34801561096057600080fd5b506103b761096f366004612f51565b6001600160a01b03166000908152600d602052604090205490565b34801561099657600080fd5b506104a3611d43565b3480156109ab57600080fd5b506103b760125481565b3480156109c157600080fd5b506103b76109d0366004612f51565b6001600160a01b031660009081526010602052604090205490565b3480156109f757600080fd5b506104a3610a0636600461321f565b611d8e565b348015610a1757600080fd5b50600c546103b7565b348015610a2c57600080fd5b506103ea610a3b366004612f6d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a7557600080fd5b506104a3610a8436600461321f565b611dcb565b348015610a9557600080fd5b506104a3610aa4366004612f51565b611e08565b60006001600160e01b0319821663780e9d6360e01b1480610ace5750610ace82611ea3565b92915050565b606060008054610ae3906136ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0f906136ff565b8015610b5c5780601f10610b3157610100808354040283529160200191610b5c565b820191906000526020600020905b815481529060010190602001808311610b3f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610be45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60158054610c0d906136ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610c39906136ff565b8015610c865780601f10610c5b57610100808354040283529160200191610c86565b820191906000526020600020905b815481529060010190602001808311610c6957829003601f168201915b505050505081565b6000610c99826115b7565b9050806001600160a01b0316836001600160a01b03161415610d075760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bdb565b336001600160a01b0382161480610d235750610d238133610a3b565b610d955760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bdb565b610d9f8383611ef3565b505050565b6001600160a01b0381166000908152600d6020526040902054610dd95760405162461bcd60e51b8152600401610bdb9061346f565b6000610de4600c5490565b610dee9047613671565b90506000610e1b8383610e16866001600160a01b03166000908152600e602052604090205490565b611f61565b905080610e3a5760405162461bcd60e51b8152600401610bdb906134b5565b6001600160a01b0383166000908152600e602052604081208054839290610e62908490613671565b9250508190555080600c6000828254610e7b9190613671565b90915550610e8b90508382611fa7565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610edc33826120c0565b610ef85760405162461bcd60e51b8152600401610bdb90613620565b610d9f8383836121b6565b601754640100000000900460ff16610f675760405162461bcd60e51b815260206004820152602160248201527f50696f6e65657220496e64757374726965733a205075626c6963206973204f466044820152602360f91b6064820152608401610bdb565b60008111610fb75760405162461bcd60e51b815260206004820152601f60248201527f50696f6e65657220496e64757374726965733a207a65726f20616d6f756e74006044820152606401610bdb565b60125481601354610fc89190613671565b1115610fe65760405162461bcd60e51b8152600401610bdb90613500565b3481601a54610ff5919061369d565b11156110135760405162461bcd60e51b8152600401610bdb906135cd565b60175462010000900460ff161561103c5760405162461bcd60e51b8152600401610bdb90613429565b6000805b82811015610d9f57611056601d80546001019055565b601d5491506110653383612361565b601354611073906001613671565b601355806110808161373a565b915050611040565b600061109383611678565b82106110f55760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bdb565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610d9f838383604051806020016040528060008152506119c8565b60175460ff166111995760405162461bcd60e51b815260206004820152602560248201527f50696f6e65657220496e6475737472696573203a206275726e696e672064697360448201526418589b195960da1b6064820152608401610bdb565b6111a333826120c0565b6112155760405162461bcd60e51b815260206004820152603a60248201527f50696f6e65657220496e6475737472696573203a206275726e2063616c6c657260448201527f206973206e6f74206f776e6572206e6f7220617070726f7665640000000000006064820152608401610bdb565b61121e8161237b565b600160135461122d91906136bc565b60135550565b600a546001600160a01b0316331461125d5760405162461bcd60e51b8152600401610bdb90613598565b6017805462ff0000198116620100009182900460ff1615909102179055565b6001600160a01b0381166000908152600d60205260409020546112b15760405162461bcd60e51b8152600401610bdb9061346f565b6001600160a01b0382166000908152601060205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561130957600080fd5b505afa15801561131d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113419190613265565b61134b9190613671565b905060006113848383610e1687876001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b9050806113a35760405162461bcd60e51b8152600401610bdb906134b5565b6001600160a01b038085166000908152601160209081526040808320938716835292905290812080548392906113da908490613671565b90915550506001600160a01b03841660009081526010602052604081208054839290611407908490613671565b909155506114189050848483612422565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600061146f60085490565b82106114d25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bdb565b600882815481106114f357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b0316331461152f5760405162461bcd60e51b8152600401610bdb90613598565b601255565b600a546001600160a01b0316331461155e5760405162461bcd60e51b8152600401610bdb90613598565b610d9f60148383612dce565b600a546001600160a01b031633146115945760405162461bcd60e51b8152600401610bdb90613598565b6017805464ff000000001981166401000000009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b031680610ace5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bdb565b60148054610c0d906136ff565b600a546001600160a01b031633146116655760405162461bcd60e51b8152600401610bdb90613598565b6017805460ff1916911515919091179055565b60006001600160a01b0382166116e35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bdb565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146117295760405162461bcd60e51b8152600401610bdb90613598565b6117336000612474565b565b600a546001600160a01b0316331461175f5760405162461bcd60e51b8152600401610bdb90613598565b601c55565b6000600f828154811061178757634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b606060018054610ae3906136ff565b6117bc3383836124c6565b5050565b600a546001600160a01b031633146117ea5760405162461bcd60e51b8152600401610bdb90613598565b6017805461ff001916610100179055565b600a546001600160a01b031633146118255760405162461bcd60e51b8152600401610bdb90613598565b601254601354611836908390613671565b111561189a5760405162461bcd60e51b815260206004820152602d60248201527f50696f6e65657220496e64757374726965733a206d617820746f74616c20737560448201526c1c1c1b1e48195e18d959591959609a1b6064820152608401610bdb565b6000805b828110156119c25760008484838181106118c857634e487b7160e01b600052603260045260246000fd5b90506020020160208101906118dd9190612f51565b6001600160a01b0316141561194e5760405162461bcd60e51b815260206004820152603160248201527f50696f6e65657220496e64757374726965733a20726563657069656e7420697360448201527020746865206e756c6c206164647265737360781b6064820152608401610bdb565b61195c601d80546001019055565b601d54915061199f84848381811061198457634e487b7160e01b600052603260045260246000fd5b90506020020160208101906119999190612f51565b83612361565b6013546119ad906001613671565b601355806119ba8161373a565b91505061189e565b50505050565b6119d233836120c0565b6119ee5760405162461bcd60e51b8152600401610bdb90613620565b6119c284848484612595565b60168054610c0d906136ff565b6000818152600260205260409020546060906001600160a01b0316611a865760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bdb565b601754610100900460ff16611b275760158054611aa2906136ff565b80601f0160208091040260200160405190810160405280929190818152602001828054611ace906136ff565b8015611b1b5780601f10611af057610100808354040283529160200191611b1b565b820191906000526020600020905b815481529060010190602001808311611afe57829003601f168201915b50505050509050919050565b6000611b316125c8565b90506000815111611b515760405180602001604052806000815250611b7f565b80611b5b846125d7565b6016604051602001611b6f939291906132c5565b6040516020818303038152906040525b9392505050565b6017546301000000900460ff16611bea5760405162461bcd60e51b815260206004820152602260248201527f50696f6e65657220496e64757374726965733a2070726573616c65206973204f604482015261232360f11b6064820152608401610bdb565b60175462010000900460ff1615611c135760405162461bcd60e51b8152600401610bdb90613429565b6003811115611c345760405162461bcd60e51b8152600401610bdb90613547565b33600090815260196020526040902054600390611c52908390613671565b1115611c705760405162461bcd60e51b8152600401610bdb90613547565b60125481601354611c819190613671565b1115611c9f5760405162461bcd60e51b8152600401610bdb90613500565b3481601b54611cae919061369d565b1115611ccc5760405162461bcd60e51b8152600401610bdb906135cd565b6000805b82811015610d9f57611ce6601d80546001019055565b601d549150611cf53383612361565b33600090815260196020526040902054611d10906001613671565b33600090815260196020526040902055601354611d2e906001613671565b60135580611d3b8161373a565b915050611cd0565b600a546001600160a01b03163314611d6d5760405162461bcd60e51b8152600401610bdb90613598565b6017805463ff00000019811663010000009182900460ff1615909102179055565b600a546001600160a01b03163314611db85760405162461bcd60e51b8152600401610bdb90613598565b80516117bc906016906020840190612e52565b600a546001600160a01b03163314611df55760405162461bcd60e51b8152600401610bdb90613598565b80516117bc906015906020840190612e52565b600a546001600160a01b03163314611e325760405162461bcd60e51b8152600401610bdb90613598565b6001600160a01b038116611e975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bdb565b611ea081612474565b50565b60006001600160e01b031982166380ac58cd60e01b1480611ed457506001600160e01b03198216635b5e139f60e01b145b80610ace57506301ffc9a760e01b6001600160e01b0319831614610ace565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f28826115b7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b0384166000908152600d602052604081205490918391611f8b908661369d565b611f959190613689565b611f9f91906136bc565b949350505050565b80471015611ff75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bdb565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612044576040519150601f19603f3d011682016040523d82523d6000602084013e612049565b606091505b5050905080610d9f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bdb565b6000818152600260205260408120546001600160a01b03166121395760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bdb565b6000612144836115b7565b9050806001600160a01b0316846001600160a01b0316148061217f5750836001600160a01b031661217484610b66565b6001600160a01b0316145b80611f9f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16949350505050565b826001600160a01b03166121c9826115b7565b6001600160a01b0316146122315760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bdb565b6001600160a01b0382166122935760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bdb565b61229e8383836126f1565b6122a9600082611ef3565b6001600160a01b03831660009081526003602052604081208054600192906122d29084906136bc565b90915550506001600160a01b0382166000908152600360205260408120805460019290612300908490613671565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6117bc8282604051806020016040528060008152506127a9565b6000612386826115b7565b9050612394816000846126f1565b61239f600083611ef3565b6001600160a01b03811660009081526003602052604081208054600192906123c89084906136bc565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610d9f9084906127dc565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156125285760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bdb565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6125a08484846121b6565b6125ac848484846128ae565b6119c25760405162461bcd60e51b8152600401610bdb906133d7565b606060148054610ae3906136ff565b6060816125fb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612625578061260f8161373a565b915061261e9050600a83613689565b91506125ff565b60008167ffffffffffffffff81111561264e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612678576020820181803683370190505b5090505b8415611f9f5761268d6001836136bc565b915061269a600a86613755565b6126a5906030613671565b60f81b8183815181106126c857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506126ea600a86613689565b945061267c565b6001600160a01b03831661274c5761274781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61276f565b816001600160a01b0316836001600160a01b03161461276f5761276f83826129bb565b6001600160a01b03821661278657610d9f81612a58565b826001600160a01b0316826001600160a01b031614610d9f57610d9f8282612b31565b6127b38383612b75565b6127c060008484846128ae565b610d9f5760405162461bcd60e51b8152600401610bdb906133d7565b6000612831826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612cc39092919063ffffffff16565b805190915015610d9f578080602001905181019061284f9190613146565b610d9f5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bdb565b60006001600160a01b0384163b156129b057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906128f2903390899088908890600401613387565b602060405180830381600087803b15801561290c57600080fd5b505af192505050801561293c575060408051601f3d908101601f1916820190925261293991810190613196565b60015b612996573d80801561296a576040519150601f19603f3d011682016040523d82523d6000602084013e61296f565b606091505b50805161298e5760405162461bcd60e51b8152600401610bdb906133d7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f9f565b506001949350505050565b600060016129c884611678565b6129d291906136bc565b600083815260076020526040902054909150808214612a25576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612a6a906001906136bc565b60008381526009602052604081205460088054939450909284908110612aa057634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612acf57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612b1557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612b3c83611678565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612bcb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bdb565b6000818152600260205260409020546001600160a01b031615612c305760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bdb565b612c3c600083836126f1565b6001600160a01b0382166000908152600360205260408120805460019290612c65908490613671565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060611f9f848460008585843b612d1c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bdb565b600080866001600160a01b03168587604051612d3891906132a9565b60006040518083038185875af1925050503d8060008114612d75576040519150601f19603f3d011682016040523d82523d6000602084013e612d7a565b606091505b5091509150612d8a828286612d95565b979650505050505050565b60608315612da4575081611b7f565b825115612db45782518084602001fd5b8160405162461bcd60e51b8152600401610bdb91906133c4565b828054612dda906136ff565b90600052602060002090601f016020900481019282612dfc5760008555612e42565b82601f10612e155782800160ff19823516178555612e42565b82800160010185558215612e42579182015b82811115612e42578235825591602001919060010190612e27565b50612e4e929150612ec6565b5090565b828054612e5e906136ff565b90600052602060002090601f016020900481019282612e805760008555612e42565b82601f10612e9957805160ff1916838001178555612e42565b82800160010185558215612e42579182015b82811115612e42578251825591602001919060010190612eab565b5b80821115612e4e5760008155600101612ec7565b600067ffffffffffffffff80841115612ef657612ef6613795565b604051601f8501601f19908116603f01168101908282118183101715612f1e57612f1e613795565b81604052809350858152868686011115612f3757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612f62578081fd5b8135611b7f816137ab565b60008060408385031215612f7f578081fd5b8235612f8a816137ab565b91506020830135612f9a816137ab565b809150509250929050565b600080600060608486031215612fb9578081fd5b8335612fc4816137ab565b92506020840135612fd4816137ab565b929592945050506040919091013590565b60008060008060808587031215612ffa578081fd5b8435613005816137ab565b93506020850135613015816137ab565b925060408501359150606085013567ffffffffffffffff811115613037578182fd5b8501601f81018713613047578182fd5b61305687823560208401612edb565b91505092959194509250565b60008060408385031215613074578182fd5b823561307f816137ab565b91506020830135612f9a816137c0565b600080604083850312156130a1578182fd5b82356130ac816137ab565b946020939093013593505050565b600080602083850312156130cc578182fd5b823567ffffffffffffffff808211156130e3578384fd5b818501915085601f8301126130f6578384fd5b813581811115613104578485fd5b8660208260051b8501011115613118578485fd5b60209290920196919550909350505050565b60006020828403121561313b578081fd5b8135611b7f816137c0565b600060208284031215613157578081fd5b8151611b7f816137c0565b600060208284031215613173578081fd5b5035919050565b60006020828403121561318b578081fd5b8135611b7f816137ce565b6000602082840312156131a7578081fd5b8151611b7f816137ce565b60008060408385031215612f7f578182fd5b600080602083850312156131d6578182fd5b823567ffffffffffffffff808211156131ed578384fd5b818501915085601f830112613200578384fd5b81358181111561320e578485fd5b866020828501011115613118578485fd5b600060208284031215613230578081fd5b813567ffffffffffffffff811115613246578182fd5b8201601f81018413613256578182fd5b611f9f84823560208401612edb565b600060208284031215613276578081fd5b5051919050565b600081518084526132958160208601602086016136d3565b601f01601f19169290920160200192915050565b600082516132bb8184602087016136d3565b9190910192915050565b6000845160206132d88285838a016136d3565b8551918401916132eb8184848a016136d3565b85549201918390600181811c908083168061330757607f831692505b85831081141561332557634e487b7160e01b88526022600452602488fd5b808015613339576001811461334a57613376565b60ff19851688528388019550613376565b60008b815260209020895b8581101561336e5781548a820152908401908801613355565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906133ba9083018461327d565b9695505050505050565b602081526000611b7f602083018461327d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f50696f6e65657220496e64757374726965733a20636f6e7472616374206973206040820152651c185d5cd95960d21b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526027908201527f50696f6e65657220496e64757374726965733a206d617820737570706c7920656040820152661e18d95959195960ca1b606082015260800190565b60208082526031908201527f50696f6e65657220496e64757374726965733a20596f752063616e2774206d696040820152706e7420736f206d75636820746f6b656e7360781b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f50696f6e65657220496e64757374726965733a2045746865722076616c7565206040820152721cd95b9d081a5cc81b9bdd0818dbdc9c9958dd606a1b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561368457613684613769565b500190565b6000826136985761369861377f565b500490565b60008160001904831182151516156136b7576136b7613769565b500290565b6000828210156136ce576136ce613769565b500390565b60005b838110156136ee5781810151838201526020016136d6565b838111156119c25750506000910152565b600181811c9082168061371357607f821691505b6020821081141561373457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561374e5761374e613769565b5060010190565b6000826137645761376461377f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611ea057600080fd5b8015158114611ea057600080fd5b6001600160e01b031981168114611ea057600080fdfea26469706673582212203f24a1f764d6977b11286e91f871dad8c3ef6bd01f452fd3872efc2b733e1cec64736f6c63430008040033

Deployed Bytecode Sourcemap

62624:6364:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27464:40;9412:10;27464:40;;;-1:-1:-1;;;;;10431:32:1;;;10413:51;;27494:9:0;10495:2:1;10480:18;;10473:34;10386:18;27464:40:0;;;;;;;62624:6364;;;;;62834:23;;;;;;;;;;;;;;;;;;;11628:25:1;;;11616:2;11601:18;62834:23:0;;;;;;;;56391:224;;;;;;;;;;-1:-1:-1;56391:224:0;;;;;:::i;:::-;;:::i;:::-;;;11455:14:1;;11448:22;11430:41;;11418:2;11403:18;56391:224:0;11385:92:1;43885:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;62975:33::-;;;;;;;;;;-1:-1:-1;62975:33:0;;;;;;;;45444:221;;;;;;;;;;-1:-1:-1;45444:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10187:32:1;;;10169:51;;10157:2;10142:18;45444:221:0;10124:102:1;62894:28:0;;;;;;;;;;;;;:::i;44967:411::-;;;;;;;;;;-1:-1:-1;44967:411:0;;;;;:::i;:::-;;:::i;:::-;;63085:32;;;;;;;;;;-1:-1:-1;63085:32:0;;;;;;;;;;;57031:113;;;;;;;;;;-1:-1:-1;57119:10:0;:17;57031:113;;29250:566;;;;;;;;;;-1:-1:-1;29250:566:0;;;;;:::i;:::-;;:::i;46194:339::-;;;;;;;;;;-1:-1:-1;46194:339:0;;;;;:::i;:::-;;:::i;66298:807::-;;;;;;:::i;:::-;;:::i;56699:256::-;;;;;;;;;;-1:-1:-1;56699:256:0;;;;;:::i;:::-;;:::i;63399:28::-;;;;;;;;;;;;;;;;27595:91;;;;;;;;;;-1:-1:-1;27666:12:0;;27595:91;;28724:135;;;;;;;;;;-1:-1:-1;28724:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;28821:21:0;;;28794:7;28821:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;28724:135;46604:185;;;;;;;;;;-1:-1:-1;46604:185:0;;;;;:::i;:::-;;:::i;68377:339::-;;;;;;;;;;-1:-1:-1;68377:339:0;;;;;:::i;:::-;;:::i;63785:80::-;;;;;;;;;;;;;:::i;30084:641::-;;;;;;;;;;-1:-1:-1;30084:641:0;;;;;:::i;:::-;;:::i;57221:233::-;;;;;;;;;;-1:-1:-1;57221:233:0;;;;;:::i;:::-;;:::i;63015:28::-;;;;;;;;;;-1:-1:-1;63015:28:0;;;;;;;;;;;68137:105;;;;;;;;;;-1:-1:-1;68137:105:0;;;;;:::i;:::-;;:::i;64074:112::-;;;;;;;;;;-1:-1:-1;64074:112:0;;;;;:::i;:::-;;:::i;63052:26::-;;;;;;;;;;-1:-1:-1;63052:26:0;;;;;;;;;;;63975:91;;;;;;;;;;;;;:::i;43579:239::-;;;;;;;;;;-1:-1:-1;43579:239:0;;;;;:::i;:::-;;:::i;62866:21::-;;;;;;;;;;;;;:::i;64379:115::-;;;;;;;;;;-1:-1:-1;64379:115:0;;;;;:::i;:::-;;:::i;43309:208::-;;;;;;;;;;-1:-1:-1;43309:208:0;;;;;:::i;:::-;;:::i;11259:103::-;;;;;;;;;;;;;:::i;68250:119::-;;;;;;;;;;-1:-1:-1;68250:119:0;;;;;:::i;:::-;;:::i;63164:45::-;;;;;;;;;;-1:-1:-1;63164:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;63216:52;;;;;;;;;;-1:-1:-1;63216:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;28950:100;;;;;;;;;;-1:-1:-1;28950:100:0;;;;;:::i;:::-;;:::i;10608:87::-;;;;;;;;;;-1:-1:-1;10681:6:0;;-1:-1:-1;;;;;10681:6:0;10608:87;;44054:104;;;;;;;;;;;;;:::i;28446:109::-;;;;;;;;;;-1:-1:-1;28446:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;28529:18:0;28502:7;28529:18;;;:9;:18;;;;;;;28446:109;45737:155;;;;;;;;;;-1:-1:-1;45737:155:0;;;;;:::i;:::-;;:::i;64302:69::-;;;;;;;;;;;;;:::i;64504:659::-;;;;;;;;;;-1:-1:-1;64504:659:0;;;;;:::i;:::-;;:::i;63124:31::-;;;;;;;;;;-1:-1:-1;63124:31:0;;;;;;;;;;;46860:328;;;;;;;;;;-1:-1:-1;46860:328:0;;;;;:::i;:::-;;:::i;62929:37::-;;;;;;;;;;;;;:::i;67113:723::-;;;;;;;;;;-1:-1:-1;67113:723:0;;;;;:::i;:::-;;:::i;65171:1119::-;;;;;;:::i;:::-;;:::i;28242:105::-;;;;;;;;;;-1:-1:-1;28242:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;28323:16:0;28296:7;28323:16;;;:7;:16;;;;;;;28242:105;63873:94;;;;;;;;;;;;;:::i;62796:31::-;;;;;;;;;;;;;;;;28032:119;;;;;;;;;;-1:-1:-1;28032:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;28117:26:0;28090:7;28117:26;;;:19;:26;;;;;;;28032:119;67844:151;;;;;;;;;;-1:-1:-1;67844:151:0;;;;;:::i;:::-;;:::i;27780:95::-;;;;;;;;;;-1:-1:-1;27853:14:0;;27780:95;;45963:164;;;;;;;;;;-1:-1:-1;45963:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;46084:25:0;;;46060:4;46084:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45963:164;68003:126;;;;;;;;;;-1:-1:-1;68003:126:0;;;;;:::i;:::-;;:::i;11517:201::-;;;;;;;;;;-1:-1:-1;11517:201:0;;;;;:::i;:::-;;:::i;56391:224::-;56493:4;-1:-1:-1;;;;;;56517:50:0;;-1:-1:-1;;;56517:50:0;;:90;;;56571:36;56595:11;56571:23;:36::i;:::-;56510:97;56391:224;-1:-1:-1;;56391:224:0:o;43885:100::-;43939:13;43972:5;43965:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43885:100;:::o;45444:221::-;45520:7;48787:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48787:16:0;45540:73;;;;-1:-1:-1;;;45540:73:0;;21714:2:1;45540:73:0;;;21696:21:1;21753:2;21733:18;;;21726:30;21792:34;21772:18;;;21765:62;-1:-1:-1;;;21843:18:1;;;21836:42;21895:19;;45540:73:0;;;;;;;;;-1:-1:-1;45633:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45633:24:0;;45444:221::o;62894:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44967:411::-;45048:13;45064:23;45079:7;45064:14;:23::i;:::-;45048:39;;45112:5;-1:-1:-1;;;;;45106:11:0;:2;-1:-1:-1;;;;;45106:11:0;;;45098:57;;;;-1:-1:-1;;;45098:57:0;;23732:2:1;45098:57:0;;;23714:21:1;23771:2;23751:18;;;23744:30;23810:34;23790:18;;;23783:62;-1:-1:-1;;;23861:18:1;;;23854:31;23902:19;;45098:57:0;23704:223:1;45098:57:0;9412:10;-1:-1:-1;;;;;45190:21:0;;;;:62;;-1:-1:-1;45215:37:0;45232:5;9412:10;45963:164;:::i;45215:37::-;45168:168;;;;-1:-1:-1;;;45168:168:0;;18043:2:1;45168:168:0;;;18025:21:1;18082:2;18062:18;;;18055:30;18121:34;18101:18;;;18094:62;18192:26;18172:18;;;18165:54;18236:19;;45168:168:0;18015:246:1;45168:168:0;45349:21;45358:2;45362:7;45349:8;:21::i;:::-;44967:411;;;:::o;29250:566::-;-1:-1:-1;;;;;29326:16:0;;29345:1;29326:16;;;:7;:16;;;;;;29318:71;;;;-1:-1:-1;;;29318:71:0;;;;;;;:::i;:::-;29402:21;29450:15;27853:14;;;27780:95;29450:15;29426:39;;:21;:39;:::i;:::-;29402:63;;29476:15;29494:58;29510:7;29519:13;29534:17;29543:7;-1:-1:-1;;;;;28529:18:0;28502:7;28529:18;;;:9;:18;;;;;;;28446:109;29534:17;29494:15;:58::i;:::-;29476:76;-1:-1:-1;29573:12:0;29565:68;;;;-1:-1:-1;;;29565:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29646:18:0;;;;;;:9;:18;;;;;:29;;29668:7;;29646:18;:29;;29668:7;;29646:29;:::i;:::-;;;;;;;;29704:7;29686:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;29724:35:0;;-1:-1:-1;29742:7:0;29751;29724:17;:35::i;:::-;29775:33;;;-1:-1:-1;;;;;10431:32:1;;10413:51;;10495:2;10480:18;;10473:34;;;29775:33:0;;10386:18:1;29775:33:0;;;;;;;29250:566;;;:::o;46194:339::-;46389:41;9412:10;46422:7;46389:18;:41::i;:::-;46381:103;;;;-1:-1:-1;;;46381:103:0;;;;;;;:::i;:::-;46497:28;46507:4;46513:2;46517:7;46497:9;:28::i;66298:807::-;66371:11;;;;;;;66363:57;;;;-1:-1:-1;;;66363:57:0;;21312:2:1;66363:57:0;;;21294:21:1;21351:2;21331:18;;;21324:30;21390:34;21370:18;;;21363:62;-1:-1:-1;;;21441:18:1;;;21434:31;21482:19;;66363:57:0;21284:223:1;66363:57:0;66449:1;66439:7;:11;66431:55;;;;-1:-1:-1;;;66431:55:0;;12090:2:1;66431:55:0;;;12072:21:1;12129:2;12109:18;;;12102:30;12168:33;12148:18;;;12141:61;12219:18;;66431:55:0;12062:181:1;66431:55:0;66541:9;;66530:7;66519:8;;:18;;;;:::i;:::-;:31;;66497:120;;;;-1:-1:-1;;;66497:120:0;;;;;;;:::i;:::-;66676:9;66665:7;66650:12;;:22;;;;:::i;:::-;:35;;66628:136;;;;-1:-1:-1;;;66628:136:0;;;;;;;:::i;:::-;66784:6;;;;;;;66783:7;66775:58;;;;-1:-1:-1;;;66775:58:0;;;;;;;:::i;:::-;66844:18;;66873:225;66901:7;66895:3;:13;66873:225;;;66932:21;:9;1083:19;;1101:1;1083:19;;;994:127;66932:21;66981:9;964:14;66968:32;;67015:33;67025:10;67037;67015:9;:33::i;:::-;67074:8;;:12;;67085:1;67074:12;:::i;:::-;67063:8;:23;66910:5;;;;:::i;:::-;;;;66873:225;;56699:256;56796:7;56832:23;56849:5;56832:16;:23::i;:::-;56824:5;:31;56816:87;;;;-1:-1:-1;;;56816:87:0;;12450:2:1;56816:87:0;;;12432:21:1;12489:2;12469:18;;;12462:30;12528:34;12508:18;;;12501:62;-1:-1:-1;;;12579:18:1;;;12572:41;12630:19;;56816:87:0;12422:233:1;56816:87:0;-1:-1:-1;;;;;;56921:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;56699:256::o;46604:185::-;46742:39;46759:4;46765:2;46769:7;46742:39;;;;;;;;;;;;:16;:39::i;68377:339::-;68436:13;;;;68428:63;;;;-1:-1:-1;;;68428:63:0;;25743:2:1;68428:63:0;;;25725:21:1;25782:2;25762:18;;;25755:30;25821:34;25801:18;;;25794:62;-1:-1:-1;;;25872:18:1;;;25865:35;25917:19;;68428:63:0;25715:227:1;68428:63:0;68524:39;68543:10;68555:7;68524:18;:39::i;:::-;68502:147;;;;-1:-1:-1;;;68502:147:0;;20524:2:1;68502:147:0;;;20506:21:1;20563:2;20543:18;;;20536:30;20602:34;20582:18;;;20575:62;20673:28;20653:18;;;20646:56;20719:19;;68502:147:0;20496:248:1;68502:147:0;68660:14;68666:7;68660:5;:14::i;:::-;68707:1;68696:8;;:12;;;;:::i;:::-;68685:8;:23;-1:-1:-1;68377:339:0:o;63785:80::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;63851:6:::1;::::0;;-1:-1:-1;;63841:16:0;::::1;63851:6:::0;;;;::::1;;;63850:7;63841:16:::0;;::::1;;::::0;;63785:80::o;30084:641::-;-1:-1:-1;;;;;30166:16:0;;30185:1;30166:16;;;:7;:16;;;;;;30158:71;;;;-1:-1:-1;;;30158:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28117:26:0;;30242:21;28117:26;;;:19;:26;;;;;;30266:30;;-1:-1:-1;;;30266:30:0;;30290:4;30266:30;;;10169:51:1;-1:-1:-1;;;;;30266:15:0;;;;;10142:18:1;;30266:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;30242:77;;30330:15;30348:65;30364:7;30373:13;30388:24;30397:5;30404:7;-1:-1:-1;;;;;28821:21:0;;;28794:7;28821:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;28724:135;30348:65;30330:83;-1:-1:-1;30434:12:0;30426:68;;;;-1:-1:-1;;;30426:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30507:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;30541:7;;30507:21;:41;;30541:7;;30507:41;:::i;:::-;;;;-1:-1:-1;;;;;;;30559:26:0;;;;;;:19;:26;;;;;:37;;30589:7;;30559:26;:37;;30589:7;;30559:37;:::i;:::-;;;;-1:-1:-1;30609:47:0;;-1:-1:-1;30632:5:0;30639:7;30648;30609:22;:47::i;:::-;30672:45;;;-1:-1:-1;;;;;10431:32:1;;;10413:51;;10495:2;10480:18;;10473:34;;;30672:45:0;;;;;10386:18:1;30672:45:0;;;;;;;30084:641;;;;:::o;57221:233::-;57296:7;57332:30;57119:10;:17;;57031:113;57332:30;57324:5;:38;57316:95;;;;-1:-1:-1;;;57316:95:0;;25330:2:1;57316:95:0;;;25312:21:1;25369:2;25349:18;;;25342:30;25408:34;25388:18;;;25381:62;-1:-1:-1;;;25459:18:1;;;25452:42;25511:19;;57316:95:0;25302:234:1;57316:95:0;57429:10;57440:5;57429:17;;;;;;-1:-1:-1;;;57429:17:0;;;;;;;;;;;;;;;;;57422:24;;57221:233;;;:::o;68137:105::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;68212:9:::1;:22:::0;68137:105::o;64074:112::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64155:23:::1;:7;64165:13:::0;;64155:23:::1;:::i;63975:91::-:0;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64047:11:::1;::::0;;-1:-1:-1;;64032:26:0;::::1;64047:11:::0;;;;::::1;;;64046:12;64032:26:::0;;::::1;;::::0;;63975:91::o;43579:239::-;43651:7;43687:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43687:16:0;43722:19;43714:73;;;;-1:-1:-1;;;43714:73:0;;18879:2:1;43714:73:0;;;18861:21:1;18918:2;18898:18;;;18891:30;18957:34;18937:18;;;18930:62;-1:-1:-1;;;19008:18:1;;;19001:39;19057:19;;43714:73:0;18851:231:1;62866:21:0;;;;;;;:::i;64379:115::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64456:13:::1;:30:::0;;-1:-1:-1;;64456:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;64379:115::o;43309:208::-;43381:7;-1:-1:-1;;;;;43409:19:0;;43401:74;;;;-1:-1:-1;;;43401:74:0;;18468:2:1;43401:74:0;;;18450:21:1;18507:2;18487:18;;;18480:30;18546:34;18526:18;;;18519:62;-1:-1:-1;;;18597:18:1;;;18590:40;18647:19;;43401:74:0;18440:232:1;43401:74:0;-1:-1:-1;;;;;;43493:16:0;;;;;:9;:16;;;;;;;43309:208::o;11259:103::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;11324:30:::1;11351:1;11324:18;:30::i;:::-;11259:103::o:0;68250:119::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;68331:13:::1;:30:::0;68250:119::o;28950:100::-;29001:7;29028;29036:5;29028:14;;;;;;-1:-1:-1;;;29028:14:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29028:14:0;;28950:100;-1:-1:-1;;28950:100:0:o;44054:104::-;44110:13;44143:7;44136:14;;;;;:::i;45737:155::-;45832:52;9412:10;45865:8;45875;45832:18;:52::i;:::-;45737:155;;:::o;64302:69::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64348:8:::1;:15:::0;;-1:-1:-1;;64348:15:0::1;;;::::0;;64302:69::o;64504:659::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64637:9:::1;::::0;64605:8:::1;::::0;:28:::1;::::0;64616:10;;64605:28:::1;:::i;:::-;:41;;64583:136;;;::::0;-1:-1:-1;;;64583:136:0;;20110:2:1;64583:136:0::1;::::0;::::1;20092:21:1::0;20149:2;20129:18;;;20122:30;20188:34;20168:18;;;20161:62;-1:-1:-1;;;20239:18:1;;;20232:43;20292:19;;64583:136:0::1;20082:235:1::0;64583:136:0::1;64732:18;::::0;64761:395:::1;64783:23:::0;;::::1;64761:395;;;64883:1;64856:10:::0;;64867:3;64856:15;;::::1;;;-1:-1:-1::0;;;64856:15:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;64856:29:0::1;;;64830:140;;;::::0;-1:-1:-1;;;64830:140:0;;22127:2:1;64830:140:0::1;::::0;::::1;22109:21:1::0;22166:2;22146:18;;;22139:30;22205:34;22185:18;;;22178:62;-1:-1:-1;;;22256:18:1;;;22249:47;22313:19;;64830:140:0::1;22099:239:1::0;64830:140:0::1;64985:21;:9;1083:19:::0;;1101:1;1083:19;;;994:127;64985:21:::1;65034:9;964:14:::0;65021:32:::1;;65068:38;65078:10;;65089:3;65078:15;;;;;-1:-1:-1::0;;;65078:15:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65095:10;65068:9;:38::i;:::-;65132:8;::::0;:12:::1;::::0;65143:1:::1;65132:12;:::i;:::-;65121:8;:23:::0;64808:5;::::1;::::0;::::1;:::i;:::-;;;;64761:395;;;;10899:1;64504:659:::0;;:::o;46860:328::-;47035:41;9412:10;47068:7;47035:18;:41::i;:::-;47027:103;;;;-1:-1:-1;;;47027:103:0;;;;;;;:::i;:::-;47141:39;47155:4;47161:2;47165:7;47174:5;47141:13;:39::i;62929:37::-;;;;;;;:::i;67113:723::-;48763:4;48787:16;;;:7;:16;;;;;;67231:13;;-1:-1:-1;;;;;48787:16:0;67262:113;;;;-1:-1:-1;;;67262:113:0;;23316:2:1;67262:113:0;;;23298:21:1;23355:2;23335:18;;;23328:30;23394:34;23374:18;;;23367:62;-1:-1:-1;;;23445:18:1;;;23438:45;23500:19;;67262:113:0;23288:237:1;67262:113:0;67390:8;;;;;;;67386:71;;67431:14;67424:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67113:723;;;:::o;67386:71::-;67469:28;67500:10;:8;:10::i;:::-;67469:41;;67572:1;67547:14;67541:28;:32;:287;;;;;;;;;;;;;;;;;67665:14;67706:18;:7;:16;:18::i;:::-;67751:13;67622:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67541:287;67521:307;67113:723;-1:-1:-1;;;67113:723:0:o;65171:1119::-;65245:12;;;;;;;65237:59;;;;-1:-1:-1;;;65237:59:0;;19707:2:1;65237:59:0;;;19689:21:1;19746:2;19726:18;;;19719:30;19785:34;19765:18;;;19758:62;-1:-1:-1;;;19836:18:1;;;19829:32;19878:19;;65237:59:0;19679:224:1;65237:59:0;65316:6;;;;;;;65315:7;65307:58;;;;-1:-1:-1;;;65307:58:0;;;;;;;:::i;:::-;65409:1;65398:7;:12;;65376:111;;;;-1:-1:-1;;;65376:111:0;;;;;;;:::i;:::-;65538:10;65520:29;;;;:17;:29;;;;;;65563:1;;65520:39;;65552:7;;65520:39;:::i;:::-;:44;;65498:143;;;;-1:-1:-1;;;65498:143:0;;;;;;;:::i;:::-;65698:9;;65687:7;65676:8;;:18;;;;:::i;:::-;:31;;65654:120;;;;-1:-1:-1;;;65654:120:0;;;;;;;:::i;:::-;65836:9;65825:7;65807:15;;:25;;;;:::i;:::-;:38;;65785:139;;;;-1:-1:-1;;;65785:139:0;;;;;;;:::i;:::-;65935:18;;65964:319;65992:7;65986:3;:13;65964:319;;;66023:21;:9;1083:19;;1101:1;1083:19;;;994:127;66023:21;66072:9;964:14;66059:32;;66106:33;66116:10;66128;66106:9;:33::i;:::-;66204:10;66186:29;;;;:17;:29;;;;;;:33;;66218:1;66186:33;:::i;:::-;66172:10;66154:29;;;;:17;:29;;;;;:65;66245:8;;:12;;66256:1;66245:12;:::i;:::-;66234:8;:23;66001:5;;;;:::i;:::-;;;;65964:319;;63873:94;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;63947:12:::1;::::0;;-1:-1:-1;;63931:28:0;::::1;63947:12:::0;;;;::::1;;;63946:13;63931:28:::0;;::::1;;::::0;;63873:94::o;67844:151::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;67954:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;68003:126::-:0;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;68089:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;11517:201::-:0;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11606:22:0;::::1;11598:73;;;::::0;-1:-1:-1;;;11598:73:0;;13281:2:1;11598:73:0::1;::::0;::::1;13263:21:1::0;13320:2;13300:18;;;13293:30;13359:34;13339:18;;;13332:62;-1:-1:-1;;;13410:18:1;;;13403:36;13456:19;;11598:73:0::1;13253:228:1::0;11598:73:0::1;11682:28;11701:8;11682:18;:28::i;:::-;11517:201:::0;:::o;42940:305::-;43042:4;-1:-1:-1;;;;;;43079:40:0;;-1:-1:-1;;;43079:40:0;;:105;;-1:-1:-1;;;;;;;43136:48:0;;-1:-1:-1;;;43136:48:0;43079:105;:158;;;-1:-1:-1;;;;;;;;;;34745:40:0;;;43201:36;34636:157;52680:174;52755:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;52755:29:0;-1:-1:-1;;;;;52755:29:0;;;;;;;;:24;;52809:23;52755:24;52809:14;:23::i;:::-;-1:-1:-1;;;;;52800:46:0;;;;;;;;;;;52680:174;;:::o;30903:248::-;31113:12;;-1:-1:-1;;;;;31093:16:0;;31049:7;31093:16;;;:7;:16;;;;;;31049:7;;31128:15;;31077:32;;:13;:32;:::i;:::-;31076:49;;;;:::i;:::-;:67;;;;:::i;:::-;31069:74;30903:248;-1:-1:-1;;;;30903:248:0:o;14218:317::-;14333:6;14308:21;:31;;14300:73;;;;-1:-1:-1;;;14300:73:0;;16045:2:1;14300:73:0;;;16027:21:1;16084:2;16064:18;;;16057:30;16123:31;16103:18;;;16096:59;16172:18;;14300:73:0;16017:179:1;14300:73:0;14387:12;14405:9;-1:-1:-1;;;;;14405:14:0;14427:6;14405:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14386:52;;;14457:7;14449:78;;;;-1:-1:-1;;;14449:78:0;;15618:2:1;14449:78:0;;;15600:21:1;15657:2;15637:18;;;15630:30;15696:34;15676:18;;;15669:62;15767:28;15747:18;;;15740:56;15813:19;;14449:78:0;15590:248:1;48992:348:0;49085:4;48787:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48787:16:0;49102:73;;;;-1:-1:-1;;;49102:73:0;;16810:2:1;49102:73:0;;;16792:21:1;16849:2;16829:18;;;16822:30;16888:34;16868:18;;;16861:62;-1:-1:-1;;;16939:18:1;;;16932:42;16991:19;;49102:73:0;16782:234:1;49102:73:0;49186:13;49202:23;49217:7;49202:14;:23::i;:::-;49186:39;;49255:5;-1:-1:-1;;;;;49244:16:0;:7;-1:-1:-1;;;;;49244:16:0;;:51;;;;49288:7;-1:-1:-1;;;;;49264:31:0;:20;49276:7;49264:11;:20::i;:::-;-1:-1:-1;;;;;49264:31:0;;49244:51;:87;;;-1:-1:-1;;;;;;46084:25:0;;;46060:4;46084:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;49236:96;48992:348;-1:-1:-1;;;;48992:348:0:o;51984:578::-;52143:4;-1:-1:-1;;;;;52116:31:0;:23;52131:7;52116:14;:23::i;:::-;-1:-1:-1;;;;;52116:31:0;;52108:85;;;;-1:-1:-1;;;52108:85:0;;22906:2:1;52108:85:0;;;22888:21:1;22945:2;22925:18;;;22918:30;22984:34;22964:18;;;22957:62;-1:-1:-1;;;23035:18:1;;;23028:39;23084:19;;52108:85:0;22878:231:1;52108:85:0;-1:-1:-1;;;;;52212:16:0;;52204:65;;;;-1:-1:-1;;;52204:65:0;;14859:2:1;52204:65:0;;;14841:21:1;14898:2;14878:18;;;14871:30;14937:34;14917:18;;;14910:62;-1:-1:-1;;;14988:18:1;;;14981:34;15032:19;;52204:65:0;14831:226:1;52204:65:0;52282:39;52303:4;52309:2;52313:7;52282:20;:39::i;:::-;52386:29;52403:1;52407:7;52386:8;:29::i;:::-;-1:-1:-1;;;;;52428:15:0;;;;;;:9;:15;;;;;:20;;52447:1;;52428:15;:20;;52447:1;;52428:20;:::i;:::-;;;;-1:-1:-1;;;;;;;52459:13:0;;;;;;:9;:13;;;;;:18;;52476:1;;52459:13;:18;;52476:1;;52459:18;:::i;:::-;;;;-1:-1:-1;;52488:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;52488:21:0;-1:-1:-1;;;;;52488:21:0;;;;;;;;;52527:27;;52488:16;;52527:27;;;;;;;51984:578;;;:::o;49682:110::-;49758:26;49768:2;49772:7;49758:26;;;;;;;;;;;;:9;:26::i;51287:360::-;51347:13;51363:23;51378:7;51363:14;:23::i;:::-;51347:39;;51399:48;51420:5;51435:1;51439:7;51399:20;:48::i;:::-;51488:29;51505:1;51509:7;51488:8;:29::i;:::-;-1:-1:-1;;;;;51530:16:0;;;;;;:9;:16;;;;;:21;;51550:1;;51530:16;:21;;51550:1;;51530:21;:::i;:::-;;;;-1:-1:-1;;51569:16:0;;;;:7;:16;;;;;;51562:23;;-1:-1:-1;;;;;;51562:23:0;;;51603:36;51577:7;;51569:16;-1:-1:-1;;;;;51603:36:0;;;;;51569:16;;51603:36;51287:360;;:::o;20924:211::-;21068:58;;;-1:-1:-1;;;;;10431:32:1;;21068:58:0;;;10413:51:1;10480:18;;;;10473:34;;;21068:58:0;;;;;;;;;;10386:18:1;;;;21068:58:0;;;;;;;;-1:-1:-1;;;;;21068:58:0;-1:-1:-1;;;21068:58:0;;;21041:86;;21061:5;;21041:19;:86::i;11878:191::-;11971:6;;;-1:-1:-1;;;;;11988:17:0;;;-1:-1:-1;;;;;;11988:17:0;;;;;;;12021:40;;11971:6;;;11988:17;11971:6;;12021:40;;11952:16;;12021:40;11878:191;;:::o;52996:315::-;53151:8;-1:-1:-1;;;;;53142:17:0;:5;-1:-1:-1;;;;;53142:17:0;;;53134:55;;;;-1:-1:-1;;;53134:55:0;;15264:2:1;53134:55:0;;;15246:21:1;15303:2;15283:18;;;15276:30;15342:27;15322:18;;;15315:55;15387:18;;53134:55:0;15236:175:1;53134:55:0;-1:-1:-1;;;;;53200:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;53200:46:0;;;;;;;;;;53262:41;;11430::1;;;53262::0;;11403:18:1;53262:41:0;;;;;;;52996:315;;;:::o;48070:::-;48227:28;48237:4;48243:2;48247:7;48227:9;:28::i;:::-;48274:48;48297:4;48303:2;48307:7;48316:5;48274:22;:48::i;:::-;48266:111;;;;-1:-1:-1;;;48266:111:0;;;;;;;:::i;64194:100::-;64246:13;64279:7;64272:14;;;;;:::i;6894:723::-;6950:13;7171:10;7167:53;;-1:-1:-1;;7198:10:0;;;;;;;;;;;;-1:-1:-1;;;7198:10:0;;;;;6894:723::o;7167:53::-;7245:5;7230:12;7286:78;7293:9;;7286:78;;7319:8;;;;:::i;:::-;;-1:-1:-1;7342:10:0;;-1:-1:-1;7350:2:0;7342:10;;:::i;:::-;;;7286:78;;;7374:19;7406:6;7396:17;;;;;;-1:-1:-1;;;7396:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7396:17:0;;7374:39;;7424:154;7431:10;;7424:154;;7458:11;7468:1;7458:11;;:::i;:::-;;-1:-1:-1;7527:10:0;7535:2;7527:5;:10;:::i;:::-;7514:24;;:2;:24;:::i;:::-;7501:39;;7484:6;7491;7484:14;;;;;;-1:-1:-1;;;7484:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;7484:56:0;;;;;;;;-1:-1:-1;7555:11:0;7564:2;7555:11;;:::i;:::-;;;7424:154;;58067:589;-1:-1:-1;;;;;58273:18:0;;58269:187;;58308:40;58340:7;59483:10;:17;;59456:24;;;;:15;:24;;;;;:44;;;59511:24;;;;;;;;;;;;59379:164;58308:40;58269:187;;;58378:2;-1:-1:-1;;;;;58370:10:0;:4;-1:-1:-1;;;;;58370:10:0;;58366:90;;58397:47;58430:4;58436:7;58397:32;:47::i;:::-;-1:-1:-1;;;;;58470:16:0;;58466:183;;58503:45;58540:7;58503:36;:45::i;58466:183::-;58576:4;-1:-1:-1;;;;;58570:10:0;:2;-1:-1:-1;;;;;58570:10:0;;58566:83;;58597:40;58625:2;58629:7;58597:27;:40::i;50019:321::-;50149:18;50155:2;50159:7;50149:5;:18::i;:::-;50200:54;50231:1;50235:2;50239:7;50248:5;50200:22;:54::i;:::-;50178:154;;;;-1:-1:-1;;;50178:154:0;;;;;;;:::i;23497:716::-;23921:23;23947:69;23975:4;23947:69;;;;;;;;;;;;;;;;;23955:5;-1:-1:-1;;;;;23947:27:0;;;:69;;;;;:::i;:::-;24031:17;;23921:95;;-1:-1:-1;24031:21:0;24027:179;;24128:10;24117:30;;;;;;;;;;;;:::i;:::-;24109:85;;;;-1:-1:-1;;;24109:85:0;;26149:2:1;24109:85:0;;;26131:21:1;26188:2;26168:18;;;26161:30;26227:34;26207:18;;;26200:62;-1:-1:-1;;;26278:18:1;;;26271:40;26328:19;;24109:85:0;26121:232:1;53876:799:0;54031:4;-1:-1:-1;;;;;54052:13:0;;13219:20;13267:8;54048:620;;54088:72;;-1:-1:-1;;;54088:72:0;;-1:-1:-1;;;;;54088:36:0;;;;;:72;;9412:10;;54139:4;;54145:7;;54154:5;;54088:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54088:72:0;;;;;;;;-1:-1:-1;;54088:72:0;;;;;;;;;;;;:::i;:::-;;;54084:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54330:13:0;;54326:272;;54373:60;;-1:-1:-1;;;54373:60:0;;;;;;;:::i;54326:272::-;54548:6;54542:13;54533:6;54529:2;54525:15;54518:38;54084:529;-1:-1:-1;;;;;;54211:51:0;-1:-1:-1;;;54211:51:0;;-1:-1:-1;54204:58:0;;54048:620;-1:-1:-1;54652:4:0;53876:799;;;;;;:::o;60170:988::-;60436:22;60486:1;60461:22;60478:4;60461:16;:22::i;:::-;:26;;;;:::i;:::-;60498:18;60519:26;;;:17;:26;;;;;;60436:51;;-1:-1:-1;60652:28:0;;;60648:328;;-1:-1:-1;;;;;60719:18:0;;60697:19;60719:18;;;:12;:18;;;;;;;;:34;;;;;;;;;60770:30;;;;;;:44;;;60887:30;;:17;:30;;;;;:43;;;60648:328;-1:-1:-1;61072:26:0;;;;:17;:26;;;;;;;;61065:33;;;-1:-1:-1;;;;;61116:18:0;;;;;:12;:18;;;;;:34;;;;;;;61109:41;60170:988::o;61453:1079::-;61731:10;:17;61706:22;;61731:21;;61751:1;;61731:21;:::i;:::-;61763:18;61784:24;;;:15;:24;;;;;;62157:10;:26;;61706:46;;-1:-1:-1;61784:24:0;;61706:46;;62157:26;;;;-1:-1:-1;;;62157:26:0;;;;;;;;;;;;;;;;;62135:48;;62221:11;62196:10;62207;62196:22;;;;;;-1:-1:-1;;;62196:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;62301:28;;;:15;:28;;;;;;;:41;;;62473:24;;;;;62466:31;62508:10;:16;;;;;-1:-1:-1;;;62508:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;61453:1079;;;;:::o;58957:221::-;59042:14;59059:20;59076:2;59059:16;:20::i;:::-;-1:-1:-1;;;;;59090:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;59135:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;58957:221:0:o;50676:382::-;-1:-1:-1;;;;;50756:16:0;;50748:61;;;;-1:-1:-1;;;50748:61:0;;20951:2:1;50748:61:0;;;20933:21:1;;;20970:18;;;20963:30;21029:34;21009:18;;;21002:62;21081:18;;50748:61:0;20923:182:1;50748:61:0;48763:4;48787:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48787:16:0;:30;50820:58;;;;-1:-1:-1;;;50820:58:0;;13688:2:1;50820:58:0;;;13670:21:1;13727:2;13707:18;;;13700:30;13766;13746:18;;;13739:58;13814:18;;50820:58:0;13660:178:1;50820:58:0;50891:45;50920:1;50924:2;50928:7;50891:20;:45::i;:::-;-1:-1:-1;;;;;50949:13:0;;;;;;:9;:13;;;;;:18;;50966:1;;50949:13;:18;;50966:1;;50949:18;:::i;:::-;;;;-1:-1:-1;;50978:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;50978:21:0;-1:-1:-1;;;;;50978:21:0;;;;;;;;51017:33;;50978:16;;;51017:33;;50978:16;;51017:33;50676:382;;:::o;15702:229::-;15839:12;15871:52;15893:6;15901:4;15907:1;15910:12;15839;13219:20;;17109:60;;;;-1:-1:-1;;;17109:60:0;;24972:2:1;17109:60:0;;;24954:21:1;25011:2;24991:18;;;24984:30;25050:31;25030:18;;;25023:59;25099:18;;17109:60:0;24944:179:1;17109:60:0;17183:12;17197:23;17224:6;-1:-1:-1;;;;;17224:11:0;17243:5;17250:4;17224:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17182:73;;;;17273:51;17290:7;17299:10;17311:12;17273:16;:51::i;:::-;17266:58;16822:510;-1:-1:-1;;;;;;;16822:510:0:o;19508:712::-;19658:12;19687:7;19683:530;;;-1:-1:-1;19718:10:0;19711:17;;19683:530;19832:17;;:21;19828:374;;20030:10;20024:17;20091:15;20078:10;20074:2;20070:19;20063:44;19978:148;20173:12;20166:20;;-1:-1:-1;;;20166:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:257::-;709:6;762:2;750:9;741:7;737:23;733:32;730:2;;;783:6;775;768:22;730:2;827:9;814:23;846:31;871:5;846:31;:::i;1182:398::-;1250:6;1258;1311:2;1299:9;1290:7;1286:23;1282:32;1279:2;;;1332:6;1324;1317:22;1279:2;1376:9;1363:23;1395:31;1420:5;1395:31;:::i;:::-;1445:5;-1:-1:-1;1502:2:1;1487:18;;1474:32;1515:33;1474:32;1515:33;:::i;:::-;1567:7;1557:17;;;1269:311;;;;;:::o;1585:466::-;1662:6;1670;1678;1731:2;1719:9;1710:7;1706:23;1702:32;1699:2;;;1752:6;1744;1737:22;1699:2;1796:9;1783:23;1815:31;1840:5;1815:31;:::i;:::-;1865:5;-1:-1:-1;1922:2:1;1907:18;;1894:32;1935:33;1894:32;1935:33;:::i;:::-;1689:362;;1987:7;;-1:-1:-1;;;2041:2:1;2026:18;;;;2013:32;;1689:362::o;2056:824::-;2151:6;2159;2167;2175;2228:3;2216:9;2207:7;2203:23;2199:33;2196:2;;;2250:6;2242;2235:22;2196:2;2294:9;2281:23;2313:31;2338:5;2313:31;:::i;:::-;2363:5;-1:-1:-1;2420:2:1;2405:18;;2392:32;2433:33;2392:32;2433:33;:::i;:::-;2485:7;-1:-1:-1;2539:2:1;2524:18;;2511:32;;-1:-1:-1;2594:2:1;2579:18;;2566:32;2621:18;2610:30;;2607:2;;;2658:6;2650;2643:22;2607:2;2686:22;;2739:4;2731:13;;2727:27;-1:-1:-1;2717:2:1;;2773:6;2765;2758:22;2717:2;2801:73;2866:7;2861:2;2848:16;2843:2;2839;2835:11;2801:73;:::i;:::-;2791:83;;;2186:694;;;;;;;:::o;2885:392::-;2950:6;2958;3011:2;2999:9;2990:7;2986:23;2982:32;2979:2;;;3032:6;3024;3017:22;2979:2;3076:9;3063:23;3095:31;3120:5;3095:31;:::i;:::-;3145:5;-1:-1:-1;3202:2:1;3187:18;;3174:32;3215:30;3174:32;3215:30;:::i;3282:325::-;3350:6;3358;3411:2;3399:9;3390:7;3386:23;3382:32;3379:2;;;3432:6;3424;3417:22;3379:2;3476:9;3463:23;3495:31;3520:5;3495:31;:::i;:::-;3545:5;3597:2;3582:18;;;;3569:32;;-1:-1:-1;;;3369:238:1:o;3612:665::-;3698:6;3706;3759:2;3747:9;3738:7;3734:23;3730:32;3727:2;;;3780:6;3772;3765:22;3727:2;3825:9;3812:23;3854:18;3895:2;3887:6;3884:14;3881:2;;;3916:6;3908;3901:22;3881:2;3959:6;3948:9;3944:22;3934:32;;4004:7;3997:4;3993:2;3989:13;3985:27;3975:2;;4031:6;4023;4016:22;3975:2;4076;4063:16;4102:2;4094:6;4091:14;4088:2;;;4123:6;4115;4108:22;4088:2;4181:7;4176:2;4166:6;4163:1;4159:14;4155:2;4151:23;4147:32;4144:45;4141:2;;;4207:6;4199;4192:22;4141:2;4243;4235:11;;;;;4265:6;;-1:-1:-1;3717:560:1;;-1:-1:-1;;;;3717:560:1:o;4282:251::-;4338:6;4391:2;4379:9;4370:7;4366:23;4362:32;4359:2;;;4412:6;4404;4397:22;4359:2;4456:9;4443:23;4475:28;4497:5;4475:28;:::i;4538:255::-;4605:6;4658:2;4646:9;4637:7;4633:23;4629:32;4626:2;;;4679:6;4671;4664:22;4626:2;4716:9;4710:16;4735:28;4757:5;4735:28;:::i;4798:190::-;4857:6;4910:2;4898:9;4889:7;4885:23;4881:32;4878:2;;;4931:6;4923;4916:22;4878:2;-1:-1:-1;4959:23:1;;4868:120;-1:-1:-1;4868:120:1:o;4993:255::-;5051:6;5104:2;5092:9;5083:7;5079:23;5075:32;5072:2;;;5125:6;5117;5110:22;5072:2;5169:9;5156:23;5188:30;5212:5;5188:30;:::i;5253:259::-;5322:6;5375:2;5363:9;5354:7;5350:23;5346:32;5343:2;;;5396:6;5388;5381:22;5343:2;5433:9;5427:16;5452:30;5476:5;5452:30;:::i;5793:412::-;5875:6;5883;5936:2;5924:9;5915:7;5911:23;5907:32;5904:2;;;5957:6;5949;5942:22;6210:642;6281:6;6289;6342:2;6330:9;6321:7;6317:23;6313:32;6310:2;;;6363:6;6355;6348:22;6310:2;6408:9;6395:23;6437:18;6478:2;6470:6;6467:14;6464:2;;;6499:6;6491;6484:22;6464:2;6542:6;6531:9;6527:22;6517:32;;6587:7;6580:4;6576:2;6572:13;6568:27;6558:2;;6614:6;6606;6599:22;6558:2;6659;6646:16;6685:2;6677:6;6674:14;6671:2;;;6706:6;6698;6691:22;6671:2;6756:7;6751:2;6742:6;6738:2;6734:15;6730:24;6727:37;6724:2;;;6782:6;6774;6767:22;6857:480;6926:6;6979:2;6967:9;6958:7;6954:23;6950:32;6947:2;;;7000:6;6992;6985:22;6947:2;7045:9;7032:23;7078:18;7070:6;7067:30;7064:2;;;7115:6;7107;7100:22;7064:2;7143:22;;7196:4;7188:13;;7184:27;-1:-1:-1;7174:2:1;;7230:6;7222;7215:22;7174:2;7258:73;7323:7;7318:2;7305:16;7300:2;7296;7292:11;7258:73;:::i;7537:194::-;7607:6;7660:2;7648:9;7639:7;7635:23;7631:32;7628:2;;;7681:6;7673;7666:22;7628:2;-1:-1:-1;7709:16:1;;7618:113;-1:-1:-1;7618:113:1:o;7736:257::-;7777:3;7815:5;7809:12;7842:6;7837:3;7830:19;7858:63;7914:6;7907:4;7902:3;7898:14;7891:4;7884:5;7880:16;7858:63;:::i;:::-;7975:2;7954:15;-1:-1:-1;;7950:29:1;7941:39;;;;7982:4;7937:50;;7785:208;-1:-1:-1;;7785:208:1:o;7998:274::-;8127:3;8165:6;8159:13;8181:53;8227:6;8222:3;8215:4;8207:6;8203:17;8181:53;:::i;:::-;8250:16;;;;;8135:137;-1:-1:-1;;8135:137:1:o;8277:1531::-;8501:3;8539:6;8533:13;8565:4;8578:51;8622:6;8617:3;8612:2;8604:6;8600:15;8578:51;:::i;:::-;8692:13;;8651:16;;;;8714:55;8692:13;8651:16;8736:15;;;8714:55;:::i;:::-;8860:13;;8791:20;;;8831:3;;8920:1;8942:18;;;;8995;;;;9022:2;;9100:4;9090:8;9086:19;9074:31;;9022:2;9163;9153:8;9150:16;9130:18;9127:40;9124:2;;;-1:-1:-1;;;9190:33:1;;9246:4;9243:1;9236:15;9276:4;9197:3;9264:17;9124:2;9307:18;9334:110;;;;9458:1;9453:330;;;;9300:483;;9334:110;-1:-1:-1;;9369:24:1;;9355:39;;9414:20;;;;-1:-1:-1;9334:110:1;;9453:330;26587:4;26606:17;;;26656:4;26640:21;;9548:3;9564:169;9578:8;9575:1;9572:15;9564:169;;;9660:14;;9645:13;;;9638:37;9703:16;;;;9595:10;;9564:169;;;9568:3;;9764:8;9757:5;9753:20;9746:27;;9300:483;-1:-1:-1;9799:3:1;;8509:1299;-1:-1:-1;;;;;;;;;;;8509:1299:1:o;10518:488::-;-1:-1:-1;;;;;10787:15:1;;;10769:34;;10839:15;;10834:2;10819:18;;10812:43;10886:2;10871:18;;10864:34;;;10934:3;10929:2;10914:18;;10907:31;;;10712:4;;10955:45;;10980:19;;10972:6;10955:45;:::i;:::-;10947:53;10721:285;-1:-1:-1;;;;;;10721:285:1:o;11664:219::-;11813:2;11802:9;11795:21;11776:4;11833:44;11873:2;11862:9;11858:18;11850:6;11833:44;:::i;12660:414::-;12862:2;12844:21;;;12901:2;12881:18;;;12874:30;12940:34;12935:2;12920:18;;12913:62;-1:-1:-1;;;13006:2:1;12991:18;;12984:48;13064:3;13049:19;;12834:240::o;13843:402::-;14045:2;14027:21;;;14084:2;14064:18;;;14057:30;14123:34;14118:2;14103:18;;14096:62;-1:-1:-1;;;14189:2:1;14174:18;;14167:36;14235:3;14220:19;;14017:228::o;14250:402::-;14452:2;14434:21;;;14491:2;14471:18;;;14464:30;14530:34;14525:2;14510:18;;14503:62;-1:-1:-1;;;14596:2:1;14581:18;;14574:36;14642:3;14627:19;;14424:228::o;17021:407::-;17223:2;17205:21;;;17262:2;17242:18;;;17235:30;17301:34;17296:2;17281:18;;17274:62;-1:-1:-1;;;17367:2:1;17352:18;;17345:41;17418:3;17403:19;;17195:233::o;17433:403::-;17635:2;17617:21;;;17674:2;17654:18;;;17647:30;17713:34;17708:2;17693:18;;17686:62;-1:-1:-1;;;17779:2:1;17764:18;;17757:37;17826:3;17811:19;;17607:229::o;19087:413::-;19289:2;19271:21;;;19328:2;19308:18;;;19301:30;19367:34;19362:2;19347:18;;19340:62;-1:-1:-1;;;19433:2:1;19418:18;;19411:47;19490:3;19475:19;;19261:239::o;22343:356::-;22545:2;22527:21;;;22564:18;;;22557:30;22623:34;22618:2;22603:18;;22596:62;22690:2;22675:18;;22517:182::o;23932:415::-;24134:2;24116:21;;;24173:2;24153:18;;;24146:30;24212:34;24207:2;24192:18;;24185:62;-1:-1:-1;;;24278:2:1;24263:18;;24256:49;24337:3;24322:19;;24106:241::o;24352:413::-;24554:2;24536:21;;;24593:2;24573:18;;;24566:30;24632:34;24627:2;24612:18;;24605:62;-1:-1:-1;;;24698:2:1;24683:18;;24676:47;24755:3;24740:19;;24526:239::o;26672:128::-;26712:3;26743:1;26739:6;26736:1;26733:13;26730:2;;;26749:18;;:::i;:::-;-1:-1:-1;26785:9:1;;26720:80::o;26805:120::-;26845:1;26871;26861:2;;26876:18;;:::i;:::-;-1:-1:-1;26910:9:1;;26851:74::o;26930:168::-;26970:7;27036:1;27032;27028:6;27024:14;27021:1;27018:21;27013:1;27006:9;26999:17;26995:45;26992:2;;;27043:18;;:::i;:::-;-1:-1:-1;27083:9:1;;26982:116::o;27103:125::-;27143:4;27171:1;27168;27165:8;27162:2;;;27176:18;;:::i;:::-;-1:-1:-1;27213:9:1;;27152:76::o;27233:258::-;27305:1;27315:113;27329:6;27326:1;27323:13;27315:113;;;27405:11;;;27399:18;27386:11;;;27379:39;27351:2;27344:10;27315:113;;;27446:6;27443:1;27440:13;27437:2;;;-1:-1:-1;;27481:1:1;27463:16;;27456:27;27286:205::o;27496:380::-;27575:1;27571:12;;;;27618;;;27639:2;;27693:4;27685:6;27681:17;27671:27;;27639:2;27746;27738:6;27735:14;27715:18;27712:38;27709:2;;;27792:10;27787:3;27783:20;27780:1;27773:31;27827:4;27824:1;27817:15;27855:4;27852:1;27845:15;27709:2;;27551:325;;;:::o;27881:135::-;27920:3;-1:-1:-1;;27941:17:1;;27938:2;;;27961:18;;:::i;:::-;-1:-1:-1;28008:1:1;27997:13;;27928:88::o;28021:112::-;28053:1;28079;28069:2;;28084:18;;:::i;:::-;-1:-1:-1;28118:9:1;;28059:74::o;28138:127::-;28199:10;28194:3;28190:20;28187:1;28180:31;28230:4;28227:1;28220:15;28254:4;28251:1;28244:15;28270:127;28331:10;28326:3;28322:20;28319:1;28312:31;28362:4;28359:1;28352:15;28386:4;28383:1;28376:15;28402:127;28463:10;28458:3;28454:20;28451:1;28444:31;28494:4;28491:1;28484:15;28518:4;28515:1;28508:15;28534:131;-1:-1:-1;;;;;28609:31:1;;28599:42;;28589:2;;28655:1;28652;28645:12;28670:118;28756:5;28749:13;28742:21;28735:5;28732:32;28722:2;;28778:1;28775;28768:12;28793:131;-1:-1:-1;;;;;;28867:32:1;;28857:43;;28847:2;;28914:1;28911;28904:12

Swarm Source

ipfs://3f24a1f764d6977b11286e91f871dad8c3ef6bd01f452fd3872efc2b733e1cec
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.