ETH Price: $3,047.09 (+2.24%)
Gas: 2 Gwei

Token

Bored Mutant Bunny (BMB)
 

Overview

Max Total Supply

532 BMB

Holders

376

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 BMB
0x56f158bc2ce451dd4264db6c2121afffd0723669
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:
BoredMutantBunny

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-02-08
*/

// 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/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// 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/BoredMutantBunny.sol



pragma solidity ^0.8.4;







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

    uint256 public maxSupply = 3000;
    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 whitelistMintState = false;
    bool public publicState = false;

    mapping(address => uint256) public _whitelistClaimed;

    uint256 _price = 250000000000000000; //0.25 ETH

    bytes32 public whitelistMintRoot;

    Counters.Counter private _tokenIds;

    uint256[] private _teamShares = [50, 50];
    address[] private _team = [
        0x0e04Ba718d3C7AC4d7c8fA357ab73ABdD45d89dC,
        0x9C8DbC726637cA085cFCa161Baf9baa3eBF990f8
    ];

    constructor()
        ERC721("Bored Mutant Bunny", "BMB")
        PaymentSplitter(_team, _teamShares)
    {}

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

    function changeWhitelistMintState() public onlyOwner {
        whitelistMintState = !whitelistMintState;
    }

    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,
            "Bored Mutant Bunny: max total supply exceeded"
        );

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

    function whitelistMint(uint256 _amount, bytes32[] memory proof) external payable {
        require(whitelistMintState, "Bored Mutant Bunny: Whitelist Mint is OFF");
        require(!paused, "Bored Mutant Bunny: contract is paused");
        require(
            _amount <= 2,
            "Bored Mutant Bunny: You can't mint so much tokens"
        );
        require(
            _whitelistClaimed[msg.sender] + _amount <= 2,
            "Bored Mutant Bunny: You can't mint so much tokens"
        );

        require(verifyWhitelistMint(msg.sender, proof), "Bored Mutant Bunny: You are not whitelisted");

        require(
            totalNFT + _amount <= maxSupply,
            "Bored Mutant Bunny: max supply exceeded"
        );
        require(
            _price * _amount <= msg.value,
            "Bored Mutant Bunny: 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, "Bored Mutant Bunny: Public is OFF");
        require(_amount > 0, "Bored Mutant Bunny: zero amount");
        require(
            totalNFT + _amount <= maxSupply,
            "Bored Mutant Bunny: max supply exceeded"
        );
        require(
            _price * _amount <= msg.value,
            "Bored Mutant Bunny: Ether value sent is not correct"
        );
        require(!paused, "Bored Mutant Bunny: 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 changeWhitelistMintRoot(bytes32 _whitelistMintRoot) public onlyOwner {
        whitelistMintRoot = _whitelistMintRoot;
    }

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

    function verifyWhitelistMint(address account, bytes32[] memory proof) public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(account));
        return MerkleProof.verify(proof, whitelistMintRoot, 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":"_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":"changePublicState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"changeTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMintRoot","type":"bytes32"}],"name":"changeWhitelistMintRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changeWhitelistMintState","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":"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verifyWhitelistMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

610bb860125560c06040526005608081905264173539b7b760d91b60a09081526200002e916016919062000598565b506017805464ffffffffff191690556703782dace9d9000060195560408051808201909152603280825260208201526200006d90601c90600262000627565b5060408051808201909152730e04ba718d3c7ac4d7c8fa357ab73abdd45d89dc8152739c8dbc726637ca085cfca161baf9baa3ebf990f86020820152620000b990601d9060026200066a565b50348015620000c757600080fd5b50601d8054806020026020016040519081016040528092919081815260200182805480156200012057602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000101575b5050505050601c8054806020026020016040519081016040528092919081815260200182805480156200017357602002820191906000526020600020905b8154815260200190600101908083116200015e575b50506040805180820182526012815271426f726564204d7574616e742042756e6e7960701b6020808301918252835180850190945260038452622126a160e91b908401528151919550919350620001cf92506000919062000598565b508051620001e590600190602084019062000598565b50505062000202620001fc6200035460201b60201c565b62000358565b8051825114620002745760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002c75760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200026b565b60005b82518110156200034b5762000336838281518110620002f957634e487b7160e01b600052603260045260246000fd5b60200260200101518383815181106200032257634e487b7160e01b600052603260045260246000fd5b6020026020010151620003aa60201b60201c565b80620003428162000731565b915050620002ca565b50505062000765565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004175760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200026b565b60008111620004695760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200026b565b6001600160a01b0382166000908152600d602052604090205415620004e55760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200026b565b600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319166001600160a01b0384169081179091556000908152600d60205260409020819055600b546200054f908290620006d9565b600b55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054620005a690620006f4565b90600052602060002090601f016020900481019282620005ca576000855562000615565b82601f10620005e557805160ff191683800117855562000615565b8280016001018555821562000615579182015b8281111562000615578251825591602001919060010190620005f8565b5062000623929150620006c2565b5090565b82805482825590600052602060002090810192821562000615579160200282015b8281111562000615578251829060ff1690559160200191906001019062000648565b82805482825590600052602060002090810192821562000615579160200282015b828111156200061557825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200068b565b5b80821115620006235760008155600101620006c3565b60008219821115620006ef57620006ef6200074f565b500190565b600181811c908216806200070957607f821691505b602082108114156200072b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200074857620007486200074f565b5060010190565b634e487b7160e01b600052601160045260246000fd5b613aa780620007756000396000f3fe6080604052600436106103535760003560e01c80636e0e5b19116101c6578063acad9a49116100f7578063d5abeb0111610095578063e33b7de31161006f578063e33b7de3146109fe578063e985e9c514610a13578063f2c4ce1e14610a5c578063f2fde38b14610a7c57600080fd5b8063d5abeb0114610992578063d79779b2146109a8578063da3ef23f146109de57600080fd5b8063c6682862116100d1578063c668286214610914578063c87b56dd14610929578063ce7c2ac214610949578063d2cab0561461097f57600080fd5b8063acad9a49146108b4578063ad80ea15146108d4578063b88d4fde146108f457600080fd5b8063922400ff11610164578063a22cb4651161013e578063a22cb4651461083d578063a475b5dd1461085d578063a5fd7bec14610872578063abfe76141461089257600080fd5b8063922400ff146107d157806395d89b41146107f25780639852595c1461080757600080fd5b8063833fdb23116101a0578063833fdb2314610751578063851a7708146107665780638b83209b146107935780638da5cb5b146107b357600080fd5b80636e0e5b19146106fc57806370a082311461071c578063715018a61461073c57600080fd5b80633a98ef39116102a0578063518302271161023e5780635c975abb116102185780635c975abb1461069257806360e5bb85146106b25780636352211e146106c75780636c0360eb146106e757600080fd5b8063518302271461063357806352e973261461065257806355f804b31461067257600080fd5b806342966c681161027a57806342966c68146105be57806346e79ffc146105de57806348b75044146105f35780634f6ccce71461061357600080fd5b80633a98ef3914610543578063406072a91461055857806342842e0e1461059e57600080fd5b8063095ea7b31161030d57806323b872dd116102e757806323b872dd146104da5780632db11544146104fa5780632f745c591461050d5780633338acea1461052d57600080fd5b8063095ea7b31461048357806318160ddd146104a557806319165587146104ba57600080fd5b8062456379146103a157806301ffc9a7146103ca57806306fdde03146103fa57806307ebec271461041c578063081812fc14610436578063081c8c441461046e57600080fd5b3661039c577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103ad57600080fd5b506103b760135481565b6040519081526020015b60405180910390f35b3480156103d657600080fd5b506103ea6103e53660046133a7565b610a9c565b60405190151581526020016103c1565b34801561040657600080fd5b5061040f610ac7565b6040516103c19190613620565b34801561042857600080fd5b506017546103ea9060ff1681565b34801561044257600080fd5b5061045661045136600461338f565b610b59565b6040516001600160a01b0390911681526020016103c1565b34801561047a57600080fd5b5061040f610bf3565b34801561048f57600080fd5b506104a361049e3660046132bc565b610c81565b005b3480156104b157600080fd5b506008546103b7565b3480156104c657600080fd5b506104a36104d5366004613130565b610d97565b3480156104e657600080fd5b506104a36104f5366004613184565b610ec5565b6104a361050836600461338f565b610ef6565b34801561051957600080fd5b506103b76105283660046132bc565b61107b565b34801561053957600080fd5b506103b7601a5481565b34801561054f57600080fd5b50600b546103b7565b34801561056457600080fd5b506103b76105733660046133df565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b3480156105aa57600080fd5b506104a36105b9366004613184565b611111565b3480156105ca57600080fd5b506104a36105d936600461338f565b61112c565b3480156105ea57600080fd5b506104a3611226565b3480156105ff57600080fd5b506104a361060e3660046133df565b61126f565b34801561061f57600080fd5b506103b761062e36600461338f565b611457565b34801561063f57600080fd5b506017546103ea90610100900460ff1681565b34801561065e57600080fd5b506104a361066d36600461338f565b6114f8565b34801561067e57600080fd5b506104a361068d3660046133f1565b611527565b34801561069e57600080fd5b506017546103ea9062010000900460ff1681565b3480156106be57600080fd5b506104a361155d565b3480156106d357600080fd5b506104566106e236600461338f565b6115aa565b3480156106f357600080fd5b5061040f611621565b34801561070857600080fd5b506104a3610717366004613357565b61162e565b34801561072857600080fd5b506103b7610737366004613130565b61166b565b34801561074857600080fd5b506104a36116f2565b34801561075d57600080fd5b506104a3611728565b34801561077257600080fd5b506103b7610781366004613130565b60186020526000908152604090205481565b34801561079f57600080fd5b506104566107ae36600461338f565b611773565b3480156107bf57600080fd5b50600a546001600160a01b0316610456565b3480156107dd57600080fd5b506017546103ea906301000000900460ff1681565b3480156107fe57600080fd5b5061040f6117b1565b34801561081357600080fd5b506103b7610822366004613130565b6001600160a01b03166000908152600e602052604090205490565b34801561084957600080fd5b506104a361085836600461328f565b6117c0565b34801561086957600080fd5b506104a36117cf565b34801561087e57600080fd5b506104a361088d3660046132e7565b61180a565b34801561089e57600080fd5b506017546103ea90640100000000900460ff1681565b3480156108c057600080fd5b506103ea6108cf366004613241565b6119d7565b3480156108e057600080fd5b506104a36108ef36600461338f565b611a28565b34801561090057600080fd5b506104a361090f3660046131c4565b611a57565b34801561092057600080fd5b5061040f611a89565b34801561093557600080fd5b5061040f61094436600461338f565b611a96565b34801561095557600080fd5b506103b7610964366004613130565b6001600160a01b03166000908152600d602052604090205490565b6104a361098d3660046134aa565b611c15565b34801561099e57600080fd5b506103b760125481565b3480156109b457600080fd5b506103b76109c3366004613130565b6001600160a01b031660009081526010602052604090205490565b3480156109ea57600080fd5b506104a36109f936600461344c565b611e43565b348015610a0a57600080fd5b50600c546103b7565b348015610a1f57600080fd5b506103ea610a2e36600461314c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a6857600080fd5b506104a3610a7736600461344c565b611e80565b348015610a8857600080fd5b506104a3610a97366004613130565b611ebd565b60006001600160e01b0319821663780e9d6360e01b1480610ac15750610ac182611f58565b92915050565b606060008054610ad69061398c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b029061398c565b8015610b4f5780601f10610b2457610100808354040283529160200191610b4f565b820191906000526020600020905b815481529060010190602001808311610b3257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bd75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60158054610c009061398c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2c9061398c565b8015610c795780601f10610c4e57610100808354040283529160200191610c79565b820191906000526020600020905b815481529060010190602001808311610c5c57829003601f168201915b505050505081565b6000610c8c826115aa565b9050806001600160a01b0316836001600160a01b03161415610cfa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bce565b336001600160a01b0382161480610d165750610d168133610a2e565b610d885760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bce565b610d928383611fa8565b505050565b6001600160a01b0381166000908152600d6020526040902054610dcc5760405162461bcd60e51b8152600401610bce906136d6565b6000610dd7600c5490565b610de190476138fe565b90506000610e0e8383610e09866001600160a01b03166000908152600e602052604090205490565b612016565b905080610e2d5760405162461bcd60e51b8152600401610bce9061371c565b6001600160a01b0383166000908152600e602052604081208054839290610e559084906138fe565b9250508190555080600c6000828254610e6e91906138fe565b90915550610e7e90508382612054565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610ecf338261216d565b610eeb5760405162461bcd60e51b8152600401610bce90613829565b610d92838383612260565b601754640100000000900460ff16610f5a5760405162461bcd60e51b815260206004820152602160248201527f426f726564204d7574616e742042756e6e793a205075626c6963206973204f466044820152602360f91b6064820152608401610bce565b60008111610faa5760405162461bcd60e51b815260206004820152601f60248201527f426f726564204d7574616e742042756e6e793a207a65726f20616d6f756e74006044820152606401610bce565b60125481601354610fbb91906138fe565b1115610fd95760405162461bcd60e51b8152600401610bce906137ad565b3481601954610fe8919061392a565b11156110065760405162461bcd60e51b8152600401610bce9061387a565b60175462010000900460ff161561102f5760405162461bcd60e51b8152600401610bce90613767565b6000805b82811015610d9257611049601b80546001019055565b601b549150611058338361240b565b6013546110669060016138fe565b60135580611073816139c7565b915050611033565b60006110868361166b565b82106110e85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bce565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610d9283838360405180602001604052806000815250611a57565b60175460ff1661118c5760405162461bcd60e51b815260206004820152602560248201527f426f726564204d7574616e742042756e6e79203a206275726e696e672064697360448201526418589b195960da1b6064820152608401610bce565b611196338261216d565b6112085760405162461bcd60e51b815260206004820152603a60248201527f426f726564204d7574616e742042756e6e79203a206275726e2063616c6c657260448201527f206973206e6f74206f776e6572206e6f7220617070726f7665640000000000006064820152608401610bce565b61121181612425565b60016013546112209190613949565b60135550565b600a546001600160a01b031633146112505760405162461bcd60e51b8152600401610bce906137f4565b6017805462ff0000198116620100009182900460ff1615909102179055565b6001600160a01b0381166000908152600d60205260409020546112a45760405162461bcd60e51b8152600401610bce906136d6565b6001600160a01b0382166000908152601060205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b1580156112fc57600080fd5b505afa158015611310573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113349190613492565b61133e91906138fe565b905060006113778383610e0987876001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b9050806113965760405162461bcd60e51b8152600401610bce9061371c565b6001600160a01b038085166000908152601160209081526040808320938716835292905290812080548392906113cd9084906138fe565b90915550506001600160a01b038416600090815260106020526040812080548392906113fa9084906138fe565b9091555061140b90508484836124cc565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600061146260085490565b82106114c55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bce565b600882815481106114e657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146115225760405162461bcd60e51b8152600401610bce906137f4565b601255565b600a546001600160a01b031633146115515760405162461bcd60e51b8152600401610bce906137f4565b610d9260148383612f48565b600a546001600160a01b031633146115875760405162461bcd60e51b8152600401610bce906137f4565b6017805464ff000000001981166401000000009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b031680610ac15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bce565b60148054610c009061398c565b600a546001600160a01b031633146116585760405162461bcd60e51b8152600401610bce906137f4565b6017805460ff1916911515919091179055565b60006001600160a01b0382166116d65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bce565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461171c5760405162461bcd60e51b8152600401610bce906137f4565b611726600061251e565b565b600a546001600160a01b031633146117525760405162461bcd60e51b8152600401610bce906137f4565b6017805463ff00000019811663010000009182900460ff1615909102179055565b6000600f828154811061179657634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b606060018054610ad69061398c565b6117cb338383612570565b5050565b600a546001600160a01b031633146117f95760405162461bcd60e51b8152600401610bce906137f4565b6017805461ff001916610100179055565b600a546001600160a01b031633146118345760405162461bcd60e51b8152600401610bce906137f4565b6012546013546118459083906138fe565b11156118a95760405162461bcd60e51b815260206004820152602d60248201527f426f726564204d7574616e742042756e6e793a206d617820746f74616c20737560448201526c1c1c1b1e48195e18d959591959609a1b6064820152608401610bce565b6000805b828110156119d15760008484838181106118d757634e487b7160e01b600052603260045260246000fd5b90506020020160208101906118ec9190613130565b6001600160a01b0316141561195d5760405162461bcd60e51b815260206004820152603160248201527f426f726564204d7574616e742042756e6e793a20726563657069656e7420697360448201527020746865206e756c6c206164647265737360781b6064820152608401610bce565b61196b601b80546001019055565b601b5491506119ae84848381811061199357634e487b7160e01b600052603260045260246000fd5b90506020020160208101906119a89190613130565b8361240b565b6013546119bc9060016138fe565b601355806119c9816139c7565b9150506118ad565b50505050565b6040516bffffffffffffffffffffffff19606084901b1660208201526000908190603401604051602081830303815290604052805190602001209050611a2083601a548361263f565b949350505050565b600a546001600160a01b03163314611a525760405162461bcd60e51b8152600401610bce906137f4565b601a55565b611a61338361216d565b611a7d5760405162461bcd60e51b8152600401610bce90613829565b6119d184848484612655565b60168054610c009061398c565b6000818152600260205260409020546060906001600160a01b0316611b155760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bce565b601754610100900460ff16611bb65760158054611b319061398c565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5d9061398c565b8015611baa5780601f10611b7f57610100808354040283529160200191611baa565b820191906000526020600020905b815481529060010190602001808311611b8d57829003601f168201915b50505050509050919050565b6000611bc0612688565b90506000815111611be05760405180602001604052806000815250611c0e565b80611bea84612697565b6016604051602001611bfe93929190613521565b6040516020818303038152906040525b9392505050565b6017546301000000900460ff16611c805760405162461bcd60e51b815260206004820152602960248201527f426f726564204d7574616e742042756e6e793a2057686974656c697374204d69604482015268373a1034b99027a32360b91b6064820152608401610bce565b60175462010000900460ff1615611ca95760405162461bcd60e51b8152600401610bce90613767565b6002821115611cca5760405162461bcd60e51b8152600401610bce90613633565b33600090815260186020526040902054600290611ce89084906138fe565b1115611d065760405162461bcd60e51b8152600401610bce90613633565b611d1033826119d7565b611d705760405162461bcd60e51b815260206004820152602b60248201527f426f726564204d7574616e742042756e6e793a20596f7520617265206e6f742060448201526a1dda1a5d195b1a5cdd195960aa1b6064820152608401610bce565b60125482601354611d8191906138fe565b1115611d9f5760405162461bcd60e51b8152600401610bce906137ad565b3482601954611dae919061392a565b1115611dcc5760405162461bcd60e51b8152600401610bce9061387a565b6000805b838110156119d157611de6601b80546001019055565b601b549150611df5338361240b565b33600090815260186020526040902054611e109060016138fe565b33600090815260186020526040902055601354611e2e9060016138fe565b60135580611e3b816139c7565b915050611dd0565b600a546001600160a01b03163314611e6d5760405162461bcd60e51b8152600401610bce906137f4565b80516117cb906016906020840190612fcc565b600a546001600160a01b03163314611eaa5760405162461bcd60e51b8152600401610bce906137f4565b80516117cb906015906020840190612fcc565b600a546001600160a01b03163314611ee75760405162461bcd60e51b8152600401610bce906137f4565b6001600160a01b038116611f4c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bce565b611f558161251e565b50565b60006001600160e01b031982166380ac58cd60e01b1480611f8957506001600160e01b03198216635b5e139f60e01b145b80610ac157506301ffc9a760e01b6001600160e01b0319831614610ac1565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611fdd826115aa565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b0384166000908152600d602052604081205490918391612040908661392a565b61204a9190613916565b611a209190613949565b804710156120a45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bce565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146120f1576040519150601f19603f3d011682016040523d82523d6000602084013e6120f6565b606091505b5050905080610d925760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bce565b6000818152600260205260408120546001600160a01b03166121e65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bce565b60006121f1836115aa565b9050806001600160a01b0316846001600160a01b0316148061222c5750836001600160a01b031661222184610b59565b6001600160a01b0316145b80611a2057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611a20565b826001600160a01b0316612273826115aa565b6001600160a01b0316146122db5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bce565b6001600160a01b03821661233d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bce565b6123488383836127b1565b612353600082611fa8565b6001600160a01b038316600090815260036020526040812080546001929061237c908490613949565b90915550506001600160a01b03821660009081526003602052604081208054600192906123aa9084906138fe565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6117cb828260405180602001604052806000815250612869565b6000612430826115aa565b905061243e816000846127b1565b612449600083611fa8565b6001600160a01b0381166000908152600360205260408120805460019290612472908490613949565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610d9290849061289c565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156125d25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bce565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60008261264c858461296e565b14949350505050565b612660848484612260565b61266c84848484612a28565b6119d15760405162461bcd60e51b8152600401610bce90613684565b606060148054610ad69061398c565b6060816126bb5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126e557806126cf816139c7565b91506126de9050600a83613916565b91506126bf565b60008167ffffffffffffffff81111561270e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612738576020820181803683370190505b5090505b8415611a205761274d600183613949565b915061275a600a866139e2565b6127659060306138fe565b60f81b81838151811061278857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506127aa600a86613916565b945061273c565b6001600160a01b03831661280c5761280781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61282f565b816001600160a01b0316836001600160a01b03161461282f5761282f8382612b35565b6001600160a01b03821661284657610d9281612bd2565b826001600160a01b0316826001600160a01b031614610d9257610d928282612cab565b6128738383612cef565b6128806000848484612a28565b610d925760405162461bcd60e51b8152600401610bce90613684565b60006128f1826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612e3d9092919063ffffffff16565b805190915015610d92578080602001905181019061290f9190613373565b610d925760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bce565b600081815b8451811015612a2057600085828151811061299e57634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116129e0576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612a0d565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612a18816139c7565b915050612973565b509392505050565b60006001600160a01b0384163b15612b2a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a6c9033908990889088906004016135e3565b602060405180830381600087803b158015612a8657600080fd5b505af1925050508015612ab6575060408051601f3d908101601f19168201909252612ab3918101906133c3565b60015b612b10573d808015612ae4576040519150601f19603f3d011682016040523d82523d6000602084013e612ae9565b606091505b508051612b085760405162461bcd60e51b8152600401610bce90613684565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a20565b506001949350505050565b60006001612b428461166b565b612b4c9190613949565b600083815260076020526040902054909150808214612b9f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612be490600190613949565b60008381526009602052604081205460088054939450909284908110612c1a57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612c4957634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c8f57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612cb68361166b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612d455760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bce565b6000818152600260205260409020546001600160a01b031615612daa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bce565b612db6600083836127b1565b6001600160a01b0382166000908152600360205260408120805460019290612ddf9084906138fe565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060611a20848460008585843b612e965760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bce565b600080866001600160a01b03168587604051612eb29190613505565b60006040518083038185875af1925050503d8060008114612eef576040519150601f19603f3d011682016040523d82523d6000602084013e612ef4565b606091505b5091509150612f04828286612f0f565b979650505050505050565b60608315612f1e575081611c0e565b825115612f2e5782518084602001fd5b8160405162461bcd60e51b8152600401610bce9190613620565b828054612f549061398c565b90600052602060002090601f016020900481019282612f765760008555612fbc565b82601f10612f8f5782800160ff19823516178555612fbc565b82800160010185558215612fbc579182015b82811115612fbc578235825591602001919060010190612fa1565b50612fc8929150613040565b5090565b828054612fd89061398c565b90600052602060002090601f016020900481019282612ffa5760008555612fbc565b82601f1061301357805160ff1916838001178555612fbc565b82800160010185558215612fbc579182015b82811115612fbc578251825591602001919060010190613025565b5b80821115612fc85760008155600101613041565b600067ffffffffffffffff83111561306f5761306f613a22565b613082601f8401601f19166020016138cd565b905082815283838301111561309657600080fd5b828260208301376000602084830101529392505050565b600082601f8301126130bd578081fd5b8135602067ffffffffffffffff8211156130d9576130d9613a22565b8160051b6130e88282016138cd565b838152828101908684018388018501891015613102578687fd5b8693505b85841015613124578035835260019390930192918401918401613106565b50979650505050505050565b600060208284031215613141578081fd5b8135611c0e81613a38565b6000806040838503121561315e578081fd5b823561316981613a38565b9150602083013561317981613a38565b809150509250929050565b600080600060608486031215613198578081fd5b83356131a381613a38565b925060208401356131b381613a38565b929592945050506040919091013590565b600080600080608085870312156131d9578081fd5b84356131e481613a38565b935060208501356131f481613a38565b925060408501359150606085013567ffffffffffffffff811115613216578182fd5b8501601f81018713613226578182fd5b61323587823560208401613055565b91505092959194509250565b60008060408385031215613253578182fd5b823561325e81613a38565b9150602083013567ffffffffffffffff811115613279578182fd5b613285858286016130ad565b9150509250929050565b600080604083850312156132a1578182fd5b82356132ac81613a38565b9150602083013561317981613a4d565b600080604083850312156132ce578081fd5b82356132d981613a38565b946020939093013593505050565b600080602083850312156132f9578182fd5b823567ffffffffffffffff80821115613310578384fd5b818501915085601f830112613323578384fd5b813581811115613331578485fd5b8660208260051b8501011115613345578485fd5b60209290920196919550909350505050565b600060208284031215613368578081fd5b8135611c0e81613a4d565b600060208284031215613384578081fd5b8151611c0e81613a4d565b6000602082840312156133a0578081fd5b5035919050565b6000602082840312156133b8578081fd5b8135611c0e81613a5b565b6000602082840312156133d4578081fd5b8151611c0e81613a5b565b6000806040838503121561315e578182fd5b60008060208385031215613403578182fd5b823567ffffffffffffffff8082111561341a578384fd5b818501915085601f83011261342d578384fd5b81358181111561343b578485fd5b866020828501011115613345578485fd5b60006020828403121561345d578081fd5b813567ffffffffffffffff811115613473578182fd5b8201601f81018413613483578182fd5b611a2084823560208401613055565b6000602082840312156134a3578081fd5b5051919050565b600080604083850312156134bc578182fd5b82359150602083013567ffffffffffffffff811115613279578182fd5b600081518084526134f1816020860160208601613960565b601f01601f19169290920160200192915050565b60008251613517818460208701613960565b9190910192915050565b6000845160206135348285838a01613960565b8551918401916135478184848a01613960565b85549201918390600181811c908083168061356357607f831692505b85831081141561358157634e487b7160e01b88526022600452602488fd5b80801561359557600181146135a6576135d2565b60ff198516885283880195506135d2565b60008b815260209020895b858110156135ca5781548a8201529084019088016135b1565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613616908301846134d9565b9695505050505050565b602081526000611c0e60208301846134d9565b60208082526031908201527f426f726564204d7574616e742042756e6e793a20596f752063616e2774206d696040820152706e7420736f206d75636820746f6b656e7360781b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526026908201527f426f726564204d7574616e742042756e6e793a20636f6e7472616374206973206040820152651c185d5cd95960d21b606082015260800190565b60208082526027908201527f426f726564204d7574616e742042756e6e793a206d617820737570706c7920656040820152661e18d95959195960ca1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526033908201527f426f726564204d7574616e742042756e6e793a2045746865722076616c7565206040820152721cd95b9d081a5cc81b9bdd0818dbdc9c9958dd606a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156138f6576138f6613a22565b604052919050565b60008219821115613911576139116139f6565b500190565b60008261392557613925613a0c565b500490565b6000816000190483118215151615613944576139446139f6565b500290565b60008282101561395b5761395b6139f6565b500390565b60005b8381101561397b578181015183820152602001613963565b838111156119d15750506000910152565b600181811c908216806139a057607f821691505b602082108114156139c157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156139db576139db6139f6565b5060010190565b6000826139f1576139f1613a0c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611f5557600080fd5b8015158114611f5557600080fd5b6001600160e01b031981168114611f5557600080fdfea2646970667358221220f32436bcb566f5cf740cc068b82c56580635f6ac3e60447970c55bcc48df7ed264736f6c63430008040033

Deployed Bytecode

0x6080604052600436106103535760003560e01c80636e0e5b19116101c6578063acad9a49116100f7578063d5abeb0111610095578063e33b7de31161006f578063e33b7de3146109fe578063e985e9c514610a13578063f2c4ce1e14610a5c578063f2fde38b14610a7c57600080fd5b8063d5abeb0114610992578063d79779b2146109a8578063da3ef23f146109de57600080fd5b8063c6682862116100d1578063c668286214610914578063c87b56dd14610929578063ce7c2ac214610949578063d2cab0561461097f57600080fd5b8063acad9a49146108b4578063ad80ea15146108d4578063b88d4fde146108f457600080fd5b8063922400ff11610164578063a22cb4651161013e578063a22cb4651461083d578063a475b5dd1461085d578063a5fd7bec14610872578063abfe76141461089257600080fd5b8063922400ff146107d157806395d89b41146107f25780639852595c1461080757600080fd5b8063833fdb23116101a0578063833fdb2314610751578063851a7708146107665780638b83209b146107935780638da5cb5b146107b357600080fd5b80636e0e5b19146106fc57806370a082311461071c578063715018a61461073c57600080fd5b80633a98ef39116102a0578063518302271161023e5780635c975abb116102185780635c975abb1461069257806360e5bb85146106b25780636352211e146106c75780636c0360eb146106e757600080fd5b8063518302271461063357806352e973261461065257806355f804b31461067257600080fd5b806342966c681161027a57806342966c68146105be57806346e79ffc146105de57806348b75044146105f35780634f6ccce71461061357600080fd5b80633a98ef3914610543578063406072a91461055857806342842e0e1461059e57600080fd5b8063095ea7b31161030d57806323b872dd116102e757806323b872dd146104da5780632db11544146104fa5780632f745c591461050d5780633338acea1461052d57600080fd5b8063095ea7b31461048357806318160ddd146104a557806319165587146104ba57600080fd5b8062456379146103a157806301ffc9a7146103ca57806306fdde03146103fa57806307ebec271461041c578063081812fc14610436578063081c8c441461046e57600080fd5b3661039c577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103ad57600080fd5b506103b760135481565b6040519081526020015b60405180910390f35b3480156103d657600080fd5b506103ea6103e53660046133a7565b610a9c565b60405190151581526020016103c1565b34801561040657600080fd5b5061040f610ac7565b6040516103c19190613620565b34801561042857600080fd5b506017546103ea9060ff1681565b34801561044257600080fd5b5061045661045136600461338f565b610b59565b6040516001600160a01b0390911681526020016103c1565b34801561047a57600080fd5b5061040f610bf3565b34801561048f57600080fd5b506104a361049e3660046132bc565b610c81565b005b3480156104b157600080fd5b506008546103b7565b3480156104c657600080fd5b506104a36104d5366004613130565b610d97565b3480156104e657600080fd5b506104a36104f5366004613184565b610ec5565b6104a361050836600461338f565b610ef6565b34801561051957600080fd5b506103b76105283660046132bc565b61107b565b34801561053957600080fd5b506103b7601a5481565b34801561054f57600080fd5b50600b546103b7565b34801561056457600080fd5b506103b76105733660046133df565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b3480156105aa57600080fd5b506104a36105b9366004613184565b611111565b3480156105ca57600080fd5b506104a36105d936600461338f565b61112c565b3480156105ea57600080fd5b506104a3611226565b3480156105ff57600080fd5b506104a361060e3660046133df565b61126f565b34801561061f57600080fd5b506103b761062e36600461338f565b611457565b34801561063f57600080fd5b506017546103ea90610100900460ff1681565b34801561065e57600080fd5b506104a361066d36600461338f565b6114f8565b34801561067e57600080fd5b506104a361068d3660046133f1565b611527565b34801561069e57600080fd5b506017546103ea9062010000900460ff1681565b3480156106be57600080fd5b506104a361155d565b3480156106d357600080fd5b506104566106e236600461338f565b6115aa565b3480156106f357600080fd5b5061040f611621565b34801561070857600080fd5b506104a3610717366004613357565b61162e565b34801561072857600080fd5b506103b7610737366004613130565b61166b565b34801561074857600080fd5b506104a36116f2565b34801561075d57600080fd5b506104a3611728565b34801561077257600080fd5b506103b7610781366004613130565b60186020526000908152604090205481565b34801561079f57600080fd5b506104566107ae36600461338f565b611773565b3480156107bf57600080fd5b50600a546001600160a01b0316610456565b3480156107dd57600080fd5b506017546103ea906301000000900460ff1681565b3480156107fe57600080fd5b5061040f6117b1565b34801561081357600080fd5b506103b7610822366004613130565b6001600160a01b03166000908152600e602052604090205490565b34801561084957600080fd5b506104a361085836600461328f565b6117c0565b34801561086957600080fd5b506104a36117cf565b34801561087e57600080fd5b506104a361088d3660046132e7565b61180a565b34801561089e57600080fd5b506017546103ea90640100000000900460ff1681565b3480156108c057600080fd5b506103ea6108cf366004613241565b6119d7565b3480156108e057600080fd5b506104a36108ef36600461338f565b611a28565b34801561090057600080fd5b506104a361090f3660046131c4565b611a57565b34801561092057600080fd5b5061040f611a89565b34801561093557600080fd5b5061040f61094436600461338f565b611a96565b34801561095557600080fd5b506103b7610964366004613130565b6001600160a01b03166000908152600d602052604090205490565b6104a361098d3660046134aa565b611c15565b34801561099e57600080fd5b506103b760125481565b3480156109b457600080fd5b506103b76109c3366004613130565b6001600160a01b031660009081526010602052604090205490565b3480156109ea57600080fd5b506104a36109f936600461344c565b611e43565b348015610a0a57600080fd5b50600c546103b7565b348015610a1f57600080fd5b506103ea610a2e36600461314c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a6857600080fd5b506104a3610a7736600461344c565b611e80565b348015610a8857600080fd5b506104a3610a97366004613130565b611ebd565b60006001600160e01b0319821663780e9d6360e01b1480610ac15750610ac182611f58565b92915050565b606060008054610ad69061398c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b029061398c565b8015610b4f5780601f10610b2457610100808354040283529160200191610b4f565b820191906000526020600020905b815481529060010190602001808311610b3257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bd75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60158054610c009061398c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2c9061398c565b8015610c795780601f10610c4e57610100808354040283529160200191610c79565b820191906000526020600020905b815481529060010190602001808311610c5c57829003601f168201915b505050505081565b6000610c8c826115aa565b9050806001600160a01b0316836001600160a01b03161415610cfa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bce565b336001600160a01b0382161480610d165750610d168133610a2e565b610d885760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bce565b610d928383611fa8565b505050565b6001600160a01b0381166000908152600d6020526040902054610dcc5760405162461bcd60e51b8152600401610bce906136d6565b6000610dd7600c5490565b610de190476138fe565b90506000610e0e8383610e09866001600160a01b03166000908152600e602052604090205490565b612016565b905080610e2d5760405162461bcd60e51b8152600401610bce9061371c565b6001600160a01b0383166000908152600e602052604081208054839290610e559084906138fe565b9250508190555080600c6000828254610e6e91906138fe565b90915550610e7e90508382612054565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610ecf338261216d565b610eeb5760405162461bcd60e51b8152600401610bce90613829565b610d92838383612260565b601754640100000000900460ff16610f5a5760405162461bcd60e51b815260206004820152602160248201527f426f726564204d7574616e742042756e6e793a205075626c6963206973204f466044820152602360f91b6064820152608401610bce565b60008111610faa5760405162461bcd60e51b815260206004820152601f60248201527f426f726564204d7574616e742042756e6e793a207a65726f20616d6f756e74006044820152606401610bce565b60125481601354610fbb91906138fe565b1115610fd95760405162461bcd60e51b8152600401610bce906137ad565b3481601954610fe8919061392a565b11156110065760405162461bcd60e51b8152600401610bce9061387a565b60175462010000900460ff161561102f5760405162461bcd60e51b8152600401610bce90613767565b6000805b82811015610d9257611049601b80546001019055565b601b549150611058338361240b565b6013546110669060016138fe565b60135580611073816139c7565b915050611033565b60006110868361166b565b82106110e85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bce565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610d9283838360405180602001604052806000815250611a57565b60175460ff1661118c5760405162461bcd60e51b815260206004820152602560248201527f426f726564204d7574616e742042756e6e79203a206275726e696e672064697360448201526418589b195960da1b6064820152608401610bce565b611196338261216d565b6112085760405162461bcd60e51b815260206004820152603a60248201527f426f726564204d7574616e742042756e6e79203a206275726e2063616c6c657260448201527f206973206e6f74206f776e6572206e6f7220617070726f7665640000000000006064820152608401610bce565b61121181612425565b60016013546112209190613949565b60135550565b600a546001600160a01b031633146112505760405162461bcd60e51b8152600401610bce906137f4565b6017805462ff0000198116620100009182900460ff1615909102179055565b6001600160a01b0381166000908152600d60205260409020546112a45760405162461bcd60e51b8152600401610bce906136d6565b6001600160a01b0382166000908152601060205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b1580156112fc57600080fd5b505afa158015611310573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113349190613492565b61133e91906138fe565b905060006113778383610e0987876001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b9050806113965760405162461bcd60e51b8152600401610bce9061371c565b6001600160a01b038085166000908152601160209081526040808320938716835292905290812080548392906113cd9084906138fe565b90915550506001600160a01b038416600090815260106020526040812080548392906113fa9084906138fe565b9091555061140b90508484836124cc565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600061146260085490565b82106114c55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bce565b600882815481106114e657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146115225760405162461bcd60e51b8152600401610bce906137f4565b601255565b600a546001600160a01b031633146115515760405162461bcd60e51b8152600401610bce906137f4565b610d9260148383612f48565b600a546001600160a01b031633146115875760405162461bcd60e51b8152600401610bce906137f4565b6017805464ff000000001981166401000000009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b031680610ac15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bce565b60148054610c009061398c565b600a546001600160a01b031633146116585760405162461bcd60e51b8152600401610bce906137f4565b6017805460ff1916911515919091179055565b60006001600160a01b0382166116d65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bce565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461171c5760405162461bcd60e51b8152600401610bce906137f4565b611726600061251e565b565b600a546001600160a01b031633146117525760405162461bcd60e51b8152600401610bce906137f4565b6017805463ff00000019811663010000009182900460ff1615909102179055565b6000600f828154811061179657634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b606060018054610ad69061398c565b6117cb338383612570565b5050565b600a546001600160a01b031633146117f95760405162461bcd60e51b8152600401610bce906137f4565b6017805461ff001916610100179055565b600a546001600160a01b031633146118345760405162461bcd60e51b8152600401610bce906137f4565b6012546013546118459083906138fe565b11156118a95760405162461bcd60e51b815260206004820152602d60248201527f426f726564204d7574616e742042756e6e793a206d617820746f74616c20737560448201526c1c1c1b1e48195e18d959591959609a1b6064820152608401610bce565b6000805b828110156119d15760008484838181106118d757634e487b7160e01b600052603260045260246000fd5b90506020020160208101906118ec9190613130565b6001600160a01b0316141561195d5760405162461bcd60e51b815260206004820152603160248201527f426f726564204d7574616e742042756e6e793a20726563657069656e7420697360448201527020746865206e756c6c206164647265737360781b6064820152608401610bce565b61196b601b80546001019055565b601b5491506119ae84848381811061199357634e487b7160e01b600052603260045260246000fd5b90506020020160208101906119a89190613130565b8361240b565b6013546119bc9060016138fe565b601355806119c9816139c7565b9150506118ad565b50505050565b6040516bffffffffffffffffffffffff19606084901b1660208201526000908190603401604051602081830303815290604052805190602001209050611a2083601a548361263f565b949350505050565b600a546001600160a01b03163314611a525760405162461bcd60e51b8152600401610bce906137f4565b601a55565b611a61338361216d565b611a7d5760405162461bcd60e51b8152600401610bce90613829565b6119d184848484612655565b60168054610c009061398c565b6000818152600260205260409020546060906001600160a01b0316611b155760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bce565b601754610100900460ff16611bb65760158054611b319061398c565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5d9061398c565b8015611baa5780601f10611b7f57610100808354040283529160200191611baa565b820191906000526020600020905b815481529060010190602001808311611b8d57829003601f168201915b50505050509050919050565b6000611bc0612688565b90506000815111611be05760405180602001604052806000815250611c0e565b80611bea84612697565b6016604051602001611bfe93929190613521565b6040516020818303038152906040525b9392505050565b6017546301000000900460ff16611c805760405162461bcd60e51b815260206004820152602960248201527f426f726564204d7574616e742042756e6e793a2057686974656c697374204d69604482015268373a1034b99027a32360b91b6064820152608401610bce565b60175462010000900460ff1615611ca95760405162461bcd60e51b8152600401610bce90613767565b6002821115611cca5760405162461bcd60e51b8152600401610bce90613633565b33600090815260186020526040902054600290611ce89084906138fe565b1115611d065760405162461bcd60e51b8152600401610bce90613633565b611d1033826119d7565b611d705760405162461bcd60e51b815260206004820152602b60248201527f426f726564204d7574616e742042756e6e793a20596f7520617265206e6f742060448201526a1dda1a5d195b1a5cdd195960aa1b6064820152608401610bce565b60125482601354611d8191906138fe565b1115611d9f5760405162461bcd60e51b8152600401610bce906137ad565b3482601954611dae919061392a565b1115611dcc5760405162461bcd60e51b8152600401610bce9061387a565b6000805b838110156119d157611de6601b80546001019055565b601b549150611df5338361240b565b33600090815260186020526040902054611e109060016138fe565b33600090815260186020526040902055601354611e2e9060016138fe565b60135580611e3b816139c7565b915050611dd0565b600a546001600160a01b03163314611e6d5760405162461bcd60e51b8152600401610bce906137f4565b80516117cb906016906020840190612fcc565b600a546001600160a01b03163314611eaa5760405162461bcd60e51b8152600401610bce906137f4565b80516117cb906015906020840190612fcc565b600a546001600160a01b03163314611ee75760405162461bcd60e51b8152600401610bce906137f4565b6001600160a01b038116611f4c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bce565b611f558161251e565b50565b60006001600160e01b031982166380ac58cd60e01b1480611f8957506001600160e01b03198216635b5e139f60e01b145b80610ac157506301ffc9a760e01b6001600160e01b0319831614610ac1565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611fdd826115aa565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b0384166000908152600d602052604081205490918391612040908661392a565b61204a9190613916565b611a209190613949565b804710156120a45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bce565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146120f1576040519150601f19603f3d011682016040523d82523d6000602084013e6120f6565b606091505b5050905080610d925760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bce565b6000818152600260205260408120546001600160a01b03166121e65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bce565b60006121f1836115aa565b9050806001600160a01b0316846001600160a01b0316148061222c5750836001600160a01b031661222184610b59565b6001600160a01b0316145b80611a2057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611a20565b826001600160a01b0316612273826115aa565b6001600160a01b0316146122db5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bce565b6001600160a01b03821661233d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bce565b6123488383836127b1565b612353600082611fa8565b6001600160a01b038316600090815260036020526040812080546001929061237c908490613949565b90915550506001600160a01b03821660009081526003602052604081208054600192906123aa9084906138fe565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6117cb828260405180602001604052806000815250612869565b6000612430826115aa565b905061243e816000846127b1565b612449600083611fa8565b6001600160a01b0381166000908152600360205260408120805460019290612472908490613949565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610d9290849061289c565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156125d25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bce565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60008261264c858461296e565b14949350505050565b612660848484612260565b61266c84848484612a28565b6119d15760405162461bcd60e51b8152600401610bce90613684565b606060148054610ad69061398c565b6060816126bb5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126e557806126cf816139c7565b91506126de9050600a83613916565b91506126bf565b60008167ffffffffffffffff81111561270e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612738576020820181803683370190505b5090505b8415611a205761274d600183613949565b915061275a600a866139e2565b6127659060306138fe565b60f81b81838151811061278857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506127aa600a86613916565b945061273c565b6001600160a01b03831661280c5761280781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61282f565b816001600160a01b0316836001600160a01b03161461282f5761282f8382612b35565b6001600160a01b03821661284657610d9281612bd2565b826001600160a01b0316826001600160a01b031614610d9257610d928282612cab565b6128738383612cef565b6128806000848484612a28565b610d925760405162461bcd60e51b8152600401610bce90613684565b60006128f1826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612e3d9092919063ffffffff16565b805190915015610d92578080602001905181019061290f9190613373565b610d925760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bce565b600081815b8451811015612a2057600085828151811061299e57634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116129e0576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612a0d565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612a18816139c7565b915050612973565b509392505050565b60006001600160a01b0384163b15612b2a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a6c9033908990889088906004016135e3565b602060405180830381600087803b158015612a8657600080fd5b505af1925050508015612ab6575060408051601f3d908101601f19168201909252612ab3918101906133c3565b60015b612b10573d808015612ae4576040519150601f19603f3d011682016040523d82523d6000602084013e612ae9565b606091505b508051612b085760405162461bcd60e51b8152600401610bce90613684565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a20565b506001949350505050565b60006001612b428461166b565b612b4c9190613949565b600083815260076020526040902054909150808214612b9f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612be490600190613949565b60008381526009602052604081205460088054939450909284908110612c1a57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612c4957634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c8f57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612cb68361166b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612d455760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bce565b6000818152600260205260409020546001600160a01b031615612daa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bce565b612db6600083836127b1565b6001600160a01b0382166000908152600360205260408120805460019290612ddf9084906138fe565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060611a20848460008585843b612e965760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bce565b600080866001600160a01b03168587604051612eb29190613505565b60006040518083038185875af1925050503d8060008114612eef576040519150601f19603f3d011682016040523d82523d6000602084013e612ef4565b606091505b5091509150612f04828286612f0f565b979650505050505050565b60608315612f1e575081611c0e565b825115612f2e5782518084602001fd5b8160405162461bcd60e51b8152600401610bce9190613620565b828054612f549061398c565b90600052602060002090601f016020900481019282612f765760008555612fbc565b82601f10612f8f5782800160ff19823516178555612fbc565b82800160010185558215612fbc579182015b82811115612fbc578235825591602001919060010190612fa1565b50612fc8929150613040565b5090565b828054612fd89061398c565b90600052602060002090601f016020900481019282612ffa5760008555612fbc565b82601f1061301357805160ff1916838001178555612fbc565b82800160010185558215612fbc579182015b82811115612fbc578251825591602001919060010190613025565b5b80821115612fc85760008155600101613041565b600067ffffffffffffffff83111561306f5761306f613a22565b613082601f8401601f19166020016138cd565b905082815283838301111561309657600080fd5b828260208301376000602084830101529392505050565b600082601f8301126130bd578081fd5b8135602067ffffffffffffffff8211156130d9576130d9613a22565b8160051b6130e88282016138cd565b838152828101908684018388018501891015613102578687fd5b8693505b85841015613124578035835260019390930192918401918401613106565b50979650505050505050565b600060208284031215613141578081fd5b8135611c0e81613a38565b6000806040838503121561315e578081fd5b823561316981613a38565b9150602083013561317981613a38565b809150509250929050565b600080600060608486031215613198578081fd5b83356131a381613a38565b925060208401356131b381613a38565b929592945050506040919091013590565b600080600080608085870312156131d9578081fd5b84356131e481613a38565b935060208501356131f481613a38565b925060408501359150606085013567ffffffffffffffff811115613216578182fd5b8501601f81018713613226578182fd5b61323587823560208401613055565b91505092959194509250565b60008060408385031215613253578182fd5b823561325e81613a38565b9150602083013567ffffffffffffffff811115613279578182fd5b613285858286016130ad565b9150509250929050565b600080604083850312156132a1578182fd5b82356132ac81613a38565b9150602083013561317981613a4d565b600080604083850312156132ce578081fd5b82356132d981613a38565b946020939093013593505050565b600080602083850312156132f9578182fd5b823567ffffffffffffffff80821115613310578384fd5b818501915085601f830112613323578384fd5b813581811115613331578485fd5b8660208260051b8501011115613345578485fd5b60209290920196919550909350505050565b600060208284031215613368578081fd5b8135611c0e81613a4d565b600060208284031215613384578081fd5b8151611c0e81613a4d565b6000602082840312156133a0578081fd5b5035919050565b6000602082840312156133b8578081fd5b8135611c0e81613a5b565b6000602082840312156133d4578081fd5b8151611c0e81613a5b565b6000806040838503121561315e578182fd5b60008060208385031215613403578182fd5b823567ffffffffffffffff8082111561341a578384fd5b818501915085601f83011261342d578384fd5b81358181111561343b578485fd5b866020828501011115613345578485fd5b60006020828403121561345d578081fd5b813567ffffffffffffffff811115613473578182fd5b8201601f81018413613483578182fd5b611a2084823560208401613055565b6000602082840312156134a3578081fd5b5051919050565b600080604083850312156134bc578182fd5b82359150602083013567ffffffffffffffff811115613279578182fd5b600081518084526134f1816020860160208601613960565b601f01601f19169290920160200192915050565b60008251613517818460208701613960565b9190910192915050565b6000845160206135348285838a01613960565b8551918401916135478184848a01613960565b85549201918390600181811c908083168061356357607f831692505b85831081141561358157634e487b7160e01b88526022600452602488fd5b80801561359557600181146135a6576135d2565b60ff198516885283880195506135d2565b60008b815260209020895b858110156135ca5781548a8201529084019088016135b1565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613616908301846134d9565b9695505050505050565b602081526000611c0e60208301846134d9565b60208082526031908201527f426f726564204d7574616e742042756e6e793a20596f752063616e2774206d696040820152706e7420736f206d75636820746f6b656e7360781b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526026908201527f426f726564204d7574616e742042756e6e793a20636f6e7472616374206973206040820152651c185d5cd95960d21b606082015260800190565b60208082526027908201527f426f726564204d7574616e742042756e6e793a206d617820737570706c7920656040820152661e18d95959195960ca1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526033908201527f426f726564204d7574616e742042756e6e793a2045746865722076616c7565206040820152721cd95b9d081a5cc81b9bdd0818dbdc9c9958dd606a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156138f6576138f6613a22565b604052919050565b60008219821115613911576139116139f6565b500190565b60008261392557613925613a0c565b500490565b6000816000190483118215151615613944576139446139f6565b500290565b60008282101561395b5761395b6139f6565b500390565b60005b8381101561397b578181015183820152602001613963565b838111156119d15750506000910152565b600181811c908216806139a057607f821691505b602082108114156139c157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156139db576139db6139f6565b5060010190565b6000826139f1576139f1613a0c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611f5557600080fd5b8015158114611f5557600080fd5b6001600160e01b031981168114611f5557600080fdfea2646970667358221220f32436bcb566f5cf740cc068b82c56580635f6ac3e60447970c55bcc48df7ed264736f6c63430008040033

Deployed Bytecode Sourcemap

65384:6424:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30223:40;12171:10;30223:40;;;-1:-1:-1;;;;;12389:32:1;;;12371:51;;30253:9:0;12453:2:1;12438:18;;12431:34;12344:18;30223:40:0;;;;;;;65384:6424;;;;;65593:23;;;;;;;;;;;;;;;;;;;13586:25:1;;;13574:2;13559:18;65593:23:0;;;;;;;;59150:224;;;;;;;;;;-1:-1:-1;59150:224:0;;;;;:::i;:::-;;:::i;:::-;;;13413:14:1;;13406:22;13388:41;;13376:2;13361:18;59150:224:0;13343:92:1;46644:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;65734:33::-;;;;;;;;;;-1:-1:-1;65734:33:0;;;;;;;;48203:221;;;;;;;;;;-1:-1:-1;48203:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;12145:32:1;;;12127:51;;12115:2;12100:18;48203:221:0;12082:102:1;65653:28:0;;;;;;;;;;;;;:::i;47726:411::-;;;;;;;;;;-1:-1:-1;47726:411:0;;;;;:::i;:::-;;:::i;:::-;;59790:113;;;;;;;;;;-1:-1:-1;59878:10:0;:17;59790:113;;32009:566;;;;;;;;;;-1:-1:-1;32009:566:0;;;;;:::i;:::-;;:::i;48953:339::-;;;;;;;;;;-1:-1:-1;48953:339:0;;;;;:::i;:::-;;:::i;69111:801::-;;;;;;:::i;:::-;;:::i;59458:256::-;;;;;;;;;;-1:-1:-1;59458:256:0;;;;;:::i;:::-;;:::i;66045:32::-;;;;;;;;;;;;;;;;30354:91;;;;;;;;;;-1:-1:-1;30425:12:0;;30354:91;;31483:135;;;;;;;;;;-1:-1:-1;31483:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;31580:21:0;;;31553:7;31580:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;31483:135;49363:185;;;;;;;;;;-1:-1:-1;49363:185:0;;;;;:::i;:::-;;:::i;71200:339::-;;;;;;;;;;-1:-1:-1;71200:339:0;;;;;:::i;:::-;;:::i;66443:80::-;;;;;;;;;;;;;:::i;32843:641::-;;;;;;;;;;-1:-1:-1;32843:641:0;;;;;:::i;:::-;;:::i;59980:233::-;;;;;;;;;;-1:-1:-1;59980:233:0;;;;;:::i;:::-;;:::i;65774:28::-;;;;;;;;;;-1:-1:-1;65774:28:0;;;;;;;;;;;70944:105;;;;;;;;;;-1:-1:-1;70944:105:0;;;;;:::i;:::-;;:::i;66750:112::-;;;;;;;;;;-1:-1:-1;66750:112:0;;;;;:::i;:::-;;:::i;65811:26::-;;;;;;;;;;-1:-1:-1;65811:26:0;;;;;;;;;;;66651:91;;;;;;;;;;;;;:::i;46338:239::-;;;;;;;;;;-1:-1:-1;46338:239:0;;;;;:::i;:::-;;:::i;65625:21::-;;;;;;;;;;;;;:::i;67055:115::-;;;;;;;;;;-1:-1:-1;67055:115:0;;;;;:::i;:::-;;:::i;46068:208::-;;;;;;;;;;-1:-1:-1;46068:208:0;;;;;:::i;:::-;;:::i;14018:103::-;;;;;;;;;;;;;:::i;66531:112::-;;;;;;;;;;;;;:::i;65929:52::-;;;;;;;;;;-1:-1:-1;65929:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;31709:100;;;;;;;;;;-1:-1:-1;31709:100:0;;;;;:::i;:::-;;:::i;13367:87::-;;;;;;;;;;-1:-1:-1;13440:6:0;;-1:-1:-1;;;;;13440:6:0;13367:87;;65844:38;;;;;;;;;;-1:-1:-1;65844:38:0;;;;;;;;;;;46813:104;;;;;;;;;;;;;:::i;31205:109::-;;;;;;;;;;-1:-1:-1;31205:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;31288:18:0;31261:7;31288:18;;;:9;:18;;;;;;;31205:109;48496:155;;;;;;;;;;-1:-1:-1;48496:155:0;;;;;:::i;:::-;;:::i;66978:69::-;;;;;;;;;;;;;:::i;67180:659::-;;;;;;;;;;-1:-1:-1;67180:659:0;;;;;:::i;:::-;;:::i;65889:31::-;;;;;;;;;;-1:-1:-1;65889:31:0;;;;;;;;;;;71547:258;;;;;;;;;;-1:-1:-1;71547:258:0;;;;;:::i;:::-;;:::i;71057:135::-;;;;;;;;;;-1:-1:-1;71057:135:0;;;;;:::i;:::-;;:::i;49619:328::-;;;;;;;;;;-1:-1:-1;49619:328:0;;;;;:::i;:::-;;:::i;65688:37::-;;;;;;;;;;;;;:::i;69920:723::-;;;;;;;;;;-1:-1:-1;69920:723:0;;;;;:::i;:::-;;:::i;31001:105::-;;;;;;;;;;-1:-1:-1;31001:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;31082:16:0;31055:7;31082:16;;;:7;:16;;;;;;;31001:105;67847:1256;;;;;;:::i;:::-;;:::i;65555:31::-;;;;;;;;;;;;;;;;30791:119;;;;;;;;;;-1:-1:-1;30791:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;30876:26:0;30849:7;30876:26;;;:19;:26;;;;;;;30791:119;70651:151;;;;;;;;;;-1:-1:-1;70651:151:0;;;;;:::i;:::-;;:::i;30539:95::-;;;;;;;;;;-1:-1:-1;30612:14:0;;30539:95;;48722:164;;;;;;;;;;-1:-1:-1;48722:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;48843:25:0;;;48819:4;48843:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;48722:164;70810:126;;;;;;;;;;-1:-1:-1;70810:126:0;;;;;:::i;:::-;;:::i;14276:201::-;;;;;;;;;;-1:-1:-1;14276:201:0;;;;;:::i;:::-;;:::i;59150:224::-;59252:4;-1:-1:-1;;;;;;59276:50:0;;-1:-1:-1;;;59276:50:0;;:90;;;59330:36;59354:11;59330:23;:36::i;:::-;59269:97;59150:224;-1:-1:-1;;59150:224:0:o;46644:100::-;46698:13;46731:5;46724:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46644:100;:::o;48203:221::-;48279:7;51546:16;;;:7;:16;;;;;;-1:-1:-1;;;;;51546:16:0;48299:73;;;;-1:-1:-1;;;48299:73:0;;22852:2:1;48299:73:0;;;22834:21:1;22891:2;22871:18;;;22864:30;22930:34;22910:18;;;22903:62;-1:-1:-1;;;22981:18:1;;;22974:42;23033:19;;48299:73:0;;;;;;;;;-1:-1:-1;48392:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;48392:24:0;;48203:221::o;65653:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47726:411::-;47807:13;47823:23;47838:7;47823:14;:23::i;:::-;47807:39;;47871:5;-1:-1:-1;;;;;47865:11:0;:2;-1:-1:-1;;;;;47865:11:0;;;47857:57;;;;-1:-1:-1;;;47857:57:0;;24862:2:1;47857:57:0;;;24844:21:1;24901:2;24881:18;;;24874:30;24940:34;24920:18;;;24913:62;-1:-1:-1;;;24991:18:1;;;24984:31;25032:19;;47857:57:0;24834:223:1;47857:57:0;12171:10;-1:-1:-1;;;;;47949:21:0;;;;:62;;-1:-1:-1;47974:37:0;47991:5;12171:10;48722:164;:::i;47974:37::-;47927:168;;;;-1:-1:-1;;;47927:168:0;;20477:2:1;47927:168:0;;;20459:21:1;20516:2;20496:18;;;20489:30;20555:34;20535:18;;;20528:62;20626:26;20606:18;;;20599:54;20670:19;;47927:168:0;20449:246:1;47927:168:0;48108:21;48117:2;48121:7;48108:8;:21::i;:::-;47726:411;;;:::o;32009:566::-;-1:-1:-1;;;;;32085:16:0;;32104:1;32085:16;;;:7;:16;;;;;;32077:71;;;;-1:-1:-1;;;32077:71:0;;;;;;;:::i;:::-;32161:21;32209:15;30612:14;;;30539:95;32209:15;32185:39;;:21;:39;:::i;:::-;32161:63;;32235:15;32253:58;32269:7;32278:13;32293:17;32302:7;-1:-1:-1;;;;;31288:18:0;31261:7;31288:18;;;:9;:18;;;;;;;31205:109;32293:17;32253:15;:58::i;:::-;32235:76;-1:-1:-1;32332:12:0;32324:68;;;;-1:-1:-1;;;32324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32405:18:0;;;;;;:9;:18;;;;;:29;;32427:7;;32405:18;:29;;32427:7;;32405:29;:::i;:::-;;;;;;;;32463:7;32445:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;32483:35:0;;-1:-1:-1;32501:7:0;32510;32483:17;:35::i;:::-;32534:33;;;-1:-1:-1;;;;;12389:32:1;;12371:51;;12453:2;12438:18;;12431:34;;;32534:33:0;;12344:18:1;32534:33:0;;;;;;;32009:566;;;:::o;48953:339::-;49148:41;12171:10;49181:7;49148:18;:41::i;:::-;49140:103;;;;-1:-1:-1;;;49140:103:0;;;;;;;:::i;:::-;49256:28;49266:4;49272:2;49276:7;49256:9;:28::i;69111:801::-;69184:11;;;;;;;69176:57;;;;-1:-1:-1;;;69176:57:0;;25264:2:1;69176:57:0;;;25246:21:1;25303:2;25283:18;;;25276:30;25342:34;25322:18;;;25315:62;-1:-1:-1;;;25393:18:1;;;25386:31;25434:19;;69176:57:0;25236:223:1;69176:57:0;69262:1;69252:7;:11;69244:55;;;;-1:-1:-1;;;69244:55:0;;21723:2:1;69244:55:0;;;21705:21:1;21762:2;21742:18;;;21735:30;21801:33;21781:18;;;21774:61;21852:18;;69244:55:0;21695:181:1;69244:55:0;69354:9;;69343:7;69332:8;;:18;;;;:::i;:::-;:31;;69310:120;;;;-1:-1:-1;;;69310:120:0;;;;;;;:::i;:::-;69483:9;69472:7;69463:6;;:16;;;;:::i;:::-;:29;;69441:130;;;;-1:-1:-1;;;69441:130:0;;;;;;;:::i;:::-;69591:6;;;;;;;69590:7;69582:58;;;;-1:-1:-1;;;69582:58:0;;;;;;;:::i;:::-;69651:18;;69680:225;69708:7;69702:3;:13;69680:225;;;69739:21;:9;1083:19;;1101:1;1083:19;;;994:127;69739:21;69788:9;964:14;69775:32;;69822:33;69832:10;69844;69822:9;:33::i;:::-;69881:8;;:12;;69892:1;69881:12;:::i;:::-;69870:8;:23;69717:5;;;;:::i;:::-;;;;69680:225;;59458:256;59555:7;59591:23;59608:5;59591:16;:23::i;:::-;59583:5;:31;59575:87;;;;-1:-1:-1;;;59575:87:0;;14466:2:1;59575:87:0;;;14448:21:1;14505:2;14485:18;;;14478:30;14544:34;14524:18;;;14517:62;-1:-1:-1;;;14595:18:1;;;14588:41;14646:19;;59575:87:0;14438:233:1;59575:87:0;-1:-1:-1;;;;;;59680:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;59458:256::o;49363:185::-;49501:39;49518:4;49524:2;49528:7;49501:39;;;;;;;;;;;;:16;:39::i;71200:339::-;71259:13;;;;71251:63;;;;-1:-1:-1;;;71251:63:0;;27702:2:1;71251:63:0;;;27684:21:1;27741:2;27721:18;;;27714:30;27780:34;27760:18;;;27753:62;-1:-1:-1;;;27831:18:1;;;27824:35;27876:19;;71251:63:0;27674:227:1;71251:63:0;71347:39;71366:10;71378:7;71347:18;:39::i;:::-;71325:147;;;;-1:-1:-1;;;71325:147:0;;25666:2:1;71325:147:0;;;25648:21:1;25705:2;25685:18;;;25678:30;25744:34;25724:18;;;25717:62;25815:28;25795:18;;;25788:56;25861:19;;71325:147:0;25638:248:1;71325:147:0;71483:14;71489:7;71483:5;:14::i;:::-;71530:1;71519:8;;:12;;;;:::i;:::-;71508:8;:23;-1:-1:-1;71200:339:0:o;66443:80::-;13440:6;;-1:-1:-1;;;;;13440:6:0;12171:10;13587:23;13579:68;;;;-1:-1:-1;;;13579:68:0;;;;;;;:::i;:::-;66509:6:::1;::::0;;-1:-1:-1;;66499:16:0;::::1;66509:6:::0;;;;::::1;;;66508:7;66499:16:::0;;::::1;;::::0;;66443:80::o;32843:641::-;-1:-1:-1;;;;;32925:16:0;;32944:1;32925:16;;;:7;:16;;;;;;32917:71;;;;-1:-1:-1;;;32917:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30876:26:0;;33001:21;30876:26;;;:19;:26;;;;;;33025:30;;-1:-1:-1;;;33025:30:0;;33049:4;33025:30;;;12127:51:1;-1:-1:-1;;;;;33025:15:0;;;;;12100:18:1;;33025:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;33001:77;;33089:15;33107:65;33123:7;33132:13;33147:24;33156:5;33163:7;-1:-1:-1;;;;;31580:21:0;;;31553:7;31580:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;31483:135;33107:65;33089:83;-1:-1:-1;33193:12:0;33185:68;;;;-1:-1:-1;;;33185:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33266:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;33300:7;;33266:21;:41;;33300:7;;33266:41;:::i;:::-;;;;-1:-1:-1;;;;;;;33318:26:0;;;;;;:19;:26;;;;;:37;;33348:7;;33318:26;:37;;33348:7;;33318:37;:::i;:::-;;;;-1:-1:-1;33368:47:0;;-1:-1:-1;33391:5:0;33398:7;33407;33368:22;:47::i;:::-;33431:45;;;-1:-1:-1;;;;;12389:32:1;;;12371:51;;12453:2;12438:18;;12431:34;;;33431:45:0;;;;;12344:18:1;33431:45:0;;;;;;;32843:641;;;;:::o;59980:233::-;60055:7;60091:30;59878:10;:17;;59790:113;60091:30;60083:5;:38;60075:95;;;;-1:-1:-1;;;60075:95:0;;27289:2:1;60075:95:0;;;27271:21:1;27328:2;27308:18;;;27301:30;27367:34;27347:18;;;27340:62;-1:-1:-1;;;27418:18:1;;;27411:42;27470:19;;60075:95:0;27261:234:1;60075:95:0;60188:10;60199:5;60188:17;;;;;;-1:-1:-1;;;60188:17:0;;;;;;;;;;;;;;;;;60181:24;;59980:233;;;:::o;70944:105::-;13440:6;;-1:-1:-1;;;;;13440:6:0;12171:10;13587:23;13579:68;;;;-1:-1:-1;;;13579:68:0;;;;;;;:::i;:::-;71019:9:::1;:22:::0;70944:105::o;66750:112::-;13440:6;;-1:-1:-1;;;;;13440:6:0;12171:10;13587:23;13579:68;;;;-1:-1:-1;;;13579:68:0;;;;;;;:::i;:::-;66831:23:::1;:7;66841:13:::0;;66831:23:::1;:::i;66651:91::-:0;13440:6;;-1:-1:-1;;;;;13440:6:0;12171:10;13587:23;13579:68;;;;-1:-1:-1;;;13579:68:0;;;;;;;:::i;:::-;66723:11:::1;::::0;;-1:-1:-1;;66708:26:0;::::1;66723:11:::0;;;;::::1;;;66722:12;66708:26:::0;;::::1;;::::0;;66651:91::o;46338:239::-;46410:7;46446:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46446:16:0;46481:19;46473:73;;;;-1:-1:-1;;;46473:73:0;;21313:2:1;46473:73:0;;;21295:21:1;21352:2;21332:18;;;21325:30;21391:34;21371:18;;;21364:62;-1:-1:-1;;;21442:18:1;;;21435:39;21491:19;;46473:73:0;21285:231:1;65625:21:0;;;;;;;:::i;67055:115::-;13440:6;;-1:-1:-1;;;;;13440:6:0;12171:10;13587:23;13579:68;;;;-1:-1:-1;;;13579:68:0;;;;;;;:::i;:::-;67132:13:::1;:30:::0;;-1:-1:-1;;67132:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;67055:115::o;46068:208::-;46140:7;-1:-1:-1;;;;;46168:19:0;;46160:74;;;;-1:-1:-1;;;46160:74:0;;20902:2:1;46160:74:0;;;20884:21:1;20941:2;20921:18;;;20914:30;20980:34;20960:18;;;20953:62;-1:-1:-1;;;21031:18:1;;;21024:40;21081:19;;46160:74:0;20874:232:1;46160:74:0;-1:-1:-1;;;;;;46252:16:0;;;;;:9;:16;;;;;;;46068:208::o;14018:103::-;13440:6;;-1:-1:-1;;;;;13440:6:0;12171:10;13587:23;13579:68;;;;-1:-1:-1;;;13579:68:0;;;;;;;:::i;:::-;14083:30:::1;14110:1;14083:18;:30::i;:::-;14018:103::o:0;66531:112::-;13440:6;;-1:-1:-1;;;;;13440:6:0;12171:10;13587:23;13579:68;;;;-1:-1:-1;;;13579:68:0;;;;;;;:::i;:::-;66617:18:::1;::::0;;-1:-1:-1;;66595:40:0;::::1;66617:18:::0;;;;::::1;;;66616:19;66595:40:::0;;::::1;;::::0;;66531:112::o;31709:100::-;31760:7;31787;31795:5;31787:14;;;;;;-1:-1:-1;;;31787:14:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31787:14:0;;31709:100;-1:-1:-1;;31709:100:0:o;46813:104::-;46869:13;46902:7;46895:14;;;;;:::i;48496:155::-;48591:52;12171:10;48624:8;48634;48591:18;:52::i;:::-;48496:155;;:::o;66978:69::-;13440:6;;-1:-1:-1;;;;;13440:6:0;12171:10;13587:23;13579:68;;;;-1:-1:-1;;;13579:68:0;;;;;;;:::i;:::-;67024:8:::1;:15:::0;;-1:-1:-1;;67024:15:0::1;;;::::0;;66978:69::o;67180:659::-;13440:6;;-1:-1:-1;;;;;13440:6:0;12171:10;13587:23;13579:68;;;;-1:-1:-1;;;13579:68:0;;;;;;;:::i;:::-;67313:9:::1;::::0;67281:8:::1;::::0;:28:::1;::::0;67292:10;;67281:28:::1;:::i;:::-;:41;;67259:136;;;::::0;-1:-1:-1;;;67259:136:0;;16473:2:1;67259:136:0::1;::::0;::::1;16455:21:1::0;16512:2;16492:18;;;16485:30;16551:34;16531:18;;;16524:62;-1:-1:-1;;;16602:18:1;;;16595:43;16655:19;;67259:136:0::1;16445:235:1::0;67259:136:0::1;67408:18;::::0;67437:395:::1;67459:23:::0;;::::1;67437:395;;;67559:1;67532:10:::0;;67543:3;67532:15;;::::1;;;-1:-1:-1::0;;;67532:15:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;67532:29:0::1;;;67506:140;;;::::0;-1:-1:-1;;;67506:140:0;;28519:2:1;67506:140:0::1;::::0;::::1;28501:21:1::0;28558:2;28538:18;;;28531:30;28597:34;28577:18;;;28570:62;-1:-1:-1;;;28648:18:1;;;28641:47;28705:19;;67506:140:0::1;28491:239:1::0;67506:140:0::1;67661:21;:9;1083:19:::0;;1101:1;1083:19;;;994:127;67661:21:::1;67710:9;964:14:::0;67697:32:::1;;67744:38;67754:10;;67765:3;67754:15;;;;;-1:-1:-1::0;;;67754:15:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67771:10;67744:9;:38::i;:::-;67808:8;::::0;:12:::1;::::0;67819:1:::1;67808:12;:::i;:::-;67797:8;:23:::0;67484:5;::::1;::::0;::::1;:::i;:::-;;;;67437:395;;;;13658:1;67180:659:::0;;:::o;71547:258::-;71703:25;;-1:-1:-1;;9619:2:1;9615:15;;;9611:53;71703:25:0;;;9599:66:1;71656:4:0;;;;9681:12:1;;71703:25:0;;;;;;;;;;;;71693:36;;;;;;71678:51;;71747:50;71766:5;71773:17;;71792:4;71747:18;:50::i;:::-;71740:57;71547:258;-1:-1:-1;;;;71547:258:0:o;71057:135::-;13440:6;;-1:-1:-1;;;;;13440:6:0;12171:10;13587:23;13579:68;;;;-1:-1:-1;;;13579:68:0;;;;;;;:::i;:::-;71146:17:::1;:38:::0;71057:135::o;49619:328::-;49794:41;12171:10;49827:7;49794:18;:41::i;:::-;49786:103;;;;-1:-1:-1;;;49786:103:0;;;;;;;:::i;:::-;49900:39;49914:4;49920:2;49924:7;49933:5;49900:13;:39::i;65688:37::-;;;;;;;:::i;69920:723::-;51522:4;51546:16;;;:7;:16;;;;;;70038:13;;-1:-1:-1;;;;;51546:16:0;70069:113;;;;-1:-1:-1;;;70069:113:0;;24446:2:1;70069:113:0;;;24428:21:1;24485:2;24465:18;;;24458:30;24524:34;24504:18;;;24497:62;-1:-1:-1;;;24575:18:1;;;24568:45;24630:19;;70069:113:0;24418:237:1;70069:113:0;70197:8;;;;;;;70193:71;;70238:14;70231:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69920:723;;;:::o;70193:71::-;70276:28;70307:10;:8;:10::i;:::-;70276:41;;70379:1;70354:14;70348:28;:32;:287;;;;;;;;;;;;;;;;;70472:14;70513:18;:7;:16;:18::i;:::-;70558:13;70429:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;70348:287;70328:307;69920:723;-1:-1:-1;;;69920:723:0:o;67847:1256::-;67947:18;;;;;;;67939:72;;;;-1:-1:-1;;;67939:72:0;;23626:2:1;67939:72:0;;;23608:21:1;23665:2;23645:18;;;23638:30;23704:34;23684:18;;;23677:62;-1:-1:-1;;;23755:18:1;;;23748:39;23804:19;;67939:72:0;23598:231:1;67939:72:0;68031:6;;;;;;;68030:7;68022:58;;;;-1:-1:-1;;;68022:58:0;;;;;;;:::i;:::-;68124:1;68113:7;:12;;68091:111;;;;-1:-1:-1;;;68091:111:0;;;;;;;:::i;:::-;68253:10;68235:29;;;;:17;:29;;;;;;68278:1;;68235:39;;68267:7;;68235:39;:::i;:::-;:44;;68213:143;;;;-1:-1:-1;;;68213:143:0;;;;;;;:::i;:::-;68377:38;68397:10;68409:5;68377:19;:38::i;:::-;68369:94;;;;-1:-1:-1;;;68369:94:0;;16061:2:1;68369:94:0;;;16043:21:1;16100:2;16080:18;;;16073:30;16139:34;16119:18;;;16112:62;-1:-1:-1;;;16190:18:1;;;16183:41;16241:19;;68369:94:0;16033:233:1;68369:94:0;68520:9;;68509:7;68498:8;;:18;;;;:::i;:::-;:31;;68476:120;;;;-1:-1:-1;;;68476:120:0;;;;;;;:::i;:::-;68649:9;68638:7;68629:6;;:16;;;;:::i;:::-;:29;;68607:130;;;;-1:-1:-1;;;68607:130:0;;;;;;;:::i;:::-;68748:18;;68777:319;68805:7;68799:3;:13;68777:319;;;68836:21;:9;1083:19;;1101:1;1083:19;;;994:127;68836:21;68885:9;964:14;68872:32;;68919:33;68929:10;68941;68919:9;:33::i;:::-;69017:10;68999:29;;;;:17;:29;;;;;;:33;;69031:1;68999:33;:::i;:::-;68985:10;68967:29;;;;:17;:29;;;;;:65;69058:8;;:12;;69069:1;69058:12;:::i;:::-;69047:8;:23;68814:5;;;;:::i;:::-;;;;68777:319;;70651:151;13440:6;;-1:-1:-1;;;;;13440:6:0;12171:10;13587:23;13579:68;;;;-1:-1:-1;;;13579:68:0;;;;;;;:::i;:::-;70761:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;70810:126::-:0;13440:6;;-1:-1:-1;;;;;13440:6:0;12171:10;13587:23;13579:68;;;;-1:-1:-1;;;13579:68:0;;;;;;;:::i;:::-;70896:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;14276:201::-:0;13440:6;;-1:-1:-1;;;;;13440:6:0;12171:10;13587:23;13579:68;;;;-1:-1:-1;;;13579:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14365:22:0;::::1;14357:73;;;::::0;-1:-1:-1;;;14357:73:0;;15297:2:1;14357:73:0::1;::::0;::::1;15279:21:1::0;15336:2;15316:18;;;15309:30;15375:34;15355:18;;;15348:62;-1:-1:-1;;;15426:18:1;;;15419:36;15472:19;;14357:73:0::1;15269:228:1::0;14357:73:0::1;14441:28;14460:8;14441:18;:28::i;:::-;14276:201:::0;:::o;45699:305::-;45801:4;-1:-1:-1;;;;;;45838:40:0;;-1:-1:-1;;;45838:40:0;;:105;;-1:-1:-1;;;;;;;45895:48:0;;-1:-1:-1;;;45895:48:0;45838:105;:158;;;-1:-1:-1;;;;;;;;;;37504:40:0;;;45960:36;37395:157;55439:174;55514:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;55514:29:0;-1:-1:-1;;;;;55514:29:0;;;;;;;;:24;;55568:23;55514:24;55568:14;:23::i;:::-;-1:-1:-1;;;;;55559:46:0;;;;;;;;;;;55439:174;;:::o;33662:248::-;33872:12;;-1:-1:-1;;;;;33852:16:0;;33808:7;33852:16;;;:7;:16;;;;;;33808:7;;33887:15;;33836:32;;:13;:32;:::i;:::-;33835:49;;;;:::i;:::-;:67;;;;:::i;16977:317::-;17092:6;17067:21;:31;;17059:73;;;;-1:-1:-1;;;17059:73:0;;18480:2:1;17059:73:0;;;18462:21:1;18519:2;18499:18;;;18492:30;18558:31;18538:18;;;18531:59;18607:18;;17059:73:0;18452:179:1;17059:73:0;17146:12;17164:9;-1:-1:-1;;;;;17164:14:0;17186:6;17164:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17145:52;;;17216:7;17208:78;;;;-1:-1:-1;;;17208:78:0;;18053:2:1;17208:78:0;;;18035:21:1;18092:2;18072:18;;;18065:30;18131:34;18111:18;;;18104:62;18202:28;18182:18;;;18175:56;18248:19;;17208:78:0;18025:248:1;51751:348:0;51844:4;51546:16;;;:7;:16;;;;;;-1:-1:-1;;;;;51546:16:0;51861:73;;;;-1:-1:-1;;;51861:73:0;;19245:2:1;51861:73:0;;;19227:21:1;19284:2;19264:18;;;19257:30;19323:34;19303:18;;;19296:62;-1:-1:-1;;;19374:18:1;;;19367:42;19426:19;;51861:73:0;19217:234:1;51861:73:0;51945:13;51961:23;51976:7;51961:14;:23::i;:::-;51945:39;;52014:5;-1:-1:-1;;;;;52003:16:0;:7;-1:-1:-1;;;;;52003:16:0;;:51;;;;52047:7;-1:-1:-1;;;;;52023:31:0;:20;52035:7;52023:11;:20::i;:::-;-1:-1:-1;;;;;52023:31:0;;52003:51;:87;;;-1:-1:-1;;;;;;48843:25:0;;;48819:4;48843:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;52058:32;48722:164;54743:578;54902:4;-1:-1:-1;;;;;54875:31:0;:23;54890:7;54875:14;:23::i;:::-;-1:-1:-1;;;;;54875:31:0;;54867:85;;;;-1:-1:-1;;;54867:85:0;;24036:2:1;54867:85:0;;;24018:21:1;24075:2;24055:18;;;24048:30;24114:34;24094:18;;;24087:62;-1:-1:-1;;;24165:18:1;;;24158:39;24214:19;;54867:85:0;24008:231:1;54867:85:0;-1:-1:-1;;;;;54971:16:0;;54963:65;;;;-1:-1:-1;;;54963:65:0;;17294:2:1;54963:65:0;;;17276:21:1;17333:2;17313:18;;;17306:30;17372:34;17352:18;;;17345:62;-1:-1:-1;;;17423:18:1;;;17416:34;17467:19;;54963:65:0;17266:226:1;54963:65:0;55041:39;55062:4;55068:2;55072:7;55041:20;:39::i;:::-;55145:29;55162:1;55166:7;55145:8;:29::i;:::-;-1:-1:-1;;;;;55187:15:0;;;;;;:9;:15;;;;;:20;;55206:1;;55187:15;:20;;55206:1;;55187:20;:::i;:::-;;;;-1:-1:-1;;;;;;;55218:13:0;;;;;;:9;:13;;;;;:18;;55235:1;;55218:13;:18;;55235:1;;55218:18;:::i;:::-;;;;-1:-1:-1;;55247:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;55247:21:0;-1:-1:-1;;;;;55247:21:0;;;;;;;;;55286:27;;55247:16;;55286:27;;;;;;;54743:578;;;:::o;52441:110::-;52517:26;52527:2;52531:7;52517:26;;;;;;;;;;;;:9;:26::i;54046:360::-;54106:13;54122:23;54137:7;54122:14;:23::i;:::-;54106:39;;54158:48;54179:5;54194:1;54198:7;54158:20;:48::i;:::-;54247:29;54264:1;54268:7;54247:8;:29::i;:::-;-1:-1:-1;;;;;54289:16:0;;;;;;:9;:16;;;;;:21;;54309:1;;54289:16;:21;;54309:1;;54289:21;:::i;:::-;;;;-1:-1:-1;;54328:16:0;;;;:7;:16;;;;;;54321:23;;-1:-1:-1;;;;;;54321:23:0;;;54362:36;54336:7;;54328:16;-1:-1:-1;;;;;54362:36:0;;;;;54328:16;;54362:36;54046:360;;:::o;23683:211::-;23827:58;;;-1:-1:-1;;;;;12389:32:1;;23827:58:0;;;12371:51:1;12438:18;;;;12431:34;;;23827:58:0;;;;;;;;;;12344:18:1;;;;23827:58:0;;;;;;;;-1:-1:-1;;;;;23827:58:0;-1:-1:-1;;;23827:58:0;;;23800:86;;23820:5;;23800:19;:86::i;14637:191::-;14730:6;;;-1:-1:-1;;;;;14747:17:0;;;-1:-1:-1;;;;;;14747:17:0;;;;;;;14780:40;;14730:6;;;14747:17;14730:6;;14780:40;;14711:16;;14780:40;14637:191;;:::o;55755:315::-;55910:8;-1:-1:-1;;;;;55901:17:0;:5;-1:-1:-1;;;;;55901:17:0;;;55893:55;;;;-1:-1:-1;;;55893:55:0;;17699:2:1;55893:55:0;;;17681:21:1;17738:2;17718:18;;;17711:30;17777:27;17757:18;;;17750:55;17822:18;;55893:55:0;17671:175:1;55893:55:0;-1:-1:-1;;;;;55959:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;55959:46:0;;;;;;;;;;56021:41;;13388::1;;;56021::0;;13361:18:1;56021:41:0;;;;;;;55755:315;;;:::o;5269:190::-;5394:4;5447;5418:25;5431:5;5438:4;5418:12;:25::i;:::-;:33;;5269:190;-1:-1:-1;;;;5269:190:0:o;50829:315::-;50986:28;50996:4;51002:2;51006:7;50986:9;:28::i;:::-;51033:48;51056:4;51062:2;51066:7;51075:5;51033:22;:48::i;:::-;51025:111;;;;-1:-1:-1;;;51025:111:0;;;;;;;:::i;66870:100::-;66922:13;66955:7;66948:14;;;;;:::i;9653:723::-;9709:13;9930:10;9926:53;;-1:-1:-1;;9957:10:0;;;;;;;;;;;;-1:-1:-1;;;9957:10:0;;;;;9653:723::o;9926:53::-;10004:5;9989:12;10045:78;10052:9;;10045:78;;10078:8;;;;:::i;:::-;;-1:-1:-1;10101:10:0;;-1:-1:-1;10109:2:0;10101:10;;:::i;:::-;;;10045:78;;;10133:19;10165:6;10155:17;;;;;;-1:-1:-1;;;10155:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10155:17:0;;10133:39;;10183:154;10190:10;;10183:154;;10217:11;10227:1;10217:11;;:::i;:::-;;-1:-1:-1;10286:10:0;10294:2;10286:5;:10;:::i;:::-;10273:24;;:2;:24;:::i;:::-;10260:39;;10243:6;10250;10243:14;;;;;;-1:-1:-1;;;10243:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;10243:56:0;;;;;;;;-1:-1:-1;10314:11:0;10323:2;10314:11;;:::i;:::-;;;10183:154;;60826:589;-1:-1:-1;;;;;61032:18:0;;61028:187;;61067:40;61099:7;62242:10;:17;;62215:24;;;;:15;:24;;;;;:44;;;62270:24;;;;;;;;;;;;62138:164;61067:40;61028:187;;;61137:2;-1:-1:-1;;;;;61129:10:0;:4;-1:-1:-1;;;;;61129:10:0;;61125:90;;61156:47;61189:4;61195:7;61156:32;:47::i;:::-;-1:-1:-1;;;;;61229:16:0;;61225:183;;61262:45;61299:7;61262:36;:45::i;61225:183::-;61335:4;-1:-1:-1;;;;;61329:10:0;:2;-1:-1:-1;;;;;61329:10:0;;61325:83;;61356:40;61384:2;61388:7;61356:27;:40::i;52778:321::-;52908:18;52914:2;52918:7;52908:5;:18::i;:::-;52959:54;52990:1;52994:2;52998:7;53007:5;52959:22;:54::i;:::-;52937:154;;;;-1:-1:-1;;;52937:154:0;;;;;;;:::i;26256:716::-;26680:23;26706:69;26734:4;26706:69;;;;;;;;;;;;;;;;;26714:5;-1:-1:-1;;;;;26706:27:0;;;:69;;;;;:::i;:::-;26790:17;;26680:95;;-1:-1:-1;26790:21:0;26786:179;;26887:10;26876:30;;;;;;;;;;;;:::i;:::-;26868:85;;;;-1:-1:-1;;;26868:85:0;;28108:2:1;26868:85:0;;;28090:21:1;28147:2;28127:18;;;28120:30;28186:34;28166:18;;;28159:62;-1:-1:-1;;;28237:18:1;;;28230:40;28287:19;;26868:85:0;28080:232:1;5821:701:0;5904:7;5947:4;5904:7;5962:523;5986:5;:12;5982:1;:16;5962:523;;;6020:20;6043:5;6049:1;6043:8;;;;;;-1:-1:-1;;;6043:8:0;;;;;;;;;;;;;;;6020:31;;6086:12;6070;:28;6066:408;;6223:44;;;;;;9861:19:1;;;9896:12;;;9889:28;;;9933:12;;6223:44:0;;;;;;;;;;;;6213:55;;;;;;6198:70;;6066:408;;;6413:44;;;;;;9861:19:1;;;9896:12;;;9889:28;;;9933:12;;6413:44:0;;;;;;;;;;;;6403:55;;;;;;6388:70;;6066:408;-1:-1:-1;6000:3:0;;;;:::i;:::-;;;;5962:523;;;-1:-1:-1;6502:12:0;5821:701;-1:-1:-1;;;5821:701:0:o;56635:799::-;56790:4;-1:-1:-1;;;;;56811:13:0;;15978:20;16026:8;56807:620;;56847:72;;-1:-1:-1;;;56847:72:0;;-1:-1:-1;;;;;56847:36:0;;;;;:72;;12171:10;;56898:4;;56904:7;;56913:5;;56847:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56847:72:0;;;;;;;;-1:-1:-1;;56847:72:0;;;;;;;;;;;;:::i;:::-;;;56843:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57089:13:0;;57085:272;;57132:60;;-1:-1:-1;;;57132:60:0;;;;;;;:::i;57085:272::-;57307:6;57301:13;57292:6;57288:2;57284:15;57277:38;56843:529;-1:-1:-1;;;;;;56970:51:0;-1:-1:-1;;;56970:51:0;;-1:-1:-1;56963:58:0;;56807:620;-1:-1:-1;57411:4:0;56635:799;;;;;;:::o;62929:988::-;63195:22;63245:1;63220:22;63237:4;63220:16;:22::i;:::-;:26;;;;:::i;:::-;63257:18;63278:26;;;:17;:26;;;;;;63195:51;;-1:-1:-1;63411:28:0;;;63407:328;;-1:-1:-1;;;;;63478:18:0;;63456:19;63478:18;;;:12;:18;;;;;;;;:34;;;;;;;;;63529:30;;;;;;:44;;;63646:30;;:17;:30;;;;;:43;;;63407:328;-1:-1:-1;63831:26:0;;;;:17;:26;;;;;;;;63824:33;;;-1:-1:-1;;;;;63875:18:0;;;;;:12;:18;;;;;:34;;;;;;;63868:41;62929:988::o;64212:1079::-;64490:10;:17;64465:22;;64490:21;;64510:1;;64490:21;:::i;:::-;64522:18;64543:24;;;:15;:24;;;;;;64916:10;:26;;64465:46;;-1:-1:-1;64543:24:0;;64465:46;;64916:26;;;;-1:-1:-1;;;64916:26:0;;;;;;;;;;;;;;;;;64894:48;;64980:11;64955:10;64966;64955:22;;;;;;-1:-1:-1;;;64955:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;65060:28;;;:15;:28;;;;;;;:41;;;65232:24;;;;;65225:31;65267:10;:16;;;;;-1:-1:-1;;;65267:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;64212:1079;;;;:::o;61716:221::-;61801:14;61818:20;61835:2;61818:16;:20::i;:::-;-1:-1:-1;;;;;61849:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;61894:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;61716:221:0:o;53435:382::-;-1:-1:-1;;;;;53515:16:0;;53507:61;;;;-1:-1:-1;;;53507:61:0;;22491:2:1;53507:61:0;;;22473:21:1;;;22510:18;;;22503:30;22569:34;22549:18;;;22542:62;22621:18;;53507:61:0;22463:182:1;53507:61:0;51522:4;51546:16;;;:7;:16;;;;;;-1:-1:-1;;;;;51546:16:0;:30;53579:58;;;;-1:-1:-1;;;53579:58:0;;15704:2:1;53579:58:0;;;15686:21:1;15743:2;15723:18;;;15716:30;15782;15762:18;;;15755:58;15830:18;;53579:58:0;15676:178:1;53579:58:0;53650:45;53679:1;53683:2;53687:7;53650:20;:45::i;:::-;-1:-1:-1;;;;;53708:13:0;;;;;;:9;:13;;;;;:18;;53725:1;;53708:13;:18;;53725:1;;53708:18;:::i;:::-;;;;-1:-1:-1;;53737:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;53737:21:0;-1:-1:-1;;;;;53737:21:0;;;;;;;;53776:33;;53737:16;;;53776:33;;53737:16;;53776:33;53435:382;;:::o;18461:229::-;18598:12;18630:52;18652:6;18660:4;18666:1;18669:12;18598;15978:20;;19868:60;;;;-1:-1:-1;;;19868:60:0;;26511:2:1;19868:60:0;;;26493:21:1;26550:2;26530:18;;;26523:30;26589:31;26569:18;;;26562:59;26638:18;;19868:60:0;26483:179:1;19868:60:0;19942:12;19956:23;19983:6;-1:-1:-1;;;;;19983:11:0;20002:5;20009:4;19983:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19941:73;;;;20032:51;20049:7;20058:10;20070:12;20032:16;:51::i;:::-;20025:58;19581:510;-1:-1:-1;;;;;;;19581:510:0:o;22267:712::-;22417:12;22446:7;22442:530;;;-1:-1:-1;22477:10:0;22470:17;;22442:530;22591:17;;:21;22587:374;;22789:10;22783:17;22850:15;22837:10;22833:2;22829:19;22822:44;22737:148;22932:12;22925:20;;-1:-1:-1;;;22925:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:743::-;479:5;532:3;525:4;517:6;513:17;509:27;499:2;;554:5;547;540:20;499:2;594:6;581:20;620:4;643:18;639:2;636:26;633:2;;;665:18;;:::i;:::-;711:2;708:1;704:10;734:28;758:2;754;750:11;734:28;:::i;:::-;796:15;;;827:12;;;;859:15;;;893;;;889:24;;886:33;-1:-1:-1;883:2:1;;;936:5;929;922:20;883:2;962:5;953:14;;976:163;990:2;987:1;984:9;976:163;;;1047:17;;1035:30;;1008:1;1001:9;;;;;1085:12;;;;1117;;976:163;;;-1:-1:-1;1157:5:1;489:679;-1:-1:-1;;;;;;;489:679:1:o;1173:257::-;1232:6;1285:2;1273:9;1264:7;1260:23;1256:32;1253:2;;;1306:6;1298;1291:22;1253:2;1350:9;1337:23;1369:31;1394:5;1369:31;:::i;1705:398::-;1773:6;1781;1834:2;1822:9;1813:7;1809:23;1805:32;1802:2;;;1855:6;1847;1840:22;1802:2;1899:9;1886:23;1918:31;1943:5;1918:31;:::i;:::-;1968:5;-1:-1:-1;2025:2:1;2010:18;;1997:32;2038:33;1997:32;2038:33;:::i;:::-;2090:7;2080:17;;;1792:311;;;;;:::o;2108:466::-;2185:6;2193;2201;2254:2;2242:9;2233:7;2229:23;2225:32;2222:2;;;2275:6;2267;2260:22;2222:2;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2212:362;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2212:362::o;2579:824::-;2674:6;2682;2690;2698;2751:3;2739:9;2730:7;2726:23;2722:33;2719:2;;;2773:6;2765;2758:22;2719:2;2817:9;2804:23;2836:31;2861:5;2836:31;:::i;:::-;2886:5;-1:-1:-1;2943:2:1;2928:18;;2915:32;2956:33;2915:32;2956:33;:::i;:::-;3008:7;-1:-1:-1;3062:2:1;3047:18;;3034:32;;-1:-1:-1;3117:2:1;3102:18;;3089:32;3144:18;3133:30;;3130:2;;;3181:6;3173;3166:22;3130:2;3209:22;;3262:4;3254:13;;3250:27;-1:-1:-1;3240:2:1;;3296:6;3288;3281:22;3240:2;3324:73;3389:7;3384:2;3371:16;3366:2;3362;3358:11;3324:73;:::i;:::-;3314:83;;;2709:694;;;;;;;:::o;3408:503::-;3501:6;3509;3562:2;3550:9;3541:7;3537:23;3533:32;3530:2;;;3583:6;3575;3568:22;3530:2;3627:9;3614:23;3646:31;3671:5;3646:31;:::i;:::-;3696:5;-1:-1:-1;3752:2:1;3737:18;;3724:32;3779:18;3768:30;;3765:2;;;3816:6;3808;3801:22;3765:2;3844:61;3897:7;3888:6;3877:9;3873:22;3844:61;:::i;:::-;3834:71;;;3520:391;;;;;:::o;3916:392::-;3981:6;3989;4042:2;4030:9;4021:7;4017:23;4013:32;4010:2;;;4063:6;4055;4048:22;4010:2;4107:9;4094:23;4126:31;4151:5;4126:31;:::i;:::-;4176:5;-1:-1:-1;4233:2:1;4218:18;;4205:32;4246:30;4205:32;4246:30;:::i;4313:325::-;4381:6;4389;4442:2;4430:9;4421:7;4417:23;4413:32;4410:2;;;4463:6;4455;4448:22;4410:2;4507:9;4494:23;4526:31;4551:5;4526:31;:::i;:::-;4576:5;4628:2;4613:18;;;;4600:32;;-1:-1:-1;;;4400:238:1:o;4643:665::-;4729:6;4737;4790:2;4778:9;4769:7;4765:23;4761:32;4758:2;;;4811:6;4803;4796:22;4758:2;4856:9;4843:23;4885:18;4926:2;4918:6;4915:14;4912:2;;;4947:6;4939;4932:22;4912:2;4990:6;4979:9;4975:22;4965:32;;5035:7;5028:4;5024:2;5020:13;5016:27;5006:2;;5062:6;5054;5047:22;5006:2;5107;5094:16;5133:2;5125:6;5122:14;5119:2;;;5154:6;5146;5139:22;5119:2;5212:7;5207:2;5197:6;5194:1;5190:14;5186:2;5182:23;5178:32;5175:45;5172:2;;;5238:6;5230;5223:22;5172:2;5274;5266:11;;;;;5296:6;;-1:-1:-1;4748:560:1;;-1:-1:-1;;;;4748:560:1:o;5313:251::-;5369:6;5422:2;5410:9;5401:7;5397:23;5393:32;5390:2;;;5443:6;5435;5428:22;5390:2;5487:9;5474:23;5506:28;5528:5;5506:28;:::i;5569:255::-;5636:6;5689:2;5677:9;5668:7;5664:23;5660:32;5657:2;;;5710:6;5702;5695:22;5657:2;5747:9;5741:16;5766:28;5788:5;5766:28;:::i;5829:190::-;5888:6;5941:2;5929:9;5920:7;5916:23;5912:32;5909:2;;;5962:6;5954;5947:22;5909:2;-1:-1:-1;5990:23:1;;5899:120;-1:-1:-1;5899:120:1:o;6024:255::-;6082:6;6135:2;6123:9;6114:7;6110:23;6106:32;6103:2;;;6156:6;6148;6141:22;6103:2;6200:9;6187:23;6219:30;6243:5;6219:30;:::i;6284:259::-;6353:6;6406:2;6394:9;6385:7;6381:23;6377:32;6374:2;;;6427:6;6419;6412:22;6374:2;6464:9;6458:16;6483:30;6507:5;6483:30;:::i;6824:412::-;6906:6;6914;6967:2;6955:9;6946:7;6942:23;6938:32;6935:2;;;6988:6;6980;6973:22;7241:642;7312:6;7320;7373:2;7361:9;7352:7;7348:23;7344:32;7341:2;;;7394:6;7386;7379:22;7341:2;7439:9;7426:23;7468:18;7509:2;7501:6;7498:14;7495:2;;;7530:6;7522;7515:22;7495:2;7573:6;7562:9;7558:22;7548:32;;7618:7;7611:4;7607:2;7603:13;7599:27;7589:2;;7645:6;7637;7630:22;7589:2;7690;7677:16;7716:2;7708:6;7705:14;7702:2;;;7737:6;7729;7722:22;7702:2;7787:7;7782:2;7773:6;7769:2;7765:15;7761:24;7758:37;7755:2;;;7813:6;7805;7798:22;7888:480;7957:6;8010:2;7998:9;7989:7;7985:23;7981:32;7978:2;;;8031:6;8023;8016:22;7978:2;8076:9;8063:23;8109:18;8101:6;8098:30;8095:2;;;8146:6;8138;8131:22;8095:2;8174:22;;8227:4;8219:13;;8215:27;-1:-1:-1;8205:2:1;;8261:6;8253;8246:22;8205:2;8289:73;8354:7;8349:2;8336:16;8331:2;8327;8323:11;8289:73;:::i;8568:194::-;8638:6;8691:2;8679:9;8670:7;8666:23;8662:32;8659:2;;;8712:6;8704;8697:22;8659:2;-1:-1:-1;8740:16:1;;8649:113;-1:-1:-1;8649:113:1:o;8767:436::-;8860:6;8868;8921:2;8909:9;8900:7;8896:23;8892:32;8889:2;;;8942:6;8934;8927:22;8889:2;8983:9;8970:23;8960:33;;9044:2;9033:9;9029:18;9016:32;9071:18;9063:6;9060:30;9057:2;;;9108:6;9100;9093:22;9208:257;9249:3;9287:5;9281:12;9314:6;9309:3;9302:19;9330:63;9386:6;9379:4;9374:3;9370:14;9363:4;9356:5;9352:16;9330:63;:::i;:::-;9447:2;9426:15;-1:-1:-1;;9422:29:1;9413:39;;;;9454:4;9409:50;;9257:208;-1:-1:-1;;9257:208:1:o;9956:274::-;10085:3;10123:6;10117:13;10139:53;10185:6;10180:3;10173:4;10165:6;10161:17;10139:53;:::i;:::-;10208:16;;;;;10093:137;-1:-1:-1;;10093:137:1:o;10235:1531::-;10459:3;10497:6;10491:13;10523:4;10536:51;10580:6;10575:3;10570:2;10562:6;10558:15;10536:51;:::i;:::-;10650:13;;10609:16;;;;10672:55;10650:13;10609:16;10694:15;;;10672:55;:::i;:::-;10818:13;;10749:20;;;10789:3;;10878:1;10900:18;;;;10953;;;;10980:2;;11058:4;11048:8;11044:19;11032:31;;10980:2;11121;11111:8;11108:16;11088:18;11085:40;11082:2;;;-1:-1:-1;;;11148:33:1;;11204:4;11201:1;11194:15;11234:4;11155:3;11222:17;11082:2;11265:18;11292:110;;;;11416:1;11411:330;;;;11258:483;;11292:110;-1:-1:-1;;11327:24:1;;11313:39;;11372:20;;;;-1:-1:-1;11292:110:1;;11411:330;29244:4;29263:17;;;29313:4;29297:21;;11506:3;11522:169;11536:8;11533:1;11530:15;11522:169;;;11618:14;;11603:13;;;11596:37;11661:16;;;;11553:10;;11522:169;;;11526:3;;11722:8;11715:5;11711:20;11704:27;;11258:483;-1:-1:-1;11757:3:1;;10467:1299;-1:-1:-1;;;;;;;;;;;10467:1299:1:o;12476:488::-;-1:-1:-1;;;;;12745:15:1;;;12727:34;;12797:15;;12792:2;12777:18;;12770:43;12844:2;12829:18;;12822:34;;;12892:3;12887:2;12872:18;;12865:31;;;12670:4;;12913:45;;12938:19;;12930:6;12913:45;:::i;:::-;12905:53;12679:285;-1:-1:-1;;;;;;12679:285:1:o;13622:219::-;13771:2;13760:9;13753:21;13734:4;13791:44;13831:2;13820:9;13816:18;13808:6;13791:44;:::i;13846:413::-;14048:2;14030:21;;;14087:2;14067:18;;;14060:30;14126:34;14121:2;14106:18;;14099:62;-1:-1:-1;;;14192:2:1;14177:18;;14170:47;14249:3;14234:19;;14020:239::o;14676:414::-;14878:2;14860:21;;;14917:2;14897:18;;;14890:30;14956:34;14951:2;14936:18;;14929:62;-1:-1:-1;;;15022:2:1;15007:18;;15000:48;15080:3;15065:19;;14850:240::o;16685:402::-;16887:2;16869:21;;;16926:2;16906:18;;;16899:30;16965:34;16960:2;16945:18;;16938:62;-1:-1:-1;;;17031:2:1;17016:18;;17009:36;17077:3;17062:19;;16859:228::o;19456:407::-;19658:2;19640:21;;;19697:2;19677:18;;;19670:30;19736:34;19731:2;19716:18;;19709:62;-1:-1:-1;;;19802:2:1;19787:18;;19780:41;19853:3;19838:19;;19630:233::o;19868:402::-;20070:2;20052:21;;;20109:2;20089:18;;;20082:30;20148:34;20143:2;20128:18;;20121:62;-1:-1:-1;;;20214:2:1;20199:18;;20192:36;20260:3;20245:19;;20042:228::o;21881:403::-;22083:2;22065:21;;;22122:2;22102:18;;;22095:30;22161:34;22156:2;22141:18;;22134:62;-1:-1:-1;;;22227:2:1;22212:18;;22205:37;22274:3;22259:19;;22055:229::o;23063:356::-;23265:2;23247:21;;;23284:18;;;23277:30;23343:34;23338:2;23323:18;;23316:62;23410:2;23395:18;;23237:182::o;25891:413::-;26093:2;26075:21;;;26132:2;26112:18;;;26105:30;26171:34;26166:2;26151:18;;26144:62;-1:-1:-1;;;26237:2:1;26222:18;;26215:47;26294:3;26279:19;;26065:239::o;26667:415::-;26869:2;26851:21;;;26908:2;26888:18;;;26881:30;26947:34;26942:2;26927:18;;26920:62;-1:-1:-1;;;27013:2:1;26998:18;;26991:49;27072:3;27057:19;;26841:241::o;28917:275::-;28988:2;28982:9;29053:2;29034:13;;-1:-1:-1;;29030:27:1;29018:40;;29088:18;29073:34;;29109:22;;;29070:62;29067:2;;;29135:18;;:::i;:::-;29171:2;29164:22;28962:230;;-1:-1:-1;28962:230:1:o;29329:128::-;29369:3;29400:1;29396:6;29393:1;29390:13;29387:2;;;29406:18;;:::i;:::-;-1:-1:-1;29442:9:1;;29377:80::o;29462:120::-;29502:1;29528;29518:2;;29533:18;;:::i;:::-;-1:-1:-1;29567:9:1;;29508:74::o;29587:168::-;29627:7;29693:1;29689;29685:6;29681:14;29678:1;29675:21;29670:1;29663:9;29656:17;29652:45;29649:2;;;29700:18;;:::i;:::-;-1:-1:-1;29740:9:1;;29639:116::o;29760:125::-;29800:4;29828:1;29825;29822:8;29819:2;;;29833:18;;:::i;:::-;-1:-1:-1;29870:9:1;;29809:76::o;29890:258::-;29962:1;29972:113;29986:6;29983:1;29980:13;29972:113;;;30062:11;;;30056:18;30043:11;;;30036:39;30008:2;30001:10;29972:113;;;30103:6;30100:1;30097:13;30094:2;;;-1:-1:-1;;30138:1:1;30120:16;;30113:27;29943:205::o;30153:380::-;30232:1;30228:12;;;;30275;;;30296:2;;30350:4;30342:6;30338:17;30328:27;;30296:2;30403;30395:6;30392:14;30372:18;30369:38;30366:2;;;30449:10;30444:3;30440:20;30437:1;30430:31;30484:4;30481:1;30474:15;30512:4;30509:1;30502:15;30366:2;;30208:325;;;:::o;30538:135::-;30577:3;-1:-1:-1;;30598:17:1;;30595:2;;;30618:18;;:::i;:::-;-1:-1:-1;30665:1:1;30654:13;;30585:88::o;30678:112::-;30710:1;30736;30726:2;;30741:18;;:::i;:::-;-1:-1:-1;30775:9:1;;30716:74::o;30795:127::-;30856:10;30851:3;30847:20;30844:1;30837:31;30887:4;30884:1;30877:15;30911:4;30908:1;30901:15;30927:127;30988:10;30983:3;30979:20;30976:1;30969:31;31019:4;31016:1;31009:15;31043:4;31040:1;31033:15;31059:127;31120:10;31115:3;31111:20;31108:1;31101:31;31151:4;31148:1;31141:15;31175:4;31172:1;31165:15;31191:131;-1:-1:-1;;;;;31266:31:1;;31256:42;;31246:2;;31312:1;31309;31302:12;31327:118;31413:5;31406:13;31399:21;31392:5;31389:32;31379:2;;31435:1;31432;31425:12;31450:131;-1:-1:-1;;;;;;31524:32:1;;31514:43;;31504:2;;31571:1;31568;31561:12

Swarm Source

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