ETH Price: $2,521.40 (-0.04%)

Token

WavelengthXmfers (WLXMF)
 

Overview

Max Total Supply

182 WLXMF

Holders

170

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
420247365.eth
0x8381b83c446f9311d7ee22697509c49a79d23940
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:
WavelengthXmfers

Compiler Version
v0.8.7+commit.e28d00a7

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-14
*/

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


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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.5.0) (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 = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// 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 (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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/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/access/AccessControl.sol


// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

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


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

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

    /**
     * @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, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] -= amounts[i];
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Pausable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Pausable.sol)

pragma solidity ^0.8.0;



/**
 * @dev ERC1155 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Pausable is ERC1155, Pausable {
    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        require(!paused(), "ERC1155Pausable: token transfer while paused");
    }
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

// File: AbstractEditionContract.sol



pragma solidity ^0.8.4;







abstract contract AbstractEditionContract is AccessControl, ERC1155Pausable, ERC1155Supply, ERC1155Burnable, Ownable {
    
    string public name_;
    string public symbol_;
    
    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }    

    function setURI(string memory baseURI) external onlyOwner {
        _setURI(baseURI);
    }    

    function name() public view returns (string memory) {
        return name_;
    }

    function symbol() public view returns (string memory) {
        return symbol_;
    }          

    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual override(ERC1155) {
        super._mint(account, id, amount, data);
    }

    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override(ERC1155) {
        super._mintBatch(to, ids, amounts, data);
    }

    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual override(ERC1155) {
        super._burn(account, id, amount);
    }

    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual override(ERC1155) {
        super._burnBatch(account, ids, amounts);
    }  

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override(ERC1155Pausable, ERC1155,ERC1155Supply) {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }  

    function setOwner(address _addr) public onlyOwner {
        transferOwnership(_addr);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
   function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155, AccessControl) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

}
// File: WavelengthXmfers.sol

pragma solidity ^0.8.4;

// Based on contract by  Dev by @bitcoinski +  @ultra_dao. Extended by @georgefatlion
contract WavelengthXmfers is AbstractEditionContract  {
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private editionCounter; 
    
    event Claimed(uint index, address indexed account, uint amount);
    event ClaimedMultiple(uint[] index, address indexed account, uint[] amount);

    mapping(uint256 => Edition) public editions;
    string public _contractURI;

    struct Edition {
        bytes32 merkleRoot;
        bool saleIsOpen;
        uint256 mintPrice;
        uint256 maxSupply;
        uint256 maxPerWallet;
        uint256 maxMintPerTxn;
        string metadataLink;
        bool merkleProtect;
        bool claimMultiple;
        mapping(address => uint256) claimedAddress;
    }
   
    constructor(
        string memory _name, 
        string memory _symbol
    ) ERC1155("Editions") {
        name_ = _name;
        symbol_ = _symbol;
    }

    function addEdition(
        bytes32 _merkleRoot, 
        uint256 _mintPrice, 
        uint256 _maxSupply,
        uint256 _maxMintPerTxn,
        string memory _metadataLink,
        uint256 _maxPerWallet,
        bool _merkleProtect
    ) external onlyOwner {
        Edition storage edition = editions[editionCounter.current()];
        edition.saleIsOpen = false;
        edition.merkleRoot = _merkleRoot;
        edition.mintPrice = _mintPrice;
        edition.maxSupply = _maxSupply;
        edition.maxMintPerTxn = _maxMintPerTxn;
        edition.maxPerWallet = _maxPerWallet;
        edition.metadataLink = _metadataLink;
        edition.merkleProtect = _merkleProtect;
        edition.claimMultiple = false;
        editionCounter.increment();
    }

    function editEdition(
        bytes32 _merkleRoot, 
        uint256 _mintPrice, 
        uint256 _maxSupply,
        uint256 _maxMintPerTxn,
        string memory _metadataLink,        
        uint256 _editionIndex,
        bool _saleIsOpen,
        uint256 _maxPerWallet,
        bool _merkleProtect,
        bool _claimMultiple

    ) external onlyOwner {
        if(editions[_editionIndex].merkleRoot != _merkleRoot){
            editions[_editionIndex].merkleRoot = _merkleRoot;
        }
        if(editions[_editionIndex].mintPrice != _mintPrice){
            editions[_editionIndex].mintPrice = _mintPrice;  
        }
        if(editions[_editionIndex].maxSupply != _maxSupply){
            editions[_editionIndex].maxSupply = _maxSupply;    
        }
        if(editions[_editionIndex].maxMintPerTxn != _maxMintPerTxn){
            editions[_editionIndex].maxMintPerTxn = _maxMintPerTxn; 
        }
        editions[_editionIndex].metadataLink = _metadataLink;   
         
        if(editions[_editionIndex].saleIsOpen != _saleIsOpen){
            editions[_editionIndex].saleIsOpen = _saleIsOpen; 
        }
        if(editions[_editionIndex].maxPerWallet != _maxPerWallet){
            editions[_editionIndex].maxPerWallet = _maxPerWallet; 
        }
        if(editions[_editionIndex].merkleProtect != _merkleProtect){
            editions[_editionIndex].merkleProtect = _merkleProtect;
        }
        if(editions[_editionIndex].claimMultiple = _claimMultiple){
            editions[_editionIndex].claimMultiple = _claimMultiple;
        }
    }       

    function claim(
        uint256 numPieces,
        uint256 amount,
        uint256 editionIndex,
        bytes32[] calldata merkleProof
    ) external payable {
        // verify call is valid
        require(isValidClaim(numPieces,amount,editionIndex,merkleProof));
        
        _mint(msg.sender, editionIndex, numPieces, "");
        editions[editionIndex].claimedAddress[msg.sender] = editions[editionIndex].claimedAddress[msg.sender].add(numPieces);

        emit Claimed(editionIndex, msg.sender, numPieces);
    }

    function claimMultiple(
        uint256[] calldata numPieces,
        uint256[] calldata amounts,
        uint256[] calldata editionIndexes,
        bytes32[][] calldata merkleProofs
    ) external payable {

         // verify contract is not paused
        require(!paused(), "Claim: claiming is paused");

        //validate all tokens being claimed and aggregate a total cost due
        uint256 totalPrice = 0;
        for (uint i=0; i< editionIndexes.length; i++) {
            require(isValidClaim(numPieces[i],amounts[i],editionIndexes[i],merkleProofs[i]), "One or more claims are invalid");
            require(editions[editionIndexes[i]].claimMultiple, "Claim multiple not enabled.");

            totalPrice.add(numPieces[i].mul(editions[editionIndexes[i]].mintPrice));
        }
        // check the message has enough value to cover all tokens. 
        require(msg.value >= totalPrice, "Value not enough to cover all transactions");

        for (uint i=0; i< editionIndexes.length; i++) {
            require(isValidClaim(numPieces[i],amounts[i],editionIndexes[i],merkleProofs[i]), "One or more claims are invalid");

            editions[editionIndexes[i]].claimedAddress[msg.sender] = editions[editionIndexes[i]].claimedAddress[msg.sender].add(numPieces[i]);
        } 

        _mintBatch(msg.sender, editionIndexes, numPieces, "");

        emit ClaimedMultiple(editionIndexes, msg.sender, numPieces);
    }

    function mint(
        address to,
        uint256 editionIndex,
        uint256 numPieces
    ) public onlyOwner
    {
        _mint(to, editionIndex, numPieces, "");
    }

    function mintBatch(
        address to,
        uint256[] calldata editionIndexes,
        uint256[] calldata numPieces
    ) public onlyOwner
    {
        _mintBatch(to, editionIndexes, numPieces, "");
    }

    function isValidClaim( uint256 numPieces,
        uint256 amount,
        uint256 editionIndex,
        bytes32[] calldata merkleProof) internal view returns (bool) {
         // verify contract is not paused
        require(!paused(), "Claim: claiming is paused");
        // verify edition for given index exists
        require(editions[editionIndex].maxSupply != 0, "Claim: Edition does not exist");
        // verify sale for given edition is open. 
        require(editions[editionIndex].saleIsOpen, "Sale is paused");
        // Verify minting price
        require(msg.value >= numPieces.mul(editions[editionIndex].mintPrice), "Claim: Ether value incorrect");
        // Verify numPieces is within remaining claimable amount 
        require(editions[editionIndex].claimedAddress[msg.sender].add(numPieces) <= amount, "Claim: Not allowed to claim given amount");
        require(editions[editionIndex].claimedAddress[msg.sender].add(numPieces) <= editions[editionIndex].maxPerWallet, "Claim: Not allowed to claim that many from one wallet");
        require(numPieces <= editions[editionIndex].maxMintPerTxn, "Max quantity per transaction exceeded");

        require(totalSupply(editionIndex) + numPieces <= editions[editionIndex].maxSupply, "Purchase would exceed max supply");
                
        bool isValid = true;
        if (editions[editionIndex].merkleProtect)
        {
            isValid = verifyMerkleProof(merkleProof, editions[editionIndex].merkleRoot);
            require(
                isValid,
                "MerkleDistributor: Invalid proof." 
            );  
        }
        return isValid;
    }

    function isSaleOpen(uint256 editionIndex) public view returns (bool) {
        return editions[editionIndex].saleIsOpen;
    }

    function setSaleState(uint256 editionIndex, bool state) external onlyOwner{
         editions[editionIndex].saleIsOpen = state;
    }

    function verifyMerkleProof(bytes32[] memory proof, bytes32 root)
        public
        view
        returns (bool)
    {

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return MerkleProof.verify(proof, root, leaf);
    }

    function char(bytes1 b) internal pure returns (bytes1 c) {
        if (uint8(b) < 10) return bytes1(uint8(b) + 0x30);
        else return bytes1(uint8(b) + 0x57);
    }
    
    function withdrawEther(address payable _to, uint256 _amount) public onlyOwner
    {
        _to.transfer(_amount);
    }
    
    function getClaimedMps(uint256 poolId, address userAdress) public view returns (uint256) {
        return editions[poolId].claimedAddress[userAdress];
    }

    function uri(uint256 _id) public view override returns (string memory) {
            require(totalSupply(_id) > 0, "URI: nonexistent token");
            return string(editions[_id].metadataLink);
    } 

    function setContractURI(string memory newURI) external onlyOwner{
        _contractURI = newURI;
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":false,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256[]","name":"index","type":"uint256[]"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"ClaimedMultiple","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"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintPerTxn","type":"uint256"},{"internalType":"string","name":"_metadataLink","type":"string"},{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"},{"internalType":"bool","name":"_merkleProtect","type":"bool"}],"name":"addEdition","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numPieces","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"editionIndex","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"numPieces","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"uint256[]","name":"editionIndexes","type":"uint256[]"},{"internalType":"bytes32[][]","name":"merkleProofs","type":"bytes32[][]"}],"name":"claimMultiple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintPerTxn","type":"uint256"},{"internalType":"string","name":"_metadataLink","type":"string"},{"internalType":"uint256","name":"_editionIndex","type":"uint256"},{"internalType":"bool","name":"_saleIsOpen","type":"bool"},{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"},{"internalType":"bool","name":"_merkleProtect","type":"bool"},{"internalType":"bool","name":"_claimMultiple","type":"bool"}],"name":"editEdition","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"editions","outputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"bool","name":"saleIsOpen","type":"bool"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTxn","type":"uint256"},{"internalType":"string","name":"metadataLink","type":"string"},{"internalType":"bool","name":"merkleProtect","type":"bool"},{"internalType":"bool","name":"claimMultiple","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"poolId","type":"uint256"},{"internalType":"address","name":"userAdress","type":"address"}],"name":"getClaimedMps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"editionIndex","type":"uint256"}],"name":"isSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"editionIndex","type":"uint256"},{"internalType":"uint256","name":"numPieces","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"editionIndexes","type":"uint256[]"},{"internalType":"uint256[]","name":"numPieces","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"newURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"editionIndex","type":"uint256"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"verifyMerkleProof","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200464738038062004647833981016040819052620000349162000270565b60408051808201909152600881526745646974696f6e7360c01b60208201526200005e81620000a8565b506004805460ff191690556200007433620000c1565b81516200008990600790602085019062000113565b5080516200009f90600890602084019062000113565b5050506200032d565b8051620000bd90600390602084019062000113565b5050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012190620002da565b90600052602060002090601f01602090048101928262000145576000855562000190565b82601f106200016057805160ff191683800117855562000190565b8280016001018555821562000190579182015b828111156200019057825182559160200191906001019062000173565b506200019e929150620001a2565b5090565b5b808211156200019e5760008155600101620001a3565b600082601f830112620001cb57600080fd5b81516001600160401b0380821115620001e857620001e862000317565b604051601f8301601f19908116603f0116810190828211818310171562000213576200021362000317565b816040528381526020925086838588010111156200023057600080fd5b600091505b8382101562000254578582018301518183018401529082019062000235565b83821115620002665760008385830101525b9695505050505050565b600080604083850312156200028457600080fd5b82516001600160401b03808211156200029c57600080fd5b620002aa86838701620001b9565b93506020850151915080821115620002c157600080fd5b50620002d085828601620001b9565b9150509250929050565b600181811c90821680620002ef57607f821691505b602082108114156200031157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61430a806200033d6000396000f3fe6080604052600436106102715760003560e01c80636b20c4541161014f578063bd85b039116100c1578063e8a3d4851161007a578063e8a3d485146107a0578063e985e9c5146107b5578063ea25e176146107fe578063f242432a14610811578063f2fde38b14610831578063f5298aca1461085157600080fd5b8063bd85b039146106c2578063c0e72740146106ef578063c195a4ef14610704578063d547741f1461074b578063d81d0a151461076b578063e2b9e1861461078b57600080fd5b806391d148541161011357806391d1485414610623578063938e3d7b1461064357806395d89b4114610663578063a217fddf14610678578063a22cb4651461068d578063af17dea6146106ad57600080fd5b80636b20c45414610591578063715018a6146105b15780638456cb59146105c657806385a222ae146105db5780638da5cb5b146105fb57600080fd5b80632eb2c2d6116101e85780634e1273f4116101ac5780634e1273f4146104ca5780634f558e79146104f7578063522f6815146105265780635c975abb146105465780635f0440521461055e578063632c6f1f1461057e57600080fd5b80632eb2c2d6146104225780632f2ff15d1461044257806336568abe146104625780633f4ba83a146104825780634044556d1461049757600080fd5b806313af40351161023a57806313af40351461033d578063156e29f61461035d5780631d0a43941461037d578063248a9ca31461039d578063279c806e146103cd5780632913ebc01461040257600080fd5b8062fdd58e1461027657806301ffc9a7146102a957806302fe5305146102d957806306fdde03146102fb5780630e89341c1461031d575b600080fd5b34801561028257600080fd5b506102966102913660046133f9565b610871565b6040519081526020015b60405180910390f35b3480156102b557600080fd5b506102c96102c4366004613a75565b61090a565b60405190151581526020016102a0565b3480156102e557600080fd5b506102f96102f4366004613aaf565b61091b565b005b34801561030757600080fd5b50610310610951565b6040516102a09190613dcb565b34801561032957600080fd5b50610310610338366004613910565b6109e3565b34801561034957600080fd5b506102f96103583660046133dc565b610adc565b34801561036957600080fd5b506102f961037836600461369f565b610b0f565b34801561038957600080fd5b506102f961039836600461394e565b610b59565b3480156103a957600080fd5b506102966103b8366004613910565b60009081526020819052604090206001015490565b3480156103d957600080fd5b506103ed6103e8366004613910565b610c0f565b6040516102a099989796959493929190613d72565b34801561040e57600080fd5b506102f961041d3660046139cb565b610cec565b34801561042e57600080fd5b506102f961043d36600461345e565b610eed565b34801561044e57600080fd5b506102f961045d366004613929565b610f84565b34801561046e57600080fd5b506102f961047d366004613929565b610faa565b34801561048e57600080fd5b506102f9611028565b3480156104a357600080fd5b506102c96104b2366004613910565b6000908152600a602052604090206001015460ff1690565b3480156104d657600080fd5b506104ea6104e53660046136d4565b61105c565b6040516102a09190613d31565b34801561050357600080fd5b506102c9610512366004613910565b600090815260056020526040902054151590565b34801561053257600080fd5b506102f96105413660046133f9565b611185565b34801561055257600080fd5b5060045460ff166102c9565b34801561056a57600080fd5b506102c96105793660046137a6565b6111e5565b6102f961058c36600461384d565b611233565b34801561059d57600080fd5b506102f96105ac3660046135f5565b6116b3565b3480156105bd57600080fd5b506102f96116f6565b3480156105d257600080fd5b506102f961172a565b3480156105e757600080fd5b506102f96105f6366004613ae3565b61175c565b34801561060757600080fd5b506006546040516001600160a01b0390911681526020016102a0565b34801561062f57600080fd5b506102c961063e366004613929565b6117a9565b34801561064f57600080fd5b506102f961065e366004613aaf565b6117d2565b34801561066f57600080fd5b5061031061180f565b34801561068457600080fd5b50610296600081565b34801561069957600080fd5b506102f96106a836600461366a565b61181e565b3480156106b957600080fd5b50610310611829565b3480156106ce57600080fd5b506102966106dd366004613910565b60009081526005602052604090205490565b3480156106fb57600080fd5b506103106118b7565b34801561071057600080fd5b5061029661071f366004613929565b6000828152600a602090815260408083206001600160a01b038516845260080190915290205492915050565b34801561075757600080fd5b506102f9610766366004613929565b6118c4565b34801561077757600080fd5b506102f9610786366004613573565b6118ea565b34801561079757600080fd5b50610310611990565b3480156107ac57600080fd5b5061031061199d565b3480156107c157600080fd5b506102c96107d0366004613425565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b6102f961080c366004613b06565b6119ac565b34801561081d57600080fd5b506102f961082c36600461350b565b611a67565b34801561083d57600080fd5b506102f961084c3660046133dc565b611aac565b34801561085d57600080fd5b506102f961086c36600461369f565b611b44565b60006001600160a01b0383166108e25760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b600061091582611b87565b92915050565b6006546001600160a01b031633146109455760405162461bcd60e51b81526004016108d990613f85565b61094e81611bc7565b50565b60606007805461096090614140565b80601f016020809104026020016040519081016040528092919081815260200182805461098c90614140565b80156109d95780601f106109ae576101008083540402835291602001916109d9565b820191906000526020600020905b8154815290600101906020018083116109bc57829003601f168201915b5050505050905090565b60008181526005602052604081205460609110610a3b5760405162461bcd60e51b81526020600482015260166024820152752aa9249d103737b732bc34b9ba32b73a103a37b5b2b760511b60448201526064016108d9565b6000828152600a602052604090206006018054610a5790614140565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8390614140565b8015610ad05780601f10610aa557610100808354040283529160200191610ad0565b820191906000526020600020905b815481529060010190602001808311610ab357829003601f168201915b50505050509050919050565b6006546001600160a01b03163314610b065760405162461bcd60e51b81526004016108d990613f85565b61094e81611aac565b6006546001600160a01b03163314610b395760405162461bcd60e51b81526004016108d990613f85565b610b5483838360405180602001604052806000815250611bda565b505050565b6006546001600160a01b03163314610b835760405162461bcd60e51b81526004016108d990613f85565b6000600a6000610b9260095490565b815260208082019290925260400160002060018101805460ff19169055898155600281018990556003810188905560058101879055600481018590558551909250610be5916006840191908701906131f9565b5060078101805461ffff191683151561ff0019161790556009805460010190555050505050505050565b600a602052600090815260409020805460018201546002830154600384015460048501546005860154600687018054969760ff909616969495939492939192610c5790614140565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8390614140565b8015610cd05780601f10610ca557610100808354040283529160200191610cd0565b820191906000526020600020905b815481529060010190602001808311610cb357829003601f168201915b5050506007909301549192505060ff8082169161010090041689565b6006546001600160a01b03163314610d165760405162461bcd60e51b81526004016108d990613f85565b6000858152600a60205260409020548a14610d3d576000858152600a602052604090208a90555b6000858152600a60205260409020600201548914610d6a576000858152600a602052604090206002018990555b6000858152600a60205260409020600301548814610d97576000858152600a602052604090206003018890555b6000858152600a60205260409020600501548714610dc4576000858152600a602052604090206005018790555b6000858152600a602090815260409091208751610de9926006909201918901906131f9565b506000858152600a602052604090206001015460ff16151584151514610e27576000858152600a60205260409020600101805460ff19168515151790555b6000858152600a60205260409020600401548314610e54576000858152600a602052604090206004018390555b6000858152600a602052604090206007015460ff16151582151514610e91576000858152600a60205260409020600701805460ff19168315151790555b6000858152600a602052604090206007018054821580156101000261ff001990921691909117909155610ee1576000858152600a60205260409020600701805461ff001916610100831515021790555b50505050505050505050565b6001600160a01b038516331480610f095750610f0985336107d0565b610f705760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108d9565b610f7d8585858585611bec565b5050505050565b600082815260208190526040902060010154610fa08133611d99565b610b548383611dfd565b6001600160a01b038116331461101a5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016108d9565b6110248282611e81565b5050565b6006546001600160a01b031633146110525760405162461bcd60e51b81526004016108d990613f85565b61105a611ee6565b565b606081518351146110c15760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016108d9565b600083516001600160401b038111156110dc576110dc6141ee565b604051908082528060200260200182016040528015611105578160200160208202803683370190505b50905060005b845181101561117d57611150858281518110611129576111296141d8565b6020026020010151858381518110611143576111436141d8565b6020026020010151610871565b828281518110611162576111626141d8565b6020908102919091010152611176816141a7565b905061110b565b509392505050565b6006546001600160a01b031633146111af5760405162461bcd60e51b81526004016108d990613f85565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610b54573d6000803e3d6000fd5b6040516bffffffffffffffffffffffff193360601b166020820152600090819060340160405160208183030381529060405280519060200120905061122b848483611f79565b949350505050565b60045460ff16156112825760405162461bcd60e51b815260206004820152601960248201527810db185a5b4e8818db185a5b5a5b99c81a5cc81c185d5cd959603a1b60448201526064016108d9565b6000805b8481101561144f576113058a8a838181106112a3576112a36141d8565b905060200201358989848181106112bc576112bc6141d8565b905060200201358888858181106112d5576112d56141d8565b905060200201358787868181106112ee576112ee6141d8565b90506020028101906113009190614043565b611f8f565b6113515760405162461bcd60e51b815260206004820152601e60248201527f4f6e65206f72206d6f726520636c61696d732061726520696e76616c6964000060448201526064016108d9565b600a6000878784818110611367576113676141d8565b90506020020135815260200190815260200160002060070160019054906101000a900460ff166113d95760405162461bcd60e51b815260206004820152601b60248201527f436c61696d206d756c7469706c65206e6f7420656e61626c65642e000000000060448201526064016108d9565b61143c611435600a60008989868181106113f5576113f56141d8565b905060200201358152602001908152602001600020600201548c8c85818110611420576114206141d8565b905060200201356123d490919063ffffffff16565b83906123e7565b5080611447816141a7565b915050611286565b50803410156114b35760405162461bcd60e51b815260206004820152602a60248201527f56616c7565206e6f7420656e6f75676820746f20636f76657220616c6c207472604482015269616e73616374696f6e7360b01b60648201526084016108d9565b60005b848110156115d3576114d38a8a838181106112a3576112a36141d8565b61151f5760405162461bcd60e51b815260206004820152601e60248201527f4f6e65206f72206d6f726520636c61696d732061726520696e76616c6964000060448201526064016108d9565b6115818a8a83818110611534576115346141d8565b90506020020135600a6000898986818110611551576115516141d8565b602090810292909201358352508181019290925260409081016000908120338252600801909252902054906123e7565b600a6000888885818110611597576115976141d8565b602090810292909201358352508181019290925260409081016000908120338252600801909252902055806115cb816141a7565b9150506114b6565b5061166133868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508b8b808060200260200160405190810160405280939291908181526020018383602002808284376000920182905250604080516020810190915290815292506123f3915050565b336001600160a01b03167f1f36743b8f77937c5a06ebeca4819ea0c795222f7ecf5a42583ff5d0063adabf86868c8c6040516116a09493929190613d0a565b60405180910390a2505050505050505050565b6001600160a01b0383163314806116cf57506116cf83336107d0565b6116eb5760405162461bcd60e51b81526004016108d990613e6a565b610b548383836123ff565b6006546001600160a01b031633146117205760405162461bcd60e51b81526004016108d990613f85565b61105a600061240a565b6006546001600160a01b031633146117545760405162461bcd60e51b81526004016108d990613f85565b61105a61245c565b6006546001600160a01b031633146117865760405162461bcd60e51b81526004016108d990613f85565b6000918252600a6020526040909120600101805460ff1916911515919091179055565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6006546001600160a01b031633146117fc5760405162461bcd60e51b81526004016108d990613f85565b805161102490600b9060208401906131f9565b60606008805461096090614140565b6110243383836124d7565b6008805461183690614140565b80601f016020809104026020016040519081016040528092919081815260200182805461186290614140565b80156118af5780601f10611884576101008083540402835291602001916118af565b820191906000526020600020905b81548152906001019060200180831161189257829003601f168201915b505050505081565b600b805461183690614140565b6000828152602081905260409020600101546118e08133611d99565b610b548383611e81565b6006546001600160a01b031633146119145760405162461bcd60e51b81526004016108d990613f85565b610f7d85858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040805160208089028281018201909352888252909350889250879182918501908490808284376000920182905250604080516020810190915290815292506123f3915050565b6007805461183690614140565b6060600b805461096090614140565b6119b98585858585611f8f565b6119c257600080fd5b6119dd33848760405180602001604052806000815250611bda565b6000838152600a60209081526040808320338452600801909152902054611a0490866123e7565b6000848152600a6020908152604080832033808552600890910183529281902093909355825186815290810188905290917f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed026910160405180910390a25050505050565b6001600160a01b038516331480611a835750611a8385336107d0565b611a9f5760405162461bcd60e51b81526004016108d990613e6a565b610f7d85858585856125b8565b6006546001600160a01b03163314611ad65760405162461bcd60e51b81526004016108d990613f85565b6001600160a01b038116611b3b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108d9565b61094e8161240a565b6001600160a01b038316331480611b605750611b6083336107d0565b611b7c5760405162461bcd60e51b81526004016108d990613e6a565b610b548383836126e8565b60006001600160e01b03198216636cdb3d1360e11b1480611bb857506001600160e01b031982166303a24d0760e21b145b806109155750610915826126f3565b80516110249060039060208401906131f9565b611be684848484612728565b50505050565b8151835114611c0d5760405162461bcd60e51b81526004016108d990613fba565b6001600160a01b038416611c335760405162461bcd60e51b81526004016108d990613eb3565b33611c428187878787876127f1565b60005b8451811015611d2b576000858281518110611c6257611c626141d8565b602002602001015190506000858381518110611c8057611c806141d8565b60209081029190910181015160008481526001835260408082206001600160a01b038e168352909352919091205490915081811015611cd15760405162461bcd60e51b81526004016108d990613f3b565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611d109084906140af565b9250508190555050505080611d24906141a7565b9050611c45565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611d7b929190613d44565b60405180910390a4611d918187878787876127ff565b505050505050565b611da382826117a9565b61102457611dbb816001600160a01b0316601461296a565b611dc683602061296a565b604051602001611dd7929190613bf2565b60408051601f198184030181529082905262461bcd60e51b82526108d991600401613dcb565b611e0782826117a9565b611024576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055611e3d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611e8b82826117a9565b15611024576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60045460ff16611f2f5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016108d9565b6004805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600082611f868584612b05565b14949350505050565b6000611f9d60045460ff1690565b15611fe65760405162461bcd60e51b815260206004820152601960248201527810db185a5b4e8818db185a5b5a5b99c81a5cc81c185d5cd959603a1b60448201526064016108d9565b6000848152600a60205260409020600301546120445760405162461bcd60e51b815260206004820152601d60248201527f436c61696d3a2045646974696f6e20646f6573206e6f7420657869737400000060448201526064016108d9565b6000848152600a602052604090206001015460ff166120965760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b60448201526064016108d9565b6000848152600a60205260409020600201546120b39087906123d4565b3410156121025760405162461bcd60e51b815260206004820152601c60248201527f436c61696d3a2045746865722076616c756520696e636f72726563740000000060448201526064016108d9565b6000848152600a60209081526040808320338452600801909152902054859061212b90886123e7565b111561218a5760405162461bcd60e51b815260206004820152602860248201527f436c61696d3a204e6f7420616c6c6f77656420746f20636c61696d20676976656044820152671b88185b5bdd5b9d60c21b60648201526084016108d9565b6000848152600a6020908152604080832060048101543385526008909101909252909120546121b990886123e7565b11156122255760405162461bcd60e51b815260206004820152603560248201527f436c61696d3a204e6f7420616c6c6f77656420746f20636c61696d2074686174604482015274081b585b9e48199c9bdb481bdb99481dd85b1b195d605a1b60648201526084016108d9565b6000848152600a60205260409020600501548611156122945760405162461bcd60e51b815260206004820152602560248201527f4d6178207175616e7469747920706572207472616e73616374696f6e20657863604482015264195959195960da1b60648201526084016108d9565b6000848152600a60209081526040808320600301546005909252909120546122bd9088906140af565b111561230b5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016108d9565b6000848152600a602052604090206007015460019060ff16156123ca5761237184848080602002602001604051908101604052809392919081815260200183836020028082843760009201829052508a8152600a602052604090205492506111e5915050565b9050806123ca5760405162461bcd60e51b815260206004820152602160248201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666044820152601760f91b60648201526084016108d9565b9695505050505050565b60006123e082846140c7565b9392505050565b60006123e082846140af565b611be684848484612b71565b610b54838383612ccc565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60045460ff16156124a25760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108d9565b6004805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f5c3390565b816001600160a01b0316836001600160a01b0316141561254b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016108d9565b6001600160a01b03838116600081815260026020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166125de5760405162461bcd60e51b81526004016108d990613eb3565b336125fd8187876125ee88612e5d565b6125f788612e5d565b876127f1565b60008481526001602090815260408083206001600160a01b038a168452909152902054838110156126405760405162461bcd60e51b81526004016108d990613f3b565b60008581526001602090815260408083206001600160a01b038b811685529252808320878503905590881682528120805486929061267f9084906140af565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46126df828888888888612ea8565b50505050505050565b610b54838383612f72565b60006001600160e01b03198216637965db0b60e01b148061091557506301ffc9a760e01b6001600160e01b0319831614610915565b6001600160a01b03841661274e5760405162461bcd60e51b81526004016108d990614002565b3361275f816000876125ee88612e5d565b60008481526001602090815260408083206001600160a01b0389168452909152812080548592906127919084906140af565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610f7d81600087878787612ea8565b611d91868686868686613077565b6001600160a01b0384163b15611d915760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906128439089908990889088908890600401613c67565b602060405180830381600087803b15801561285d57600080fd5b505af192505050801561288d575060408051601f3d908101601f1916820190925261288a91810190613a92565b60015b61293a57612899614204565b806308c379a014156128d357506128ae614220565b806128b957506128d5565b8060405162461bcd60e51b81526004016108d99190613dcb565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016108d9565b6001600160e01b0319811663bc197c8160e01b146126df5760405162461bcd60e51b81526004016108d990613dde565b606060006129798360026140c7565b6129849060026140af565b6001600160401b0381111561299b5761299b6141ee565b6040519080825280601f01601f1916602001820160405280156129c5576020820181803683370190505b509050600360fc1b816000815181106129e0576129e06141d8565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612a0f57612a0f6141d8565b60200101906001600160f81b031916908160001a9053506000612a338460026140c7565b612a3e9060016140af565b90505b6001811115612ab6576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612a7257612a726141d8565b1a60f81b828281518110612a8857612a886141d8565b60200101906001600160f81b031916908160001a90535060049490941c93612aaf81614129565b9050612a41565b5083156123e05760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016108d9565b600081815b845181101561117d576000858281518110612b2757612b276141d8565b60200260200101519050808311612b4d5760008381526020829052604090209250612b5e565b600081815260208490526040902092505b5080612b69816141a7565b915050612b0a565b6001600160a01b038416612b975760405162461bcd60e51b81526004016108d990614002565b8151835114612bb85760405162461bcd60e51b81526004016108d990613fba565b33612bc8816000878787876127f1565b60005b8451811015612c6457838181518110612be657612be66141d8565b602002602001015160016000878481518110612c0457612c046141d8565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254612c4c91906140af565b90915550819050612c5c816141a7565b915050612bcb565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612cb5929190613d44565b60405180910390a4610f7d816000878787876127ff565b6001600160a01b038316612cf25760405162461bcd60e51b81526004016108d990613ef8565b8051825114612d135760405162461bcd60e51b81526004016108d990613fba565b6000339050612d36818560008686604051806020016040528060008152506127f1565b60005b8351811015612dfe576000848281518110612d5657612d566141d8565b602002602001015190506000848381518110612d7457612d746141d8565b60209081029190910181015160008481526001835260408082206001600160a01b038c168352909352919091205490915081811015612dc55760405162461bcd60e51b81526004016108d990613e26565b60009283526001602090815260408085206001600160a01b038b1686529091529092209103905580612df6816141a7565b915050612d39565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612e4f929190613d44565b60405180910390a450505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612e9757612e976141d8565b602090810291909101015292915050565b6001600160a01b0384163b15611d915760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190612eec9089908990889088908890600401613cc5565b602060405180830381600087803b158015612f0657600080fd5b505af1925050508015612f36575060408051601f3d908101601f19168201909252612f3391810190613a92565b60015b612f4257612899614204565b6001600160e01b0319811663f23a6e6160e01b146126df5760405162461bcd60e51b81526004016108d990613dde565b6001600160a01b038316612f985760405162461bcd60e51b81526004016108d990613ef8565b33612fc781856000612fa987612e5d565b612fb287612e5d565b604051806020016040528060008152506127f1565b60008381526001602090815260408083206001600160a01b03881684529091529020548281101561300a5760405162461bcd60e51b81526004016108d990613e26565b60008481526001602090815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b613085868686868686613191565b6001600160a01b03851661310c5760005b835181101561310a578281815181106130b1576130b16141d8565b6020026020010151600560008684815181106130cf576130cf6141d8565b6020026020010151815260200190815260200160002060008282546130f491906140af565b909155506131039050816141a7565b9050613096565b505b6001600160a01b038416611d915760005b83518110156126df57828181518110613138576131386141d8565b602002602001015160056000868481518110613156576131566141d8565b60200260200101518152602001908152602001600020600082825461317b91906140e6565b9091555061318a9050816141a7565b905061311d565b60045460ff1615611d915760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201526b1dda1a5b19481c185d5cd95960a21b60648201526084016108d9565b82805461320590614140565b90600052602060002090601f016020900481019282613227576000855561326d565b82601f1061324057805160ff191683800117855561326d565b8280016001018555821561326d579182015b8281111561326d578251825591602001919060010190613252565b5061327992915061327d565b5090565b5b80821115613279576000815560010161327e565b60008083601f8401126132a457600080fd5b5081356001600160401b038111156132bb57600080fd5b6020830191508360208260051b85010111156132d657600080fd5b9250929050565b600082601f8301126132ee57600080fd5b813560206132fb8261408c565b604051613308828261417b565b8381528281019150858301600585901b8701840188101561332857600080fd5b60005b858110156133475781358452928401929084019060010161332b565b5090979650505050505050565b8035801515811461336457600080fd5b919050565b600082601f83011261337a57600080fd5b81356001600160401b03811115613393576133936141ee565b6040516133aa601f8301601f19166020018261417b565b8181528460208386010111156133bf57600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156133ee57600080fd5b81356123e0816142a9565b6000806040838503121561340c57600080fd5b8235613417816142a9565b946020939093013593505050565b6000806040838503121561343857600080fd5b8235613443816142a9565b91506020830135613453816142a9565b809150509250929050565b600080600080600060a0868803121561347657600080fd5b8535613481816142a9565b94506020860135613491816142a9565b935060408601356001600160401b03808211156134ad57600080fd5b6134b989838a016132dd565b945060608801359150808211156134cf57600080fd5b6134db89838a016132dd565b935060808801359150808211156134f157600080fd5b506134fe88828901613369565b9150509295509295909350565b600080600080600060a0868803121561352357600080fd5b853561352e816142a9565b9450602086013561353e816142a9565b9350604086013592506060860135915060808601356001600160401b0381111561356757600080fd5b6134fe88828901613369565b60008060008060006060868803121561358b57600080fd5b8535613596816142a9565b945060208601356001600160401b03808211156135b257600080fd5b6135be89838a01613292565b909650945060408801359150808211156135d757600080fd5b506135e488828901613292565b969995985093965092949392505050565b60008060006060848603121561360a57600080fd5b8335613615816142a9565b925060208401356001600160401b038082111561363157600080fd5b61363d878388016132dd565b9350604086013591508082111561365357600080fd5b50613660868287016132dd565b9150509250925092565b6000806040838503121561367d57600080fd5b8235613688816142a9565b915061369660208401613354565b90509250929050565b6000806000606084860312156136b457600080fd5b83356136bf816142a9565b95602085013595506040909401359392505050565b600080604083850312156136e757600080fd5b82356001600160401b03808211156136fe57600080fd5b818501915085601f83011261371257600080fd5b8135602061371f8261408c565b60405161372c828261417b565b8381528281019150858301600585901b870184018b101561374c57600080fd5b600096505b84871015613778578035613764816142a9565b835260019690960195918301918301613751565b509650508601359250508082111561378f57600080fd5b5061379c858286016132dd565b9150509250929050565b600080604083850312156137b957600080fd5b82356001600160401b038111156137cf57600080fd5b8301601f810185136137e057600080fd5b803560206137ed8261408c565b6040516137fa828261417b565b8381528281019150848301600585901b860184018a101561381a57600080fd5b600095505b8486101561383d57803583526001959095019491830191830161381f565b5098969091013596505050505050565b6000806000806000806000806080898b03121561386957600080fd5b88356001600160401b038082111561388057600080fd5b61388c8c838d01613292565b909a50985060208b01359150808211156138a557600080fd5b6138b18c838d01613292565b909850965060408b01359150808211156138ca57600080fd5b6138d68c838d01613292565b909650945060608b01359150808211156138ef57600080fd5b506138fc8b828c01613292565b999c989b5096995094979396929594505050565b60006020828403121561392257600080fd5b5035919050565b6000806040838503121561393c57600080fd5b823591506020830135613453816142a9565b600080600080600080600060e0888a03121561396957600080fd5b8735965060208801359550604088013594506060880135935060808801356001600160401b0381111561399b57600080fd5b6139a78a828b01613369565b93505060a088013591506139bd60c08901613354565b905092959891949750929550565b6000806000806000806000806000806101408b8d0312156139eb57600080fd5b8a35995060208b0135985060408b0135975060608b0135965060808b01356001600160401b03811115613a1d57600080fd5b613a298d828e01613369565b96505060a08b01359450613a3f60c08c01613354565b935060e08b01359250613a556101008c01613354565b9150613a646101208c01613354565b90509295989b9194979a5092959850565b600060208284031215613a8757600080fd5b81356123e0816142be565b600060208284031215613aa457600080fd5b81516123e0816142be565b600060208284031215613ac157600080fd5b81356001600160401b03811115613ad757600080fd5b61122b84828501613369565b60008060408385031215613af657600080fd5b8235915061369660208401613354565b600080600080600060808688031215613b1e57600080fd5b85359450602086013593506040860135925060608601356001600160401b03811115613b4957600080fd5b6135e488828901613292565b81835260006001600160fb1b03831115613b6e57600080fd5b8260051b8083602087013760009401602001938452509192915050565b600081518084526020808501945080840160005b83811015613bbb57815187529582019590820190600101613b9f565b509495945050505050565b60008151808452613bde8160208601602086016140fd565b601f01601f19169290920160200192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613c2a8160178501602088016140fd565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613c5b8160288401602088016140fd565b01602801949350505050565b6001600160a01b0386811682528516602082015260a060408201819052600090613c9390830186613b8b565b8281036060840152613ca58186613b8b565b90508281036080840152613cb98185613bc6565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090613cff90830184613bc6565b979650505050505050565b604081526000613d1e604083018688613b55565b8281036020840152613cff818587613b55565b6020815260006123e06020830184613b8b565b604081526000613d576040830185613b8b565b8281036020840152613d698185613b8b565b95945050505050565b60006101208b83528a151560208401528960408401528860608401528760808401528660a08401528060c0840152613dac81840187613bc6565b94151560e0840152505090151561010090910152979650505050505050565b6020815260006123e06020830184613bc6565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6000808335601e1984360301811261405a57600080fd5b8301803591506001600160401b0382111561407457600080fd5b6020019150600581901b36038213156132d657600080fd5b60006001600160401b038211156140a5576140a56141ee565b5060051b60200190565b600082198211156140c2576140c26141c2565b500190565b60008160001904831182151516156140e1576140e16141c2565b500290565b6000828210156140f8576140f86141c2565b500390565b60005b83811015614118578181015183820152602001614100565b83811115611be65750506000910152565b600081614138576141386141c2565b506000190190565b600181811c9082168061415457607f821691505b6020821081141561417557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b03811182821017156141a0576141a06141ee565b6040525050565b60006000198214156141bb576141bb6141c2565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561421d5760046000803e5060005160e01c5b90565b600060443d101561422e5790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561425d57505050505090565b82850191508151818111156142755750505050505090565b843d870101602082850101111561428f5750505050505090565b61429e6020828601018761417b565b509095945050505050565b6001600160a01b038116811461094e57600080fd5b6001600160e01b03198116811461094e57600080fdfea264697066735822122073dce98bdc4b01db0fd0c961079ca84dc9c7aec4fb21516659db9f11eccd1e7a64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000010576176656c656e677468586d66657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005574c584d46000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102715760003560e01c80636b20c4541161014f578063bd85b039116100c1578063e8a3d4851161007a578063e8a3d485146107a0578063e985e9c5146107b5578063ea25e176146107fe578063f242432a14610811578063f2fde38b14610831578063f5298aca1461085157600080fd5b8063bd85b039146106c2578063c0e72740146106ef578063c195a4ef14610704578063d547741f1461074b578063d81d0a151461076b578063e2b9e1861461078b57600080fd5b806391d148541161011357806391d1485414610623578063938e3d7b1461064357806395d89b4114610663578063a217fddf14610678578063a22cb4651461068d578063af17dea6146106ad57600080fd5b80636b20c45414610591578063715018a6146105b15780638456cb59146105c657806385a222ae146105db5780638da5cb5b146105fb57600080fd5b80632eb2c2d6116101e85780634e1273f4116101ac5780634e1273f4146104ca5780634f558e79146104f7578063522f6815146105265780635c975abb146105465780635f0440521461055e578063632c6f1f1461057e57600080fd5b80632eb2c2d6146104225780632f2ff15d1461044257806336568abe146104625780633f4ba83a146104825780634044556d1461049757600080fd5b806313af40351161023a57806313af40351461033d578063156e29f61461035d5780631d0a43941461037d578063248a9ca31461039d578063279c806e146103cd5780632913ebc01461040257600080fd5b8062fdd58e1461027657806301ffc9a7146102a957806302fe5305146102d957806306fdde03146102fb5780630e89341c1461031d575b600080fd5b34801561028257600080fd5b506102966102913660046133f9565b610871565b6040519081526020015b60405180910390f35b3480156102b557600080fd5b506102c96102c4366004613a75565b61090a565b60405190151581526020016102a0565b3480156102e557600080fd5b506102f96102f4366004613aaf565b61091b565b005b34801561030757600080fd5b50610310610951565b6040516102a09190613dcb565b34801561032957600080fd5b50610310610338366004613910565b6109e3565b34801561034957600080fd5b506102f96103583660046133dc565b610adc565b34801561036957600080fd5b506102f961037836600461369f565b610b0f565b34801561038957600080fd5b506102f961039836600461394e565b610b59565b3480156103a957600080fd5b506102966103b8366004613910565b60009081526020819052604090206001015490565b3480156103d957600080fd5b506103ed6103e8366004613910565b610c0f565b6040516102a099989796959493929190613d72565b34801561040e57600080fd5b506102f961041d3660046139cb565b610cec565b34801561042e57600080fd5b506102f961043d36600461345e565b610eed565b34801561044e57600080fd5b506102f961045d366004613929565b610f84565b34801561046e57600080fd5b506102f961047d366004613929565b610faa565b34801561048e57600080fd5b506102f9611028565b3480156104a357600080fd5b506102c96104b2366004613910565b6000908152600a602052604090206001015460ff1690565b3480156104d657600080fd5b506104ea6104e53660046136d4565b61105c565b6040516102a09190613d31565b34801561050357600080fd5b506102c9610512366004613910565b600090815260056020526040902054151590565b34801561053257600080fd5b506102f96105413660046133f9565b611185565b34801561055257600080fd5b5060045460ff166102c9565b34801561056a57600080fd5b506102c96105793660046137a6565b6111e5565b6102f961058c36600461384d565b611233565b34801561059d57600080fd5b506102f96105ac3660046135f5565b6116b3565b3480156105bd57600080fd5b506102f96116f6565b3480156105d257600080fd5b506102f961172a565b3480156105e757600080fd5b506102f96105f6366004613ae3565b61175c565b34801561060757600080fd5b506006546040516001600160a01b0390911681526020016102a0565b34801561062f57600080fd5b506102c961063e366004613929565b6117a9565b34801561064f57600080fd5b506102f961065e366004613aaf565b6117d2565b34801561066f57600080fd5b5061031061180f565b34801561068457600080fd5b50610296600081565b34801561069957600080fd5b506102f96106a836600461366a565b61181e565b3480156106b957600080fd5b50610310611829565b3480156106ce57600080fd5b506102966106dd366004613910565b60009081526005602052604090205490565b3480156106fb57600080fd5b506103106118b7565b34801561071057600080fd5b5061029661071f366004613929565b6000828152600a602090815260408083206001600160a01b038516845260080190915290205492915050565b34801561075757600080fd5b506102f9610766366004613929565b6118c4565b34801561077757600080fd5b506102f9610786366004613573565b6118ea565b34801561079757600080fd5b50610310611990565b3480156107ac57600080fd5b5061031061199d565b3480156107c157600080fd5b506102c96107d0366004613425565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b6102f961080c366004613b06565b6119ac565b34801561081d57600080fd5b506102f961082c36600461350b565b611a67565b34801561083d57600080fd5b506102f961084c3660046133dc565b611aac565b34801561085d57600080fd5b506102f961086c36600461369f565b611b44565b60006001600160a01b0383166108e25760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b600061091582611b87565b92915050565b6006546001600160a01b031633146109455760405162461bcd60e51b81526004016108d990613f85565b61094e81611bc7565b50565b60606007805461096090614140565b80601f016020809104026020016040519081016040528092919081815260200182805461098c90614140565b80156109d95780601f106109ae576101008083540402835291602001916109d9565b820191906000526020600020905b8154815290600101906020018083116109bc57829003601f168201915b5050505050905090565b60008181526005602052604081205460609110610a3b5760405162461bcd60e51b81526020600482015260166024820152752aa9249d103737b732bc34b9ba32b73a103a37b5b2b760511b60448201526064016108d9565b6000828152600a602052604090206006018054610a5790614140565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8390614140565b8015610ad05780601f10610aa557610100808354040283529160200191610ad0565b820191906000526020600020905b815481529060010190602001808311610ab357829003601f168201915b50505050509050919050565b6006546001600160a01b03163314610b065760405162461bcd60e51b81526004016108d990613f85565b61094e81611aac565b6006546001600160a01b03163314610b395760405162461bcd60e51b81526004016108d990613f85565b610b5483838360405180602001604052806000815250611bda565b505050565b6006546001600160a01b03163314610b835760405162461bcd60e51b81526004016108d990613f85565b6000600a6000610b9260095490565b815260208082019290925260400160002060018101805460ff19169055898155600281018990556003810188905560058101879055600481018590558551909250610be5916006840191908701906131f9565b5060078101805461ffff191683151561ff0019161790556009805460010190555050505050505050565b600a602052600090815260409020805460018201546002830154600384015460048501546005860154600687018054969760ff909616969495939492939192610c5790614140565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8390614140565b8015610cd05780601f10610ca557610100808354040283529160200191610cd0565b820191906000526020600020905b815481529060010190602001808311610cb357829003601f168201915b5050506007909301549192505060ff8082169161010090041689565b6006546001600160a01b03163314610d165760405162461bcd60e51b81526004016108d990613f85565b6000858152600a60205260409020548a14610d3d576000858152600a602052604090208a90555b6000858152600a60205260409020600201548914610d6a576000858152600a602052604090206002018990555b6000858152600a60205260409020600301548814610d97576000858152600a602052604090206003018890555b6000858152600a60205260409020600501548714610dc4576000858152600a602052604090206005018790555b6000858152600a602090815260409091208751610de9926006909201918901906131f9565b506000858152600a602052604090206001015460ff16151584151514610e27576000858152600a60205260409020600101805460ff19168515151790555b6000858152600a60205260409020600401548314610e54576000858152600a602052604090206004018390555b6000858152600a602052604090206007015460ff16151582151514610e91576000858152600a60205260409020600701805460ff19168315151790555b6000858152600a602052604090206007018054821580156101000261ff001990921691909117909155610ee1576000858152600a60205260409020600701805461ff001916610100831515021790555b50505050505050505050565b6001600160a01b038516331480610f095750610f0985336107d0565b610f705760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108d9565b610f7d8585858585611bec565b5050505050565b600082815260208190526040902060010154610fa08133611d99565b610b548383611dfd565b6001600160a01b038116331461101a5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016108d9565b6110248282611e81565b5050565b6006546001600160a01b031633146110525760405162461bcd60e51b81526004016108d990613f85565b61105a611ee6565b565b606081518351146110c15760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016108d9565b600083516001600160401b038111156110dc576110dc6141ee565b604051908082528060200260200182016040528015611105578160200160208202803683370190505b50905060005b845181101561117d57611150858281518110611129576111296141d8565b6020026020010151858381518110611143576111436141d8565b6020026020010151610871565b828281518110611162576111626141d8565b6020908102919091010152611176816141a7565b905061110b565b509392505050565b6006546001600160a01b031633146111af5760405162461bcd60e51b81526004016108d990613f85565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610b54573d6000803e3d6000fd5b6040516bffffffffffffffffffffffff193360601b166020820152600090819060340160405160208183030381529060405280519060200120905061122b848483611f79565b949350505050565b60045460ff16156112825760405162461bcd60e51b815260206004820152601960248201527810db185a5b4e8818db185a5b5a5b99c81a5cc81c185d5cd959603a1b60448201526064016108d9565b6000805b8481101561144f576113058a8a838181106112a3576112a36141d8565b905060200201358989848181106112bc576112bc6141d8565b905060200201358888858181106112d5576112d56141d8565b905060200201358787868181106112ee576112ee6141d8565b90506020028101906113009190614043565b611f8f565b6113515760405162461bcd60e51b815260206004820152601e60248201527f4f6e65206f72206d6f726520636c61696d732061726520696e76616c6964000060448201526064016108d9565b600a6000878784818110611367576113676141d8565b90506020020135815260200190815260200160002060070160019054906101000a900460ff166113d95760405162461bcd60e51b815260206004820152601b60248201527f436c61696d206d756c7469706c65206e6f7420656e61626c65642e000000000060448201526064016108d9565b61143c611435600a60008989868181106113f5576113f56141d8565b905060200201358152602001908152602001600020600201548c8c85818110611420576114206141d8565b905060200201356123d490919063ffffffff16565b83906123e7565b5080611447816141a7565b915050611286565b50803410156114b35760405162461bcd60e51b815260206004820152602a60248201527f56616c7565206e6f7420656e6f75676820746f20636f76657220616c6c207472604482015269616e73616374696f6e7360b01b60648201526084016108d9565b60005b848110156115d3576114d38a8a838181106112a3576112a36141d8565b61151f5760405162461bcd60e51b815260206004820152601e60248201527f4f6e65206f72206d6f726520636c61696d732061726520696e76616c6964000060448201526064016108d9565b6115818a8a83818110611534576115346141d8565b90506020020135600a6000898986818110611551576115516141d8565b602090810292909201358352508181019290925260409081016000908120338252600801909252902054906123e7565b600a6000888885818110611597576115976141d8565b602090810292909201358352508181019290925260409081016000908120338252600801909252902055806115cb816141a7565b9150506114b6565b5061166133868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508b8b808060200260200160405190810160405280939291908181526020018383602002808284376000920182905250604080516020810190915290815292506123f3915050565b336001600160a01b03167f1f36743b8f77937c5a06ebeca4819ea0c795222f7ecf5a42583ff5d0063adabf86868c8c6040516116a09493929190613d0a565b60405180910390a2505050505050505050565b6001600160a01b0383163314806116cf57506116cf83336107d0565b6116eb5760405162461bcd60e51b81526004016108d990613e6a565b610b548383836123ff565b6006546001600160a01b031633146117205760405162461bcd60e51b81526004016108d990613f85565b61105a600061240a565b6006546001600160a01b031633146117545760405162461bcd60e51b81526004016108d990613f85565b61105a61245c565b6006546001600160a01b031633146117865760405162461bcd60e51b81526004016108d990613f85565b6000918252600a6020526040909120600101805460ff1916911515919091179055565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6006546001600160a01b031633146117fc5760405162461bcd60e51b81526004016108d990613f85565b805161102490600b9060208401906131f9565b60606008805461096090614140565b6110243383836124d7565b6008805461183690614140565b80601f016020809104026020016040519081016040528092919081815260200182805461186290614140565b80156118af5780601f10611884576101008083540402835291602001916118af565b820191906000526020600020905b81548152906001019060200180831161189257829003601f168201915b505050505081565b600b805461183690614140565b6000828152602081905260409020600101546118e08133611d99565b610b548383611e81565b6006546001600160a01b031633146119145760405162461bcd60e51b81526004016108d990613f85565b610f7d85858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040805160208089028281018201909352888252909350889250879182918501908490808284376000920182905250604080516020810190915290815292506123f3915050565b6007805461183690614140565b6060600b805461096090614140565b6119b98585858585611f8f565b6119c257600080fd5b6119dd33848760405180602001604052806000815250611bda565b6000838152600a60209081526040808320338452600801909152902054611a0490866123e7565b6000848152600a6020908152604080832033808552600890910183529281902093909355825186815290810188905290917f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed026910160405180910390a25050505050565b6001600160a01b038516331480611a835750611a8385336107d0565b611a9f5760405162461bcd60e51b81526004016108d990613e6a565b610f7d85858585856125b8565b6006546001600160a01b03163314611ad65760405162461bcd60e51b81526004016108d990613f85565b6001600160a01b038116611b3b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108d9565b61094e8161240a565b6001600160a01b038316331480611b605750611b6083336107d0565b611b7c5760405162461bcd60e51b81526004016108d990613e6a565b610b548383836126e8565b60006001600160e01b03198216636cdb3d1360e11b1480611bb857506001600160e01b031982166303a24d0760e21b145b806109155750610915826126f3565b80516110249060039060208401906131f9565b611be684848484612728565b50505050565b8151835114611c0d5760405162461bcd60e51b81526004016108d990613fba565b6001600160a01b038416611c335760405162461bcd60e51b81526004016108d990613eb3565b33611c428187878787876127f1565b60005b8451811015611d2b576000858281518110611c6257611c626141d8565b602002602001015190506000858381518110611c8057611c806141d8565b60209081029190910181015160008481526001835260408082206001600160a01b038e168352909352919091205490915081811015611cd15760405162461bcd60e51b81526004016108d990613f3b565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611d109084906140af565b9250508190555050505080611d24906141a7565b9050611c45565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611d7b929190613d44565b60405180910390a4611d918187878787876127ff565b505050505050565b611da382826117a9565b61102457611dbb816001600160a01b0316601461296a565b611dc683602061296a565b604051602001611dd7929190613bf2565b60408051601f198184030181529082905262461bcd60e51b82526108d991600401613dcb565b611e0782826117a9565b611024576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055611e3d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611e8b82826117a9565b15611024576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60045460ff16611f2f5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016108d9565b6004805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600082611f868584612b05565b14949350505050565b6000611f9d60045460ff1690565b15611fe65760405162461bcd60e51b815260206004820152601960248201527810db185a5b4e8818db185a5b5a5b99c81a5cc81c185d5cd959603a1b60448201526064016108d9565b6000848152600a60205260409020600301546120445760405162461bcd60e51b815260206004820152601d60248201527f436c61696d3a2045646974696f6e20646f6573206e6f7420657869737400000060448201526064016108d9565b6000848152600a602052604090206001015460ff166120965760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b60448201526064016108d9565b6000848152600a60205260409020600201546120b39087906123d4565b3410156121025760405162461bcd60e51b815260206004820152601c60248201527f436c61696d3a2045746865722076616c756520696e636f72726563740000000060448201526064016108d9565b6000848152600a60209081526040808320338452600801909152902054859061212b90886123e7565b111561218a5760405162461bcd60e51b815260206004820152602860248201527f436c61696d3a204e6f7420616c6c6f77656420746f20636c61696d20676976656044820152671b88185b5bdd5b9d60c21b60648201526084016108d9565b6000848152600a6020908152604080832060048101543385526008909101909252909120546121b990886123e7565b11156122255760405162461bcd60e51b815260206004820152603560248201527f436c61696d3a204e6f7420616c6c6f77656420746f20636c61696d2074686174604482015274081b585b9e48199c9bdb481bdb99481dd85b1b195d605a1b60648201526084016108d9565b6000848152600a60205260409020600501548611156122945760405162461bcd60e51b815260206004820152602560248201527f4d6178207175616e7469747920706572207472616e73616374696f6e20657863604482015264195959195960da1b60648201526084016108d9565b6000848152600a60209081526040808320600301546005909252909120546122bd9088906140af565b111561230b5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016108d9565b6000848152600a602052604090206007015460019060ff16156123ca5761237184848080602002602001604051908101604052809392919081815260200183836020028082843760009201829052508a8152600a602052604090205492506111e5915050565b9050806123ca5760405162461bcd60e51b815260206004820152602160248201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666044820152601760f91b60648201526084016108d9565b9695505050505050565b60006123e082846140c7565b9392505050565b60006123e082846140af565b611be684848484612b71565b610b54838383612ccc565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60045460ff16156124a25760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108d9565b6004805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f5c3390565b816001600160a01b0316836001600160a01b0316141561254b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016108d9565b6001600160a01b03838116600081815260026020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166125de5760405162461bcd60e51b81526004016108d990613eb3565b336125fd8187876125ee88612e5d565b6125f788612e5d565b876127f1565b60008481526001602090815260408083206001600160a01b038a168452909152902054838110156126405760405162461bcd60e51b81526004016108d990613f3b565b60008581526001602090815260408083206001600160a01b038b811685529252808320878503905590881682528120805486929061267f9084906140af565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46126df828888888888612ea8565b50505050505050565b610b54838383612f72565b60006001600160e01b03198216637965db0b60e01b148061091557506301ffc9a760e01b6001600160e01b0319831614610915565b6001600160a01b03841661274e5760405162461bcd60e51b81526004016108d990614002565b3361275f816000876125ee88612e5d565b60008481526001602090815260408083206001600160a01b0389168452909152812080548592906127919084906140af565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610f7d81600087878787612ea8565b611d91868686868686613077565b6001600160a01b0384163b15611d915760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906128439089908990889088908890600401613c67565b602060405180830381600087803b15801561285d57600080fd5b505af192505050801561288d575060408051601f3d908101601f1916820190925261288a91810190613a92565b60015b61293a57612899614204565b806308c379a014156128d357506128ae614220565b806128b957506128d5565b8060405162461bcd60e51b81526004016108d99190613dcb565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016108d9565b6001600160e01b0319811663bc197c8160e01b146126df5760405162461bcd60e51b81526004016108d990613dde565b606060006129798360026140c7565b6129849060026140af565b6001600160401b0381111561299b5761299b6141ee565b6040519080825280601f01601f1916602001820160405280156129c5576020820181803683370190505b509050600360fc1b816000815181106129e0576129e06141d8565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612a0f57612a0f6141d8565b60200101906001600160f81b031916908160001a9053506000612a338460026140c7565b612a3e9060016140af565b90505b6001811115612ab6576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612a7257612a726141d8565b1a60f81b828281518110612a8857612a886141d8565b60200101906001600160f81b031916908160001a90535060049490941c93612aaf81614129565b9050612a41565b5083156123e05760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016108d9565b600081815b845181101561117d576000858281518110612b2757612b276141d8565b60200260200101519050808311612b4d5760008381526020829052604090209250612b5e565b600081815260208490526040902092505b5080612b69816141a7565b915050612b0a565b6001600160a01b038416612b975760405162461bcd60e51b81526004016108d990614002565b8151835114612bb85760405162461bcd60e51b81526004016108d990613fba565b33612bc8816000878787876127f1565b60005b8451811015612c6457838181518110612be657612be66141d8565b602002602001015160016000878481518110612c0457612c046141d8565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254612c4c91906140af565b90915550819050612c5c816141a7565b915050612bcb565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612cb5929190613d44565b60405180910390a4610f7d816000878787876127ff565b6001600160a01b038316612cf25760405162461bcd60e51b81526004016108d990613ef8565b8051825114612d135760405162461bcd60e51b81526004016108d990613fba565b6000339050612d36818560008686604051806020016040528060008152506127f1565b60005b8351811015612dfe576000848281518110612d5657612d566141d8565b602002602001015190506000848381518110612d7457612d746141d8565b60209081029190910181015160008481526001835260408082206001600160a01b038c168352909352919091205490915081811015612dc55760405162461bcd60e51b81526004016108d990613e26565b60009283526001602090815260408085206001600160a01b038b1686529091529092209103905580612df6816141a7565b915050612d39565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612e4f929190613d44565b60405180910390a450505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612e9757612e976141d8565b602090810291909101015292915050565b6001600160a01b0384163b15611d915760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190612eec9089908990889088908890600401613cc5565b602060405180830381600087803b158015612f0657600080fd5b505af1925050508015612f36575060408051601f3d908101601f19168201909252612f3391810190613a92565b60015b612f4257612899614204565b6001600160e01b0319811663f23a6e6160e01b146126df5760405162461bcd60e51b81526004016108d990613dde565b6001600160a01b038316612f985760405162461bcd60e51b81526004016108d990613ef8565b33612fc781856000612fa987612e5d565b612fb287612e5d565b604051806020016040528060008152506127f1565b60008381526001602090815260408083206001600160a01b03881684529091529020548281101561300a5760405162461bcd60e51b81526004016108d990613e26565b60008481526001602090815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b613085868686868686613191565b6001600160a01b03851661310c5760005b835181101561310a578281815181106130b1576130b16141d8565b6020026020010151600560008684815181106130cf576130cf6141d8565b6020026020010151815260200190815260200160002060008282546130f491906140af565b909155506131039050816141a7565b9050613096565b505b6001600160a01b038416611d915760005b83518110156126df57828181518110613138576131386141d8565b602002602001015160056000868481518110613156576131566141d8565b60200260200101518152602001908152602001600020600082825461317b91906140e6565b9091555061318a9050816141a7565b905061311d565b60045460ff1615611d915760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201526b1dda1a5b19481c185d5cd95960a21b60648201526084016108d9565b82805461320590614140565b90600052602060002090601f016020900481019282613227576000855561326d565b82601f1061324057805160ff191683800117855561326d565b8280016001018555821561326d579182015b8281111561326d578251825591602001919060010190613252565b5061327992915061327d565b5090565b5b80821115613279576000815560010161327e565b60008083601f8401126132a457600080fd5b5081356001600160401b038111156132bb57600080fd5b6020830191508360208260051b85010111156132d657600080fd5b9250929050565b600082601f8301126132ee57600080fd5b813560206132fb8261408c565b604051613308828261417b565b8381528281019150858301600585901b8701840188101561332857600080fd5b60005b858110156133475781358452928401929084019060010161332b565b5090979650505050505050565b8035801515811461336457600080fd5b919050565b600082601f83011261337a57600080fd5b81356001600160401b03811115613393576133936141ee565b6040516133aa601f8301601f19166020018261417b565b8181528460208386010111156133bf57600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156133ee57600080fd5b81356123e0816142a9565b6000806040838503121561340c57600080fd5b8235613417816142a9565b946020939093013593505050565b6000806040838503121561343857600080fd5b8235613443816142a9565b91506020830135613453816142a9565b809150509250929050565b600080600080600060a0868803121561347657600080fd5b8535613481816142a9565b94506020860135613491816142a9565b935060408601356001600160401b03808211156134ad57600080fd5b6134b989838a016132dd565b945060608801359150808211156134cf57600080fd5b6134db89838a016132dd565b935060808801359150808211156134f157600080fd5b506134fe88828901613369565b9150509295509295909350565b600080600080600060a0868803121561352357600080fd5b853561352e816142a9565b9450602086013561353e816142a9565b9350604086013592506060860135915060808601356001600160401b0381111561356757600080fd5b6134fe88828901613369565b60008060008060006060868803121561358b57600080fd5b8535613596816142a9565b945060208601356001600160401b03808211156135b257600080fd5b6135be89838a01613292565b909650945060408801359150808211156135d757600080fd5b506135e488828901613292565b969995985093965092949392505050565b60008060006060848603121561360a57600080fd5b8335613615816142a9565b925060208401356001600160401b038082111561363157600080fd5b61363d878388016132dd565b9350604086013591508082111561365357600080fd5b50613660868287016132dd565b9150509250925092565b6000806040838503121561367d57600080fd5b8235613688816142a9565b915061369660208401613354565b90509250929050565b6000806000606084860312156136b457600080fd5b83356136bf816142a9565b95602085013595506040909401359392505050565b600080604083850312156136e757600080fd5b82356001600160401b03808211156136fe57600080fd5b818501915085601f83011261371257600080fd5b8135602061371f8261408c565b60405161372c828261417b565b8381528281019150858301600585901b870184018b101561374c57600080fd5b600096505b84871015613778578035613764816142a9565b835260019690960195918301918301613751565b509650508601359250508082111561378f57600080fd5b5061379c858286016132dd565b9150509250929050565b600080604083850312156137b957600080fd5b82356001600160401b038111156137cf57600080fd5b8301601f810185136137e057600080fd5b803560206137ed8261408c565b6040516137fa828261417b565b8381528281019150848301600585901b860184018a101561381a57600080fd5b600095505b8486101561383d57803583526001959095019491830191830161381f565b5098969091013596505050505050565b6000806000806000806000806080898b03121561386957600080fd5b88356001600160401b038082111561388057600080fd5b61388c8c838d01613292565b909a50985060208b01359150808211156138a557600080fd5b6138b18c838d01613292565b909850965060408b01359150808211156138ca57600080fd5b6138d68c838d01613292565b909650945060608b01359150808211156138ef57600080fd5b506138fc8b828c01613292565b999c989b5096995094979396929594505050565b60006020828403121561392257600080fd5b5035919050565b6000806040838503121561393c57600080fd5b823591506020830135613453816142a9565b600080600080600080600060e0888a03121561396957600080fd5b8735965060208801359550604088013594506060880135935060808801356001600160401b0381111561399b57600080fd5b6139a78a828b01613369565b93505060a088013591506139bd60c08901613354565b905092959891949750929550565b6000806000806000806000806000806101408b8d0312156139eb57600080fd5b8a35995060208b0135985060408b0135975060608b0135965060808b01356001600160401b03811115613a1d57600080fd5b613a298d828e01613369565b96505060a08b01359450613a3f60c08c01613354565b935060e08b01359250613a556101008c01613354565b9150613a646101208c01613354565b90509295989b9194979a5092959850565b600060208284031215613a8757600080fd5b81356123e0816142be565b600060208284031215613aa457600080fd5b81516123e0816142be565b600060208284031215613ac157600080fd5b81356001600160401b03811115613ad757600080fd5b61122b84828501613369565b60008060408385031215613af657600080fd5b8235915061369660208401613354565b600080600080600060808688031215613b1e57600080fd5b85359450602086013593506040860135925060608601356001600160401b03811115613b4957600080fd5b6135e488828901613292565b81835260006001600160fb1b03831115613b6e57600080fd5b8260051b8083602087013760009401602001938452509192915050565b600081518084526020808501945080840160005b83811015613bbb57815187529582019590820190600101613b9f565b509495945050505050565b60008151808452613bde8160208601602086016140fd565b601f01601f19169290920160200192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613c2a8160178501602088016140fd565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613c5b8160288401602088016140fd565b01602801949350505050565b6001600160a01b0386811682528516602082015260a060408201819052600090613c9390830186613b8b565b8281036060840152613ca58186613b8b565b90508281036080840152613cb98185613bc6565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090613cff90830184613bc6565b979650505050505050565b604081526000613d1e604083018688613b55565b8281036020840152613cff818587613b55565b6020815260006123e06020830184613b8b565b604081526000613d576040830185613b8b565b8281036020840152613d698185613b8b565b95945050505050565b60006101208b83528a151560208401528960408401528860608401528760808401528660a08401528060c0840152613dac81840187613bc6565b94151560e0840152505090151561010090910152979650505050505050565b6020815260006123e06020830184613bc6565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6000808335601e1984360301811261405a57600080fd5b8301803591506001600160401b0382111561407457600080fd5b6020019150600581901b36038213156132d657600080fd5b60006001600160401b038211156140a5576140a56141ee565b5060051b60200190565b600082198211156140c2576140c26141c2565b500190565b60008160001904831182151516156140e1576140e16141c2565b500290565b6000828210156140f8576140f86141c2565b500390565b60005b83811015614118578181015183820152602001614100565b83811115611be65750506000910152565b600081614138576141386141c2565b506000190190565b600181811c9082168061415457607f821691505b6020821081141561417557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b03811182821017156141a0576141a06141ee565b6040525050565b60006000198214156141bb576141bb6141c2565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561421d5760046000803e5060005160e01c5b90565b600060443d101561422e5790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561425d57505050505090565b82850191508151818111156142755750505050505090565b843d870101602082850101111561428f5750505050505090565b61429e6020828601018761417b565b509095945050505050565b6001600160a01b038116811461094e57600080fd5b6001600160e01b03198116811461094e57600080fdfea264697066735822122073dce98bdc4b01db0fd0c961079ca84dc9c7aec4fb21516659db9f11eccd1e7a64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000010576176656c656e677468586d66657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005574c584d46000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): WavelengthXmfers
Arg [1] : _symbol (string): WLXMF

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [3] : 576176656c656e677468586d6665727300000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 574c584d46000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

69310:8899:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49317:231;;;;;;;;;;-1:-1:-1;49317:231:0;;;;;:::i;:::-;;:::i;:::-;;;20946:25:1;;;20934:2;20919:18;49317:231:0;;;;;;;;68979:177;;;;;;;;;;-1:-1:-1;68979:177:0;;;;;:::i;:::-;;:::i;:::-;;;20773:14:1;;20766:22;20748:41;;20736:2;20721:18;68979:177:0;20608:187:1;67275:93:0;;;;;;;;;;-1:-1:-1;67275:93:0;;;;;:::i;:::-;;:::i;:::-;;67380:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;77783:205::-;;;;;;;;;;-1:-1:-1;77783:205:0;;;;;:::i;:::-;;:::i;68815:93::-;;;;;;;;;;-1:-1:-1;68815:93:0;;;;;:::i;:::-;;:::i;74671:180::-;;;;;;;;;;-1:-1:-1;74671:180:0;;;;;:::i;:::-;;:::i;70259:779::-;;;;;;;;;;-1:-1:-1;70259:779:0;;;;;:::i;:::-;;:::i;36254:131::-;;;;;;;;;;-1:-1:-1;36254:131:0;;;;;:::i;:::-;36328:7;36355:12;;;;;;;;;;:22;;;;36254:131;69655:43;;;;;;;;;;-1:-1:-1;69655:43:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;:::i;71046:1602::-;;;;;;;;;;-1:-1:-1;71046:1602:0;;;;;:::i;:::-;;:::i;51256:442::-;;;;;;;;;;-1:-1:-1;51256:442:0;;;;;:::i;:::-;;:::i;36647:147::-;;;;;;;;;;-1:-1:-1;36647:147:0;;;;;:::i;:::-;;:::i;37695:218::-;;;;;;;;;;-1:-1:-1;37695:218:0;;;;;:::i;:::-;;:::i;67196:67::-;;;;;;;;;;;;;:::i;76758:128::-;;;;;;;;;;-1:-1:-1;76758:128:0;;;;;:::i;:::-;76821:4;76845:22;;;:8;:22;;;;;:33;;;;;;76758:128;49714:524;;;;;;;;;;-1:-1:-1;49714:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;63756:122::-;;;;;;;;;;-1:-1:-1;63756:122:0;;;;;:::i;:::-;63813:4;63634:16;;;:12;:16;;;;;;-1:-1:-1;;;63756:122:0;77482:123;;;;;;;;;;-1:-1:-1;77482:123:0;;;;;:::i;:::-;;:::i;18071:86::-;;;;;;;;;;-1:-1:-1;18142:7:0;;;;18071:86;;77037:254;;;;;;;;;;-1:-1:-1;77037:254:0;;;;;:::i;:::-;;:::i;73207:1456::-;;;;;;:::i;:::-;;:::i;66492:353::-;;;;;;;;;;-1:-1:-1;66492:353:0;;;;;:::i;:::-;;:::i;20970:103::-;;;;;;;;;;;;;:::i;67125:63::-;;;;;;;;;;;;;:::i;76894:135::-;;;;;;;;;;-1:-1:-1;76894:135:0;;;;;:::i;:::-;;:::i;20319:87::-;;;;;;;;;;-1:-1:-1;20392:6:0;;20319:87;;-1:-1:-1;;;;;20392:6:0;;;17890:51:1;;17878:2;17863:18;20319:87:0;17744:203:1;35123:147:0;;;;;;;;;;-1:-1:-1;35123:147:0;;;;;:::i;:::-;;:::i;77997:104::-;;;;;;;;;;-1:-1:-1;77997:104:0;;;;;:::i;:::-;;:::i;67471:87::-;;;;;;;;;;;;;:::i;34214:49::-;;;;;;;;;;-1:-1:-1;34214:49:0;34259:4;34214:49;;50311:155;;;;;;;;;;-1:-1:-1;50311:155:0;;;;;:::i;:::-;;:::i;67091:21::-;;;;;;;;;;;;;:::i;63545:113::-;;;;;;;;;;-1:-1:-1;63545:113:0;;;;;:::i;:::-;63607:7;63634:16;;;:12;:16;;;;;;;63545:113;69705:26;;;;;;;;;;;;;:::i;77617:158::-;;;;;;;;;;-1:-1:-1;77617:158:0;;;;;:::i;:::-;77697:7;77724:16;;;:8;:16;;;;;;;;-1:-1:-1;;;;;77724:43:0;;;;:31;;:43;;;;;;77617:158;;;;;37039:149;;;;;;;;;;-1:-1:-1;37039:149:0;;;;;:::i;:::-;;:::i;74859:216::-;;;;;;;;;;-1:-1:-1;74859:216:0;;;;;:::i;:::-;;:::i;67065:19::-;;;;;;;;;;;;;:::i;78109:97::-;;;;;;;;;;;;;:::i;50538:168::-;;;;;;;;;;-1:-1:-1;50538:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;50661:27:0;;;50637:4;50661:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;50538:168;72663:536;;;;;;:::i;:::-;;:::i;50778:401::-;;;;;;;;;;-1:-1:-1;50778:401:0;;;;;:::i;:::-;;:::i;21228:201::-;;;;;;;;;;-1:-1:-1;21228:201:0;;;;;:::i;:::-;;:::i;66163:321::-;;;;;;;;;;-1:-1:-1;66163:321:0;;;;;:::i;:::-;;:::i;49317:231::-;49403:7;-1:-1:-1;;;;;49431:21:0;;49423:77;;;;-1:-1:-1;;;49423:77:0;;23797:2:1;49423:77:0;;;23779:21:1;23836:2;23816:18;;;23809:30;23875:34;23855:18;;;23848:62;-1:-1:-1;;;23926:18:1;;;23919:41;23977:19;;49423:77:0;;;;;;;;;-1:-1:-1;49518:13:0;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;49518:22:0;;;;;;;;;;;;49317:231::o;68979:177::-;69088:4;69112:36;69136:11;69112:23;:36::i;:::-;69105:43;68979:177;-1:-1:-1;;68979:177:0:o;67275:93::-;20392:6;;-1:-1:-1;;;;;20392:6:0;16805:10;20539:23;20531:68;;;;-1:-1:-1;;;20531:68:0;;;;;;;:::i;:::-;67344:16:::1;67352:7;67344;:16::i;:::-;67275:93:::0;:::o;67380:83::-;67417:13;67450:5;67443:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67380:83;:::o;77783:205::-;77896:1;63634:16;;;:12;:16;;;;;;77839:13;;-1:-1:-1;77869:55:0;;;;-1:-1:-1;;;77869:55:0;;31604:2:1;77869:55:0;;;31586:21:1;31643:2;31623:18;;;31616:30;-1:-1:-1;;;31662:18:1;;;31655:52;31724:18;;77869:55:0;31402:346:1;77869:55:0;77953:13;;;;:8;:13;;;;;:26;;77939:41;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77783:205;;;:::o;68815:93::-;20392:6;;-1:-1:-1;;;;;20392:6:0;16805:10;20539:23;20531:68;;;;-1:-1:-1;;;20531:68:0;;;;;;;:::i;:::-;68876:24:::1;68894:5;68876:17;:24::i;74671:180::-:0;20392:6;;-1:-1:-1;;;;;20392:6:0;16805:10;20539:23;20531:68;;;;-1:-1:-1;;;20531:68:0;;;;;;;:::i;:::-;74805:38:::1;74811:2;74815:12;74829:9;74805:38;;;;;;;;;;;::::0;:5:::1;:38::i;:::-;74671:180:::0;;;:::o;70259:779::-;20392:6;;-1:-1:-1;;;;;20392:6:0;16805:10;20539:23;20531:68;;;;-1:-1:-1;;;20531:68:0;;;;;;;:::i;:::-;70539:23:::1;70565:8;:34;70574:24;:14;4005::::0;;3913:114;70574:24:::1;70565:34:::0;;::::1;::::0;;::::1;::::0;;;;;;-1:-1:-1;70565:34:0;70610:18:::1;::::0;::::1;:26:::0;;-1:-1:-1;;70610:26:0::1;::::0;;70647:32;;;70690:17:::1;::::0;::::1;:30:::0;;;70731:17:::1;::::0;::::1;:30:::0;;;70772:21:::1;::::0;::::1;:38:::0;;;70821:20:::1;::::0;::::1;:36:::0;;;70868;;70565:34;;-1:-1:-1;70868:36:0::1;::::0;:20:::1;::::0;::::1;::::0;:36;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;70915:21:0::1;::::0;::::1;:38:::0;;-1:-1:-1;;70964:29:0;70915:38;::::1;;-1:-1:-1::0;;70964:29:0;;;;71004:14:::1;4124:19:::0;;-1:-1:-1;4124:19:0;;;70528:510:::1;70259:779:::0;;;;;;;:::o;69655:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;69655:43:0;;;;;;;-1:-1:-1;;69655:43:0;;;;;;;;;;:::o;71046:1602::-;20392:6;;-1:-1:-1;;;;;20392:6:0;16805:10;20539:23;20531:68;;;;-1:-1:-1;;;20531:68:0;;;;;;;:::i;:::-;71429:23:::1;::::0;;;:8:::1;:23;::::0;;;;:34;:49;::::1;71426:128;;71494:23;::::0;;;:8:::1;:23;::::0;;;;:48;;;71426:128:::1;71567:23;::::0;;;:8:::1;:23;::::0;;;;:33:::1;;::::0;:47;::::1;71564:126;;71630:23;::::0;;;:8:::1;:23;::::0;;;;:33:::1;;:46:::0;;;71564:126:::1;71703:23;::::0;;;:8:::1;:23;::::0;;;;:33:::1;;::::0;:47;::::1;71700:128;;71766:23;::::0;;;:8:::1;:23;::::0;;;;:33:::1;;:46:::0;;;71700:128:::1;71841:23;::::0;;;:8:::1;:23;::::0;;;;:37:::1;;::::0;:55;::::1;71838:141;;71912:23;::::0;;;:8:::1;:23;::::0;;;;:37:::1;;:54:::0;;;71838:141:::1;71989:23;::::0;;;:8:::1;:23;::::0;;;;;;;:52;;::::1;::::0;:36:::1;::::0;;::::1;::::0;:52;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;72069:23:0::1;::::0;;;:8:::1;:23;::::0;;;;:34:::1;;::::0;::::1;;:49;;::::0;::::1;;;72066:129;;72134:23;::::0;;;:8:::1;:23;::::0;;;;:34:::1;;:48:::0;;-1:-1:-1;;72134:48:0::1;::::0;::::1;;;::::0;;72066:129:::1;72208:23;::::0;;;:8:::1;:23;::::0;;;;:36:::1;;::::0;:53;::::1;72205:137;;72277:23;::::0;;;:8:::1;:23;::::0;;;;:36:::1;;:52:::0;;;72205:137:::1;72355:23;::::0;;;:8:::1;:23;::::0;;;;:37:::1;;::::0;::::1;;:55;;::::0;::::1;;;72352:140;;72426:23;::::0;;;:8:::1;:23;::::0;;;;:37:::1;;:54:::0;;-1:-1:-1;;72426:54:0::1;::::0;::::1;;;::::0;;72352:140:::1;72505:23;::::0;;;:8:::1;:23;::::0;;;;:37:::1;;:54:::0;;;::::1;::::0;::::1;;;-1:-1:-1::0;;72505:54:0;;::::1;::::0;;;::::1;::::0;;;72502:139:::1;;72575:23;::::0;;;:8:::1;:23;::::0;;;;:37:::1;;:54:::0;;-1:-1:-1;;72575:54:0::1;;::::0;::::1;;;;::::0;;72502:139:::1;71046:1602:::0;;;;;;;;;;:::o;51256:442::-;-1:-1:-1;;;;;51489:20:0;;16805:10;51489:20;;:60;;-1:-1:-1;51513:36:0;51530:4;16805:10;50538:168;:::i;51513:36::-;51467:160;;;;-1:-1:-1;;;51467:160:0;;28885:2:1;51467:160:0;;;28867:21:1;28924:2;28904:18;;;28897:30;28963:34;28943:18;;;28936:62;-1:-1:-1;;;29014:18:1;;;29007:48;29072:19;;51467:160:0;28683:414:1;51467:160:0;51638:52;51661:4;51667:2;51671:3;51676:7;51685:4;51638:22;:52::i;:::-;51256:442;;;;;:::o;36647:147::-;36328:7;36355:12;;;;;;;;;;:22;;;34705:30;34716:4;16805:10;34705;:30::i;:::-;36761:25:::1;36772:4;36778:7;36761:10;:25::i;37695:218::-:0;-1:-1:-1;;;;;37791:23:0;;16805:10;37791:23;37783:83;;;;-1:-1:-1;;;37783:83:0;;34710:2:1;37783:83:0;;;34692:21:1;34749:2;34729:18;;;34722:30;34788:34;34768:18;;;34761:62;-1:-1:-1;;;34839:18:1;;;34832:45;34894:19;;37783:83:0;34508:411:1;37783:83:0;37879:26;37891:4;37897:7;37879:11;:26::i;:::-;37695:218;;:::o;67196:67::-;20392:6;;-1:-1:-1;;;;;20392:6:0;16805:10;20539:23;20531:68;;;;-1:-1:-1;;;20531:68:0;;;;;;;:::i;:::-;67245:10:::1;:8;:10::i;:::-;67196:67::o:0;49714:524::-;49870:16;49931:3;:10;49912:8;:15;:29;49904:83;;;;-1:-1:-1;;;49904:83:0;;33146:2:1;49904:83:0;;;33128:21:1;33185:2;33165:18;;;33158:30;33224:34;33204:18;;;33197:62;-1:-1:-1;;;33275:18:1;;;33268:39;33324:19;;49904:83:0;32944:405:1;49904:83:0;50000:30;50047:8;:15;-1:-1:-1;;;;;50033:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50033:30:0;;50000:63;;50081:9;50076:122;50100:8;:15;50096:1;:19;50076:122;;;50156:30;50166:8;50175:1;50166:11;;;;;;;;:::i;:::-;;;;;;;50179:3;50183:1;50179:6;;;;;;;;:::i;:::-;;;;;;;50156:9;:30::i;:::-;50137:13;50151:1;50137:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;50117:3;;;:::i;:::-;;;50076:122;;;-1:-1:-1;50217:13:0;49714:524;-1:-1:-1;;;49714:524:0:o;77482:123::-;20392:6;;-1:-1:-1;;;;;20392:6:0;16805:10;20539:23;20531:68;;;;-1:-1:-1;;;20531:68:0;;;;;;;:::i;:::-;77576:21:::1;::::0;-1:-1:-1;;;;;77576:12:0;::::1;::::0;:21;::::1;;;::::0;77589:7;;77576:21:::1;::::0;;;77589:7;77576:12;:21;::::1;;;;;;;;;;;;;::::0;::::1;;;;77037:254:::0;77199:28;;-1:-1:-1;;77216:10:0;16868:2:1;16864:15;16860:53;77199:28:0;;;16848:66:1;77150:4:0;;;;16930:12:1;;77199:28:0;;;;;;;;;;;;77189:39;;;;;;77174:54;;77246:37;77265:5;77272:4;77278;77246:18;:37::i;:::-;77239:44;77037:254;-1:-1:-1;;;;77037:254:0:o;73207:1456::-;18142:7;;;;73482:9;73474:47;;;;-1:-1:-1;;;73474:47:0;;27022:2:1;73474:47:0;;;27004:21:1;27061:2;27041:18;;;27034:30;-1:-1:-1;;;27080:18:1;;;27073:55;27145:18;;73474:47:0;26820:349:1;73474:47:0;73610:18;73648:6;73643:371;73658:24;;;73643:371;;;73712:71;73725:9;;73735:1;73725:12;;;;;;;:::i;:::-;;;;;;;73738:7;;73746:1;73738:10;;;;;;;:::i;:::-;;;;;;;73749:14;;73764:1;73749:17;;;;;;;:::i;:::-;;;;;;;73767:12;;73780:1;73767:15;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;73712:12;:71::i;:::-;73704:114;;;;-1:-1:-1;;;73704:114:0;;32377:2:1;73704:114:0;;;32359:21:1;32416:2;32396:18;;;32389:30;32455:32;32435:18;;;32428:60;32505:18;;73704:114:0;32175:354:1;73704:114:0;73841:8;:27;73850:14;;73865:1;73850:17;;;;;;;:::i;:::-;;;;;;;73841:27;;;;;;;;;;;:41;;;;;;;;;;;;73833:81;;;;-1:-1:-1;;;73833:81:0;;27721:2:1;73833:81:0;;;27703:21:1;27760:2;27740:18;;;27733:30;27799:29;27779:18;;;27772:57;27846:18;;73833:81:0;27519:351:1;73833:81:0;73931:71;73946:55;73963:8;:27;73972:14;;73987:1;73972:17;;;;;;;:::i;:::-;;;;;;;73963:27;;;;;;;;;;;:37;;;73946:9;;73956:1;73946:12;;;;;;;:::i;:::-;;;;;;;:16;;:55;;;;:::i;:::-;73931:10;;:14;:71::i;:::-;-1:-1:-1;73684:3:0;;;;:::i;:::-;;;;73643:371;;;;74114:10;74101:9;:23;;74093:78;;;;-1:-1:-1;;;74093:78:0;;26611:2:1;74093:78:0;;;26593:21:1;26650:2;26630:18;;;26623:30;26689:34;26669:18;;;26662:62;-1:-1:-1;;;26740:18:1;;;26733:40;26790:19;;74093:78:0;26409:406:1;74093:78:0;74189:6;74184:333;74199:24;;;74184:333;;;74253:71;74266:9;;74276:1;74266:12;;;;;;;:::i;74253:71::-;74245:114;;;;-1:-1:-1;;;74245:114:0;;32377:2:1;74245:114:0;;;32359:21:1;32416:2;32396:18;;;32389:30;32455:32;32435:18;;;32428:60;32505:18;;74245:114:0;32175:354:1;74245:114:0;74433:72;74492:9;;74502:1;74492:12;;;;;;;:::i;:::-;;;;;;;74433:8;:27;74442:14;;74457:1;74442:17;;;;;;;:::i;:::-;;;;;;;;;;74433:27;;-1:-1:-1;74433:27:0;;;;;;;;;;;-1:-1:-1;74433:27:0;;;74476:10;74433:54;;:42;;:54;;;;;;;:58;:72::i;:::-;74376:8;:27;74385:14;;74400:1;74385:17;;;;;;;:::i;:::-;;;;;;;;;;74376:27;;-1:-1:-1;74376:27:0;;;;;;;;;;;-1:-1:-1;74376:27:0;;;74419:10;74376:54;;:42;;:54;;;;;:129;74225:3;;;;:::i;:::-;;;;74184:333;;;;74530:53;74541:10;74553:14;;74530:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74569:9;;74530:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;74530:53:0;;;;;;;;;;;;;-1:-1:-1;74530:10:0;;-1:-1:-1;;74530:53:0:i;:::-;74633:10;-1:-1:-1;;;;;74601:54:0;;74617:14;;74645:9;;74601:54;;;;;;;;;:::i;:::-;;;;;;;;73418:1245;73207:1456;;;;;;;;:::o;66492:353::-;-1:-1:-1;;;;;66657:23:0;;16805:10;66657:23;;:66;;-1:-1:-1;66684:39:0;66701:7;16805:10;50538:168;:::i;66684:39::-;66635:157;;;;-1:-1:-1;;;66635:157:0;;;;;;;:::i;:::-;66805:32;66816:7;66825:3;66830:6;66805:10;:32::i;20970:103::-;20392:6;;-1:-1:-1;;;;;20392:6:0;16805:10;20539:23;20531:68;;;;-1:-1:-1;;;20531:68:0;;;;;;;:::i;:::-;21035:30:::1;21062:1;21035:18;:30::i;67125:63::-:0;20392:6;;-1:-1:-1;;;;;20392:6:0;16805:10;20539:23;20531:68;;;;-1:-1:-1;;;20531:68:0;;;;;;;:::i;:::-;67172:8:::1;:6;:8::i;76894:135::-:0;20392:6;;-1:-1:-1;;;;;20392:6:0;16805:10;20539:23;20531:68;;;;-1:-1:-1;;;20531:68:0;;;;;;;:::i;:::-;76980:22:::1;::::0;;;:8:::1;:22;::::0;;;;;:33:::1;;:41:::0;;-1:-1:-1;;76980:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;76894:135::o;35123:147::-;35209:4;35233:12;;;;;;;;;;;-1:-1:-1;;;;;35233:29:0;;;;;;;;;;;;;;;35123:147::o;77997:104::-;20392:6;;-1:-1:-1;;;;;20392:6:0;16805:10;20539:23;20531:68;;;;-1:-1:-1;;;20531:68:0;;;;;;;:::i;:::-;78072:21;;::::1;::::0;:12:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;67471:87::-:0;67510:13;67543:7;67536:14;;;;;:::i;50311:155::-;50406:52;16805:10;50439:8;50449;50406:18;:52::i;67091:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;69705:26::-;;;;;;;:::i;37039:149::-;36328:7;36355:12;;;;;;;;;;:22;;;34705:30;34716:4;16805:10;34705;:30::i;:::-;37154:26:::1;37166:4;37172:7;37154:11;:26::i;74859:216::-:0;20392:6;;-1:-1:-1;;;;;20392:6:0;16805:10;20539:23;20531:68;;;;-1:-1:-1;;;20531:68:0;;;;;;;:::i;:::-;75022:45:::1;75033:2;75037:14;;75022:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;75022:45:0::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;-1:-1:-1;75053:9:0;;-1:-1:-1;75053:9:0;;;;75022:45;::::1;::::0;75053:9;;75022:45;75053:9;75022:45;::::1;;::::0;::::1;::::0;;;-1:-1:-1;75022:45:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;-1:-1:-1;75022:10:0::1;::::0;-1:-1:-1;;75022:45:0:i:1;67065:19::-:0;;;;;;;:::i;78109:97::-;78153:13;78186:12;78179:19;;;;;:::i;72663:536::-;72879:55;72892:9;72902:6;72909:12;72922:11;;72879:12;:55::i;:::-;72871:64;;;;;;72956:46;72962:10;72974:12;72988:9;72956:46;;;;;;;;;;;;:5;:46::i;:::-;73065:22;;;;:8;:22;;;;;;;;73103:10;73065:49;;:37;;:49;;;;;;:64;;73119:9;73065:53;:64::i;:::-;73013:22;;;;:8;:22;;;;;;;;73051:10;73013:49;;;:37;;;;:49;;;;;;:116;;;;73147:44;;35280:25:1;;;35321:18;;;35314:34;;;73051:10:0;;73147:44;;35253:18:1;73147:44:0;;;;;;;72663:536;;;;;:::o;50778:401::-;-1:-1:-1;;;;;50986:20:0;;16805:10;50986:20;;:60;;-1:-1:-1;51010:36:0;51027:4;16805:10;50538:168;:::i;51010:36::-;50964:151;;;;-1:-1:-1;;;50964:151:0;;;;;;;:::i;:::-;51126:45;51144:4;51150:2;51154;51158:6;51166:4;51126:17;:45::i;21228:201::-;20392:6;;-1:-1:-1;;;;;20392:6:0;16805:10;20539:23;20531:68;;;;-1:-1:-1;;;20531:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21317:22:0;::::1;21309:73;;;::::0;-1:-1:-1;;;21309:73:0;;24618:2:1;21309:73:0::1;::::0;::::1;24600:21:1::0;24657:2;24637:18;;;24630:30;24696:34;24676:18;;;24669:62;-1:-1:-1;;;24747:18:1;;;24740:36;24793:19;;21309:73:0::1;24416:402:1::0;21309:73:0::1;21393:28;21412:8;21393:18;:28::i;66163:321::-:0;-1:-1:-1;;;;;66303:23:0;;16805:10;66303:23;;:66;;-1:-1:-1;66330:39:0;66347:7;16805:10;50538:168;:::i;66330:39::-;66281:157;;;;-1:-1:-1;;;66281:157:0;;;;;;;:::i;:::-;66451:25;66457:7;66466:2;66470:5;66451;:25::i;48340:310::-;48442:4;-1:-1:-1;;;;;;48479:41:0;;-1:-1:-1;;;48479:41:0;;:110;;-1:-1:-1;;;;;;;48537:52:0;;-1:-1:-1;;;48537:52:0;48479:110;:163;;;;48606:36;48630:11;48606:23;:36::i;55258:88::-;55325:13;;;;:4;;:13;;;;;:::i;67576:214::-;67744:38;67756:7;67765:2;67769:6;67777:4;67744:11;:38::i;:::-;67576:214;;;;:::o;53340:1074::-;53567:7;:14;53553:3;:10;:28;53545:81;;;;-1:-1:-1;;;53545:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53645:16:0;;53637:66;;;;-1:-1:-1;;;53637:66:0;;;;;;;:::i;:::-;16805:10;53760:60;16805:10;53791:4;53797:2;53801:3;53806:7;53815:4;53760:20;:60::i;:::-;53838:9;53833:421;53857:3;:10;53853:1;:14;53833:421;;;53889:10;53902:3;53906:1;53902:6;;;;;;;;:::i;:::-;;;;;;;53889:19;;53923:14;53940:7;53948:1;53940:10;;;;;;;;:::i;:::-;;;;;;;;;;;;53967:19;53989:13;;;:9;:13;;;;;;-1:-1:-1;;;;;53989:19:0;;;;;;;;;;;;53940:10;;-1:-1:-1;54031:21:0;;;;54023:76;;;;-1:-1:-1;;;54023:76:0;;;;;;;:::i;:::-;54143:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;54143:19:0;;;;;;;;;;54165:20;;;54143:42;;54215:17;;;;;;;:27;;54165:20;;54143:13;54215:27;;54165:20;;54215:27;:::i;:::-;;;;;;;;53874:380;;;53869:3;;;;:::i;:::-;;;53833:421;;;;54301:2;-1:-1:-1;;;;;54271:47:0;54295:4;-1:-1:-1;;;;;54271:47:0;54285:8;-1:-1:-1;;;;;54271:47:0;;54305:3;54310:7;54271:47;;;;;;;:::i;:::-;;;;;;;;54331:75;54367:8;54377:4;54383:2;54387:3;54392:7;54401:4;54331:35;:75::i;:::-;53534:880;53340:1074;;;;;:::o;35560:505::-;35649:22;35657:4;35663:7;35649;:22::i;:::-;35644:414;;35837:41;35865:7;-1:-1:-1;;;;;35837:41:0;35875:2;35837:19;:41::i;:::-;35951:38;35979:4;35986:2;35951:19;:38::i;:::-;35742:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;35742:270:0;;;;;;;;;;-1:-1:-1;;;35688:358:0;;;;;;;:::i;39196:238::-;39280:22;39288:4;39294:7;39280;:22::i;:::-;39275:152;;39319:6;:12;;;;;;;;;;;-1:-1:-1;;;;;39319:29:0;;;;;;;;;:36;;-1:-1:-1;;39319:36:0;39351:4;39319:36;;;39402:12;16805:10;;16725:98;39402:12;-1:-1:-1;;;;;39375:40:0;39393:7;-1:-1:-1;;;;;39375:40:0;39387:4;39375:40;;;;;;;;;;39196:238;;:::o;39566:239::-;39650:22;39658:4;39664:7;39650;:22::i;:::-;39646:152;;;39721:5;39689:12;;;;;;;;;;;-1:-1:-1;;;;;39689:29:0;;;;;;;;;;:37;;-1:-1:-1;;39689:37:0;;;39746:40;16805:10;;39689:12;;39746:40;;39721:5;39746:40;39566:239;;:::o;19130:120::-;18142:7;;;;18666:41;;;;-1:-1:-1;;;18666:41:0;;23448:2:1;18666:41:0;;;23430:21:1;23487:2;23467:18;;;23460:30;-1:-1:-1;;;23506:18:1;;;23499:50;23566:18;;18666:41:0;23246:344:1;18666:41:0;19189:7:::1;:15:::0;;-1:-1:-1;;19189:15:0::1;::::0;;19220:22:::1;16805:10:::0;19229:12:::1;19220:22;::::0;-1:-1:-1;;;;;17908:32:1;;;17890:51;;17878:2;17863:18;19220:22:0::1;;;;;;;19130:120::o:0;14580:190::-;14705:4;14758;14729:25;14742:5;14749:4;14729:12;:25::i;:::-;:33;;14580:190;-1:-1:-1;;;;14580:190:0:o;75083:1667::-;75245:4;75314:8;18142:7;;;;;18071:86;75314:8;75313:9;75305:47;;;;-1:-1:-1;;;75305:47:0;;27022:2:1;75305:47:0;;;27004:21:1;27061:2;27041:18;;;27034:30;-1:-1:-1;;;27080:18:1;;;27073:55;27145:18;;75305:47:0;26820:349:1;75305:47:0;75421:22;;;;:8;:22;;;;;:32;;;75413:79;;;;-1:-1:-1;;;75413:79:0;;25025:2:1;75413:79:0;;;25007:21:1;25064:2;25044:18;;;25037:30;25103:31;25083:18;;;25076:59;25152:18;;75413:79:0;24823:353:1;75413:79:0;75563:22;;;;:8;:22;;;;;:33;;;;;75555:60;;;;-1:-1:-1;;;75555:60:0;;33965:2:1;75555:60:0;;;33947:21:1;34004:2;33984:18;;;33977:30;-1:-1:-1;;;34023:18:1;;;34016:44;34077:18;;75555:60:0;33763:338:1;75555:60:0;75694:22;;;;:8;:22;;;;;:32;;;75680:47;;:9;;:13;:47::i;:::-;75667:9;:60;;75659:101;;;;-1:-1:-1;;;75659:101:0;;31247:2:1;75659:101:0;;;31229:21:1;31286:2;31266:18;;;31259:30;31325;31305:18;;;31298:58;31373:18;;75659:101:0;31045:352:1;75659:101:0;75846:22;;;;:8;:22;;;;;;;;75884:10;75846:49;;:37;;:49;;;;;;75914:6;;75846:64;;75900:9;75846:53;:64::i;:::-;:74;;75838:127;;;;-1:-1:-1;;;75838:127:0;;24209:2:1;75838:127:0;;;24191:21:1;24248:2;24228:18;;;24221:30;24287:34;24267:18;;;24260:62;-1:-1:-1;;;24338:18:1;;;24331:38;24386:19;;75838:127:0;24007:404:1;75838:127:0;76052:22;;;;:8;:22;;;;;;;;:35;;;;76022:10;75984:49;;:37;;;;:49;;;;;;;:64;;76038:9;75984:53;:64::i;:::-;:103;;75976:169;;;;-1:-1:-1;;;75976:169:0;;31955:2:1;75976:169:0;;;31937:21:1;31994:2;31974:18;;;31967:30;32033:34;32013:18;;;32006:62;-1:-1:-1;;;32084:18:1;;;32077:51;32145:19;;75976:169:0;31753:417:1;75976:169:0;76177:22;;;;:8;:22;;;;;:36;;;76164:49;;;76156:99;;;;-1:-1:-1;;;76156:99:0;;30480:2:1;76156:99:0;;;30462:21:1;30519:2;30499:18;;;30492:30;30558:34;30538:18;;;30531:62;-1:-1:-1;;;30609:18:1;;;30602:35;30654:19;;76156:99:0;30278:401:1;76156:99:0;76317:22;;;;:8;:22;;;;;;;;:32;;;63634:12;:16;;;;;;;76276:37;;76304:9;;76276:37;:::i;:::-;:73;;76268:118;;;;-1:-1:-1;;;76268:118:0;;29304:2:1;76268:118:0;;;29286:21:1;;;29323:18;;;29316:30;29382:34;29362:18;;;29355:62;29434:18;;76268:118:0;29102:356:1;76268:118:0;76415:12;76449:22;;;:8;:22;;;;;:36;;;76430:4;;76449:36;;76445:273;;;76521:65;76539:11;;76521:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;76552:22:0;;;:8;:22;;;;;:33;;-1:-1:-1;76521:17:0;;-1:-1:-1;;76521:65:0:i;:::-;76511:75;;76627:7;76601:103;;;;-1:-1:-1;;;76601:103:0;;28077:2:1;76601:103:0;;;28059:21:1;28116:2;28096:18;;;28089:30;28155:34;28135:18;;;28128:62;-1:-1:-1;;;28206:18:1;;;28199:31;28247:19;;76601:103:0;27875:397:1;76601:103:0;76735:7;75083:1667;-1:-1:-1;;;;;;75083:1667:0:o;8106:98::-;8164:7;8191:5;8195:1;8191;:5;:::i;:::-;8184:12;8106:98;-1:-1:-1;;;8106:98:0:o;7368:::-;7426:7;7453:5;7457:1;7453;:5;:::i;67798:236::-;67986:40;68003:2;68007:3;68012:7;68021:4;67986:16;:40::i;68230:212::-;68395:39;68412:7;68421:3;68426:7;68395:16;:39::i;21589:191::-;21682:6;;;-1:-1:-1;;;;;21699:17:0;;;-1:-1:-1;;;;;;21699:17:0;;;;;;;21732:40;;21682:6;;;21699:17;21682:6;;21732:40;;21663:16;;21732:40;21652:128;21589:191;:::o;18871:118::-;18142:7;;;;18396:9;18388:38;;;;-1:-1:-1;;;18388:38:0;;27376:2:1;18388:38:0;;;27358:21:1;27415:2;27395:18;;;27388:30;-1:-1:-1;;;27434:18:1;;;27427:46;27490:18;;18388:38:0;27174:340:1;18388:38:0;18931:7:::1;:14:::0;;-1:-1:-1;;18931:14:0::1;18941:4;18931:14;::::0;;18961:20:::1;18968:12;16805:10:::0;;16725:98;59526:331;59681:8;-1:-1:-1;;;;;59672:17:0;:5;-1:-1:-1;;;;;59672:17:0;;;59664:71;;;;-1:-1:-1;;;59664:71:0;;32736:2:1;59664:71:0;;;32718:21:1;32775:2;32755:18;;;32748:30;32814:34;32794:18;;;32787:62;-1:-1:-1;;;32865:18:1;;;32858:39;32914:19;;59664:71:0;32534:405:1;59664:71:0;-1:-1:-1;;;;;59746:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;59746:46:0;;;;;;;;;;59808:41;;20748::1;;;59808::0;;20721:18:1;59808:41:0;;;;;;;59526:331;;;:::o;52162:820::-;-1:-1:-1;;;;;52350:16:0;;52342:66;;;;-1:-1:-1;;;52342:66:0;;;;;;;:::i;:::-;16805:10;52465:96;16805:10;52496:4;52502:2;52506:21;52524:2;52506:17;:21::i;:::-;52529:25;52547:6;52529:17;:25::i;:::-;52556:4;52465:20;:96::i;:::-;52574:19;52596:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;52596:19:0;;;;;;;;;;52634:21;;;;52626:76;;;;-1:-1:-1;;;52626:76:0;;;;;;;:::i;:::-;52738:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;52738:19:0;;;;;;;;;;52760:20;;;52738:42;;52802:17;;;;;;;:27;;52760:20;;52738:13;52802:27;;52760:20;;52802:27;:::i;:::-;;;;-1:-1:-1;;52847:46:0;;;35280:25:1;;;35336:2;35321:18;;35314:34;;;-1:-1:-1;;;;;52847:46:0;;;;;;;;;;;;;;35253:18:1;52847:46:0;;;;;;;52906:68;52937:8;52947:4;52953:2;52957;52961:6;52969:4;52906:30;:68::i;:::-;52331:651;;52162:820;;;;;:::o;68042:180::-;68182:32;68194:7;68203:2;68207:6;68182:11;:32::i;34827:204::-;34912:4;-1:-1:-1;;;;;;34936:47:0;;-1:-1:-1;;;34936:47:0;;:87;;-1:-1:-1;;;;;;;;;;32181:40:0;;;34987:36;32072:157;55732:569;-1:-1:-1;;;;;55885:16:0;;55877:62;;;;-1:-1:-1;;;55877:62:0;;;;;;;:::i;:::-;16805:10;55996:102;16805:10;55952:16;56039:2;56043:21;56061:2;56043:17;:21::i;55996:102::-;56111:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;56111:17:0;;;;;;;;;:27;;56132:6;;56111:13;:27;;56132:6;;56111:27;:::i;:::-;;;;-1:-1:-1;;56154:52:0;;;35280:25:1;;;35336:2;35321:18;;35314:34;;;-1:-1:-1;;;;;56154:52:0;;;;56187:1;;56154:52;;;;;;35253:18:1;56154:52:0;;;;;;;56219:74;56250:8;56268:1;56272:2;56276;56280:6;56288:4;56219:30;:74::i;68452:353::-;68731:66;68758:8;68768:4;68774:2;68778:3;68783:7;68792:4;68731:26;:66::i;61794:813::-;-1:-1:-1;;;;;62034:13:0;;23315:19;:23;62030:570;;62070:79;;-1:-1:-1;;;62070:79:0;;-1:-1:-1;;;;;62070:43:0;;;;;:79;;62114:8;;62124:4;;62130:3;;62135:7;;62144:4;;62070:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62070:79:0;;;;;;;;-1:-1:-1;;62070:79:0;;;;;;;;;;;;:::i;:::-;;;62066:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;62462:6;62455:14;;-1:-1:-1;;;62455:14:0;;;;;;;;:::i;62066:523::-;;;62511:62;;-1:-1:-1;;;62511:62:0;;22257:2:1;62511:62:0;;;22239:21:1;22296:2;22276:18;;;22269:30;22335:34;22315:18;;;22308:62;-1:-1:-1;;;22386:18:1;;;22379:50;22446:19;;62511:62:0;22055:416:1;62066:523:0;-1:-1:-1;;;;;;62231:60:0;;-1:-1:-1;;;62231:60:0;62227:159;;62316:50;;-1:-1:-1;;;62316:50:0;;;;;;;:::i;13199:451::-;13274:13;13300:19;13332:10;13336:6;13332:1;:10;:::i;:::-;:14;;13345:1;13332:14;:::i;:::-;-1:-1:-1;;;;;13322:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13322:25:0;;13300:47;;-1:-1:-1;;;13358:6:0;13365:1;13358:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;13358:15:0;;;;;;;;;-1:-1:-1;;;13384:6:0;13391:1;13384:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;13384:15:0;;;;;;;;-1:-1:-1;13415:9:0;13427:10;13431:6;13427:1;:10;:::i;:::-;:14;;13440:1;13427:14;:::i;:::-;13415:26;;13410:135;13447:1;13443;:5;13410:135;;;-1:-1:-1;;;13495:5:0;13503:3;13495:11;13482:25;;;;;;;:::i;:::-;;;;13470:6;13477:1;13470:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;13470:37:0;;;;;;;;-1:-1:-1;13532:1:0;13522:11;;;;;13450:3;;;:::i;:::-;;;13410:135;;;-1:-1:-1;13563:10:0;;13555:55;;;;-1:-1:-1;;;13555:55:0;;22678:2:1;13555:55:0;;;22660:21:1;;;22697:18;;;22690:30;22756:34;22736:18;;;22729:62;22808:18;;13555:55:0;22476:356:1;15132:675:0;15215:7;15258:4;15215:7;15273:497;15297:5;:12;15293:1;:16;15273:497;;;15331:20;15354:5;15360:1;15354:8;;;;;;;;:::i;:::-;;;;;;;15331:31;;15397:12;15381;:28;15377:382;;15883:13;15933:15;;;15969:4;15962:15;;;16016:4;16000:21;;15509:57;;15377:382;;;15883:13;15933:15;;;15969:4;15962:15;;;16016:4;16000:21;;15686:57;;15377:382;-1:-1:-1;15311:3:0;;;;:::i;:::-;;;;15273:497;;56657:735;-1:-1:-1;;;;;56835:16:0;;56827:62;;;;-1:-1:-1;;;56827:62:0;;;;;;;:::i;:::-;56922:7;:14;56908:3;:10;:28;56900:81;;;;-1:-1:-1;;;56900:81:0;;;;;;;:::i;:::-;16805:10;57038:66;16805:10;56994:16;57081:2;57085:3;57090:7;57099:4;57038:20;:66::i;:::-;57122:9;57117:103;57141:3;:10;57137:1;:14;57117:103;;;57198:7;57206:1;57198:10;;;;;;;;:::i;:::-;;;;;;;57173:9;:17;57183:3;57187:1;57183:6;;;;;;;;:::i;:::-;;;;;;;57173:17;;;;;;;;;;;:21;57191:2;-1:-1:-1;;;;;57173:21:0;-1:-1:-1;;;;;57173:21:0;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;57153:3:0;;-1:-1:-1;57153:3:0;;;:::i;:::-;;;;57117:103;;;;57273:2;-1:-1:-1;;;;;57237:53:0;57269:1;-1:-1:-1;;;;;57237:53:0;57251:8;-1:-1:-1;;;;;57237:53:0;;57277:3;57282:7;57237:53;;;;;;;:::i;:::-;;;;;;;;57303:81;57339:8;57357:1;57361:2;57365:3;57370:7;57379:4;57303:35;:81::i;58493:891::-;-1:-1:-1;;;;;58645:18:0;;58637:66;;;;-1:-1:-1;;;58637:66:0;;;;;;;:::i;:::-;58736:7;:14;58722:3;:10;:28;58714:81;;;;-1:-1:-1;;;58714:81:0;;;;;;;:::i;:::-;58808:16;16805:10;58808:31;;58852:66;58873:8;58883:4;58897:1;58901:3;58906:7;58852:66;;;;;;;;;;;;:20;:66::i;:::-;58936:9;58931:373;58955:3;:10;58951:1;:14;58931:373;;;58987:10;59000:3;59004:1;59000:6;;;;;;;;:::i;:::-;;;;;;;58987:19;;59021:14;59038:7;59046:1;59038:10;;;;;;;;:::i;:::-;;;;;;;;;;;;59065:19;59087:13;;;:9;:13;;;;;;-1:-1:-1;;;;;59087:19:0;;;;;;;;;;;;59038:10;;-1:-1:-1;59129:21:0;;;;59121:70;;;;-1:-1:-1;;;59121:70:0;;;;;;;:::i;:::-;59235:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;59235:19:0;;;;;;;;;;59257:20;;59235:42;;58967:3;;;;:::i;:::-;;;;58931:373;;;;59359:1;-1:-1:-1;;;;;59321:55:0;59345:4;-1:-1:-1;;;;;59321:55:0;59335:8;-1:-1:-1;;;;;59321:55:0;;59363:3;59368:7;59321:55;;;;;;;:::i;:::-;;;;;;;;58626:758;58493:891;;;:::o;62615:198::-;62735:16;;;62749:1;62735:16;;;;;;;;;62681;;62710:22;;62735:16;;;;;;;;;;;;-1:-1:-1;62735:16:0;62710:41;;62773:7;62762:5;62768:1;62762:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;62800:5;62615:198;-1:-1:-1;;62615:198:0:o;61042:744::-;-1:-1:-1;;;;;61257:13:0;;23315:19;:23;61253:526;;61293:72;;-1:-1:-1;;;61293:72:0;;-1:-1:-1;;;;;61293:38:0;;;;;:72;;61332:8;;61342:4;;61348:2;;61352:6;;61360:4;;61293:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61293:72:0;;;;;;;;-1:-1:-1;;61293:72:0;;;;;;;;;;;;:::i;:::-;;;61289:479;;;;:::i;:::-;-1:-1:-1;;;;;;61415:55:0;;-1:-1:-1;;;61415:55:0;61411:154;;61495:50;;-1:-1:-1;;;61495:50:0;;;;;;;:::i;57642:648::-;-1:-1:-1;;;;;57769:18:0;;57761:66;;;;-1:-1:-1;;;57761:66:0;;;;;;;:::i;:::-;16805:10;57884:102;16805:10;57915:4;57840:16;57933:21;57951:2;57933:17;:21::i;:::-;57956:25;57974:6;57956:17;:25::i;:::-;57884:102;;;;;;;;;;;;:20;:102::i;:::-;57999:19;58021:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;58021:19:0;;;;;;;;;;58059:21;;;;58051:70;;;;-1:-1:-1;;;58051:70:0;;;;;;;:::i;:::-;58157:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;58157:19:0;;;;;;;;;;;;58179:20;;;58157:42;;58228:54;;35280:25:1;;;35321:18;;;35314:34;;;58157:19:0;;58228:54;;;;;;35253:18:1;58228:54:0;;;;;;;57750:540;;57642:648;;;:::o;63953:655::-;64192:66;64219:8;64229:4;64235:2;64239:3;64244:7;64253:4;64192:26;:66::i;:::-;-1:-1:-1;;;;;64275:18:0;;64271:160;;64315:9;64310:110;64334:3;:10;64330:1;:14;64310:110;;;64394:7;64402:1;64394:10;;;;;;;;:::i;:::-;;;;;;;64370:12;:20;64383:3;64387:1;64383:6;;;;;;;;:::i;:::-;;;;;;;64370:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;64346:3:0;;-1:-1:-1;64346:3:0;;:::i;:::-;;;64310:110;;;;64271:160;-1:-1:-1;;;;;64447:16:0;;64443:158;;64485:9;64480:110;64504:3;:10;64500:1;:14;64480:110;;;64564:7;64572:1;64564:10;;;;;;;;:::i;:::-;;;;;;;64540:12;:20;64553:3;64557:1;64553:6;;;;;;;;:::i;:::-;;;;;;;64540:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;64516:3:0;;-1:-1:-1;64516:3:0;;:::i;:::-;;;64480:110;;65333:392;18142:7;;;;65659:9;65651:66;;;;-1:-1:-1;;;65651:66:0;;25788:2:1;65651:66:0;;;25770:21:1;25827:2;25807:18;;;25800:30;25866:34;25846:18;;;25839:62;-1:-1:-1;;;25917:18:1;;;25910:42;25969:19;;65651:66:0;25586:408:1;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:386:1;96:8;106:6;160:3;153:4;145:6;141:17;137:27;127:55;;178:1;175;168:12;127:55;-1:-1:-1;201:20:1;;-1:-1:-1;;;;;233:30:1;;230:50;;;276:1;273;266:12;230:50;313:4;305:6;301:17;289:29;;373:3;366:4;356:6;353:1;349:14;341:6;337:27;333:38;330:47;327:67;;;390:1;387;380:12;327:67;14:386;;;;;:::o;405:735::-;459:5;512:3;505:4;497:6;493:17;489:27;479:55;;530:1;527;520:12;479:55;566:6;553:20;592:4;615:43;655:2;615:43;:::i;:::-;687:2;681:9;699:31;727:2;719:6;699:31;:::i;:::-;765:18;;;799:15;;;;-1:-1:-1;834:15:1;;;884:1;880:10;;;868:23;;864:32;;861:41;-1:-1:-1;858:61:1;;;915:1;912;905:12;858:61;937:1;947:163;961:2;958:1;955:9;947:163;;;1018:17;;1006:30;;1056:12;;;;1088;;;;979:1;972:9;947:163;;;-1:-1:-1;1128:6:1;;405:735;-1:-1:-1;;;;;;;405:735:1:o;1145:160::-;1210:20;;1266:13;;1259:21;1249:32;;1239:60;;1295:1;1292;1285:12;1239:60;1145:160;;;:::o;1310:555::-;1352:5;1405:3;1398:4;1390:6;1386:17;1382:27;1372:55;;1423:1;1420;1413:12;1372:55;1459:6;1446:20;-1:-1:-1;;;;;1481:2:1;1478:26;1475:52;;;1507:18;;:::i;:::-;1556:2;1550:9;1568:67;1623:2;1604:13;;-1:-1:-1;;1600:27:1;1629:4;1596:38;1550:9;1568:67;:::i;:::-;1659:2;1651:6;1644:18;1705:3;1698:4;1693:2;1685:6;1681:15;1677:26;1674:35;1671:55;;;1722:1;1719;1712:12;1671:55;1786:2;1779:4;1771:6;1767:17;1760:4;1752:6;1748:17;1735:54;1833:1;1809:15;;;1826:4;1805:26;1798:37;;;;1813:6;1310:555;-1:-1:-1;;;1310:555:1:o;1870:247::-;1929:6;1982:2;1970:9;1961:7;1957:23;1953:32;1950:52;;;1998:1;1995;1988:12;1950:52;2037:9;2024:23;2056:31;2081:5;2056:31;:::i;2122:323::-;2198:6;2206;2259:2;2247:9;2238:7;2234:23;2230:32;2227:52;;;2275:1;2272;2265:12;2227:52;2314:9;2301:23;2333:31;2358:5;2333:31;:::i;:::-;2383:5;2435:2;2420:18;;;;2407:32;;-1:-1:-1;;;2122:323:1:o;2450:388::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2634:9;2621:23;2653:31;2678:5;2653:31;:::i;:::-;2703:5;-1:-1:-1;2760:2:1;2745:18;;2732:32;2773:33;2732:32;2773:33;:::i;:::-;2825:7;2815:17;;;2450:388;;;;;:::o;2843:1071::-;2997:6;3005;3013;3021;3029;3082:3;3070:9;3061:7;3057:23;3053:33;3050:53;;;3099:1;3096;3089:12;3050:53;3138:9;3125:23;3157:31;3182:5;3157:31;:::i;:::-;3207:5;-1:-1:-1;3264:2:1;3249:18;;3236:32;3277:33;3236:32;3277:33;:::i;:::-;3329:7;-1:-1:-1;3387:2:1;3372:18;;3359:32;-1:-1:-1;;;;;3440:14:1;;;3437:34;;;3467:1;3464;3457:12;3437:34;3490:61;3543:7;3534:6;3523:9;3519:22;3490:61;:::i;:::-;3480:71;;3604:2;3593:9;3589:18;3576:32;3560:48;;3633:2;3623:8;3620:16;3617:36;;;3649:1;3646;3639:12;3617:36;3672:63;3727:7;3716:8;3705:9;3701:24;3672:63;:::i;:::-;3662:73;;3788:3;3777:9;3773:19;3760:33;3744:49;;3818:2;3808:8;3805:16;3802:36;;;3834:1;3831;3824:12;3802:36;;3857:51;3900:7;3889:8;3878:9;3874:24;3857:51;:::i;:::-;3847:61;;;2843:1071;;;;;;;;:::o;3919:734::-;4023:6;4031;4039;4047;4055;4108:3;4096:9;4087:7;4083:23;4079:33;4076:53;;;4125:1;4122;4115:12;4076:53;4164:9;4151:23;4183:31;4208:5;4183:31;:::i;:::-;4233:5;-1:-1:-1;4290:2:1;4275:18;;4262:32;4303:33;4262:32;4303:33;:::i;:::-;4355:7;-1:-1:-1;4409:2:1;4394:18;;4381:32;;-1:-1:-1;4460:2:1;4445:18;;4432:32;;-1:-1:-1;4515:3:1;4500:19;;4487:33;-1:-1:-1;;;;;4532:30:1;;4529:50;;;4575:1;4572;4565:12;4529:50;4598:49;4639:7;4630:6;4619:9;4615:22;4598:49;:::i;4658:946::-;4789:6;4797;4805;4813;4821;4874:2;4862:9;4853:7;4849:23;4845:32;4842:52;;;4890:1;4887;4880:12;4842:52;4929:9;4916:23;4948:31;4973:5;4948:31;:::i;:::-;4998:5;-1:-1:-1;5054:2:1;5039:18;;5026:32;-1:-1:-1;;;;;5107:14:1;;;5104:34;;;5134:1;5131;5124:12;5104:34;5173:89;5254:7;5245:6;5234:9;5230:22;5173:89;:::i;:::-;5281:8;;-1:-1:-1;5147:115:1;-1:-1:-1;5369:2:1;5354:18;;5341:32;;-1:-1:-1;5385:16:1;;;5382:36;;;5414:1;5411;5404:12;5382:36;;5453:91;5536:7;5525:8;5514:9;5510:24;5453:91;:::i;:::-;4658:946;;;;-1:-1:-1;4658:946:1;;-1:-1:-1;5563:8:1;;5427:117;4658:946;-1:-1:-1;;;4658:946:1:o;5609:730::-;5736:6;5744;5752;5805:2;5793:9;5784:7;5780:23;5776:32;5773:52;;;5821:1;5818;5811:12;5773:52;5860:9;5847:23;5879:31;5904:5;5879:31;:::i;:::-;5929:5;-1:-1:-1;5985:2:1;5970:18;;5957:32;-1:-1:-1;;;;;6038:14:1;;;6035:34;;;6065:1;6062;6055:12;6035:34;6088:61;6141:7;6132:6;6121:9;6117:22;6088:61;:::i;:::-;6078:71;;6202:2;6191:9;6187:18;6174:32;6158:48;;6231:2;6221:8;6218:16;6215:36;;;6247:1;6244;6237:12;6215:36;;6270:63;6325:7;6314:8;6303:9;6299:24;6270:63;:::i;:::-;6260:73;;;5609:730;;;;;:::o;6344:315::-;6409:6;6417;6470:2;6458:9;6449:7;6445:23;6441:32;6438:52;;;6486:1;6483;6476:12;6438:52;6525:9;6512:23;6544:31;6569:5;6544:31;:::i;:::-;6594:5;-1:-1:-1;6618:35:1;6649:2;6634:18;;6618:35;:::i;:::-;6608:45;;6344:315;;;;;:::o;6984:383::-;7061:6;7069;7077;7130:2;7118:9;7109:7;7105:23;7101:32;7098:52;;;7146:1;7143;7136:12;7098:52;7185:9;7172:23;7204:31;7229:5;7204:31;:::i;:::-;7254:5;7306:2;7291:18;;7278:32;;-1:-1:-1;7357:2:1;7342:18;;;7329:32;;6984:383;-1:-1:-1;;;6984:383:1:o;7372:1288::-;7490:6;7498;7551:2;7539:9;7530:7;7526:23;7522:32;7519:52;;;7567:1;7564;7557:12;7519:52;7607:9;7594:23;-1:-1:-1;;;;;7677:2:1;7669:6;7666:14;7663:34;;;7693:1;7690;7683:12;7663:34;7731:6;7720:9;7716:22;7706:32;;7776:7;7769:4;7765:2;7761:13;7757:27;7747:55;;7798:1;7795;7788:12;7747:55;7834:2;7821:16;7856:4;7879:43;7919:2;7879:43;:::i;:::-;7951:2;7945:9;7963:31;7991:2;7983:6;7963:31;:::i;:::-;8029:18;;;8063:15;;;;-1:-1:-1;8098:11:1;;;8140:1;8136:10;;;8128:19;;8124:28;;8121:41;-1:-1:-1;8118:61:1;;;8175:1;8172;8165:12;8118:61;8197:1;8188:10;;8207:238;8221:2;8218:1;8215:9;8207:238;;;8292:3;8279:17;8309:31;8334:5;8309:31;:::i;:::-;8353:18;;8239:1;8232:9;;;;;8391:12;;;;8423;;8207:238;;;-1:-1:-1;8464:6:1;-1:-1:-1;;8508:18:1;;8495:32;;-1:-1:-1;;8539:16:1;;;8536:36;;;8568:1;8565;8558:12;8536:36;;8591:63;8646:7;8635:8;8624:9;8620:24;8591:63;:::i;:::-;8581:73;;;7372:1288;;;;;:::o;8665:1034::-;8758:6;8766;8819:2;8807:9;8798:7;8794:23;8790:32;8787:52;;;8835:1;8832;8825:12;8787:52;8875:9;8862:23;-1:-1:-1;;;;;8900:6:1;8897:30;8894:50;;;8940:1;8937;8930:12;8894:50;8963:22;;9016:4;9008:13;;9004:27;-1:-1:-1;8994:55:1;;9045:1;9042;9035:12;8994:55;9081:2;9068:16;9103:4;9126:43;9166:2;9126:43;:::i;:::-;9198:2;9192:9;9210:31;9238:2;9230:6;9210:31;:::i;:::-;9276:18;;;9310:15;;;;-1:-1:-1;9345:11:1;;;9387:1;9383:10;;;9375:19;;9371:28;;9368:41;-1:-1:-1;9365:61:1;;;9422:1;9419;9412:12;9365:61;9444:1;9435:10;;9454:163;9468:2;9465:1;9462:9;9454:163;;;9525:17;;9513:30;;9486:1;9479:9;;;;;9563:12;;;;9595;;9454:163;;;-1:-1:-1;9636:6:1;9674:18;;;;9661:32;;-1:-1:-1;;;;;;8665:1034:1:o;9704:1507::-;9925:6;9933;9941;9949;9957;9965;9973;9981;10034:3;10022:9;10013:7;10009:23;10005:33;10002:53;;;10051:1;10048;10041:12;10002:53;10091:9;10078:23;-1:-1:-1;;;;;10161:2:1;10153:6;10150:14;10147:34;;;10177:1;10174;10167:12;10147:34;10216:89;10297:7;10288:6;10277:9;10273:22;10216:89;:::i;:::-;10324:8;;-1:-1:-1;10190:115:1;-1:-1:-1;10412:2:1;10397:18;;10384:32;;-1:-1:-1;10428:16:1;;;10425:36;;;10457:1;10454;10447:12;10425:36;10496:91;10579:7;10568:8;10557:9;10553:24;10496:91;:::i;:::-;10606:8;;-1:-1:-1;10470:117:1;-1:-1:-1;10694:2:1;10679:18;;10666:32;;-1:-1:-1;10710:16:1;;;10707:36;;;10739:1;10736;10729:12;10707:36;10778:91;10861:7;10850:8;10839:9;10835:24;10778:91;:::i;:::-;10888:8;;-1:-1:-1;10752:117:1;-1:-1:-1;10976:2:1;10961:18;;10948:32;;-1:-1:-1;10992:16:1;;;10989:36;;;11021:1;11018;11011:12;10989:36;;11060:91;11143:7;11132:8;11121:9;11117:24;11060:91;:::i;:::-;9704:1507;;;;-1:-1:-1;9704:1507:1;;-1:-1:-1;9704:1507:1;;;;;;11170:8;-1:-1:-1;;;9704:1507:1:o;11216:180::-;11275:6;11328:2;11316:9;11307:7;11303:23;11299:32;11296:52;;;11344:1;11341;11334:12;11296:52;-1:-1:-1;11367:23:1;;11216:180;-1:-1:-1;11216:180:1:o;11401:315::-;11469:6;11477;11530:2;11518:9;11509:7;11505:23;11501:32;11498:52;;;11546:1;11543;11536:12;11498:52;11582:9;11569:23;11559:33;;11642:2;11631:9;11627:18;11614:32;11655:31;11680:5;11655:31;:::i;11721:733::-;11841:6;11849;11857;11865;11873;11881;11889;11942:3;11930:9;11921:7;11917:23;11913:33;11910:53;;;11959:1;11956;11949:12;11910:53;11995:9;11982:23;11972:33;;12052:2;12041:9;12037:18;12024:32;12014:42;;12103:2;12092:9;12088:18;12075:32;12065:42;;12154:2;12143:9;12139:18;12126:32;12116:42;;12209:3;12198:9;12194:19;12181:33;-1:-1:-1;;;;;12229:6:1;12226:30;12223:50;;;12269:1;12266;12259:12;12223:50;12292:49;12333:7;12324:6;12313:9;12309:22;12292:49;:::i;:::-;12282:59;;;12388:3;12377:9;12373:19;12360:33;12350:43;;12412:36;12443:3;12432:9;12428:19;12412:36;:::i;:::-;12402:46;;11721:733;;;;;;;;;;:::o;12459:940::-;12600:6;12608;12616;12624;12632;12640;12648;12656;12664;12672;12725:3;12713:9;12704:7;12700:23;12696:33;12693:53;;;12742:1;12739;12732:12;12693:53;12778:9;12765:23;12755:33;;12835:2;12824:9;12820:18;12807:32;12797:42;;12886:2;12875:9;12871:18;12858:32;12848:42;;12937:2;12926:9;12922:18;12909:32;12899:42;;12992:3;12981:9;12977:19;12964:33;-1:-1:-1;;;;;13012:6:1;13009:30;13006:50;;;13052:1;13049;13042:12;13006:50;13075:49;13116:7;13107:6;13096:9;13092:22;13075:49;:::i;:::-;13065:59;;;13171:3;13160:9;13156:19;13143:33;13133:43;;13195:36;13226:3;13215:9;13211:19;13195:36;:::i;:::-;13185:46;;13278:3;13267:9;13263:19;13250:33;13240:43;;13302:36;13333:3;13322:9;13318:19;13302:36;:::i;:::-;13292:46;;13357:36;13388:3;13377:9;13373:19;13357:36;:::i;:::-;13347:46;;12459:940;;;;;;;;;;;;;:::o;13404:245::-;13462:6;13515:2;13503:9;13494:7;13490:23;13486:32;13483:52;;;13531:1;13528;13521:12;13483:52;13570:9;13557:23;13589:30;13613:5;13589:30;:::i;13654:249::-;13723:6;13776:2;13764:9;13755:7;13751:23;13747:32;13744:52;;;13792:1;13789;13782:12;13744:52;13824:9;13818:16;13843:30;13867:5;13843:30;:::i;13908:321::-;13977:6;14030:2;14018:9;14009:7;14005:23;14001:32;13998:52;;;14046:1;14043;14036:12;13998:52;14086:9;14073:23;-1:-1:-1;;;;;14111:6:1;14108:30;14105:50;;;14151:1;14148;14141:12;14105:50;14174:49;14215:7;14206:6;14195:9;14191:22;14174:49;:::i;14739:248::-;14804:6;14812;14865:2;14853:9;14844:7;14840:23;14836:32;14833:52;;;14881:1;14878;14871:12;14833:52;14917:9;14904:23;14894:33;;14946:35;14977:2;14966:9;14962:18;14946:35;:::i;14992:661::-;15105:6;15113;15121;15129;15137;15190:3;15178:9;15169:7;15165:23;15161:33;15158:53;;;15207:1;15204;15197:12;15158:53;15243:9;15230:23;15220:33;;15300:2;15289:9;15285:18;15272:32;15262:42;;15351:2;15340:9;15336:18;15323:32;15313:42;;15406:2;15395:9;15391:18;15378:32;-1:-1:-1;;;;;15425:6:1;15422:30;15419:50;;;15465:1;15462;15455:12;15419:50;15504:89;15585:7;15576:6;15565:9;15561:22;15504:89;:::i;15658:354::-;15746:19;;;15728:3;-1:-1:-1;;;;;15777:31:1;;15774:51;;;15821:1;15818;15811:12;15774:51;15857:6;15854:1;15850:14;15909:8;15902:5;15895:4;15890:3;15886:14;15873:45;15986:1;15941:18;;15961:4;15937:29;15975:13;;;-1:-1:-1;15937:29:1;;15658:354;-1:-1:-1;;15658:354:1:o;16017:435::-;16070:3;16108:5;16102:12;16135:6;16130:3;16123:19;16161:4;16190:2;16185:3;16181:12;16174:19;;16227:2;16220:5;16216:14;16248:1;16258:169;16272:6;16269:1;16266:13;16258:169;;;16333:13;;16321:26;;16367:12;;;;16402:15;;;;16294:1;16287:9;16258:169;;;-1:-1:-1;16443:3:1;;16017:435;-1:-1:-1;;;;;16017:435:1:o;16457:257::-;16498:3;16536:5;16530:12;16563:6;16558:3;16551:19;16579:63;16635:6;16628:4;16623:3;16619:14;16612:4;16605:5;16601:16;16579:63;:::i;:::-;16696:2;16675:15;-1:-1:-1;;16671:29:1;16662:39;;;;16703:4;16658:50;;16457:257;-1:-1:-1;;16457:257:1:o;16953:786::-;17364:25;17359:3;17352:38;17334:3;17419:6;17413:13;17435:62;17490:6;17485:2;17480:3;17476:12;17469:4;17461:6;17457:17;17435:62;:::i;:::-;-1:-1:-1;;;17556:2:1;17516:16;;;17548:11;;;17541:40;17606:13;;17628:63;17606:13;17677:2;17669:11;;17662:4;17650:17;;17628:63;:::i;:::-;17711:17;17730:2;17707:26;;16953:786;-1:-1:-1;;;;16953:786:1:o;17952:826::-;-1:-1:-1;;;;;18349:15:1;;;18331:34;;18401:15;;18396:2;18381:18;;18374:43;18311:3;18448:2;18433:18;;18426:31;;;18274:4;;18480:57;;18517:19;;18509:6;18480:57;:::i;:::-;18585:9;18577:6;18573:22;18568:2;18557:9;18553:18;18546:50;18619:44;18656:6;18648;18619:44;:::i;:::-;18605:58;;18712:9;18704:6;18700:22;18694:3;18683:9;18679:19;18672:51;18740:32;18765:6;18757;18740:32;:::i;:::-;18732:40;17952:826;-1:-1:-1;;;;;;;;17952:826:1:o;18783:560::-;-1:-1:-1;;;;;19080:15:1;;;19062:34;;19132:15;;19127:2;19112:18;;19105:43;19179:2;19164:18;;19157:34;;;19222:2;19207:18;;19200:34;;;19042:3;19265;19250:19;;19243:32;;;19005:4;;19292:45;;19317:19;;19309:6;19292:45;:::i;:::-;19284:53;18783:560;-1:-1:-1;;;;;;;18783:560:1:o;19348:519::-;19625:2;19614:9;19607:21;19588:4;19651:73;19720:2;19709:9;19705:18;19697:6;19689;19651:73;:::i;:::-;19772:9;19764:6;19760:22;19755:2;19744:9;19740:18;19733:50;19800:61;19854:6;19846;19838;19800:61;:::i;19872:261::-;20051:2;20040:9;20033:21;20014:4;20071:56;20123:2;20112:9;20108:18;20100:6;20071:56;:::i;20138:465::-;20395:2;20384:9;20377:21;20358:4;20421:56;20473:2;20462:9;20458:18;20450:6;20421:56;:::i;:::-;20525:9;20517:6;20513:22;20508:2;20497:9;20493:18;20486:50;20553:44;20590:6;20582;20553:44;:::i;:::-;20545:52;20138:465;-1:-1:-1;;;;;20138:465:1:o;20982:844::-;21300:4;21329:3;21359:6;21348:9;21341:25;21416:6;21409:14;21402:22;21397:2;21386:9;21382:18;21375:50;21461:6;21456:2;21445:9;21441:18;21434:34;21504:6;21499:2;21488:9;21484:18;21477:34;21548:6;21542:3;21531:9;21527:19;21520:35;21592:6;21586:3;21575:9;21571:19;21564:35;21636:2;21630:3;21619:9;21615:19;21608:31;21656:44;21696:2;21685:9;21681:18;21673:6;21656:44;:::i;:::-;21744:14;;21737:22;21731:3;21716:19;;21709:51;-1:-1:-1;;21804:14:1;;21797:22;21791:3;21776:19;;;21769:51;21648:52;20982:844;-1:-1:-1;;;;;;;20982:844:1:o;21831:219::-;21980:2;21969:9;21962:21;21943:4;22000:44;22040:2;22029:9;22025:18;22017:6;22000:44;:::i;22837:404::-;23039:2;23021:21;;;23078:2;23058:18;;;23051:30;23117:34;23112:2;23097:18;;23090:62;-1:-1:-1;;;23183:2:1;23168:18;;23161:38;23231:3;23216:19;;22837:404::o;25181:400::-;25383:2;25365:21;;;25422:2;25402:18;;;25395:30;25461:34;25456:2;25441:18;;25434:62;-1:-1:-1;;;25527:2:1;25512:18;;25505:34;25571:3;25556:19;;25181:400::o;25999:405::-;26201:2;26183:21;;;26240:2;26220:18;;;26213:30;26279:34;26274:2;26259:18;;26252:62;-1:-1:-1;;;26345:2:1;26330:18;;26323:39;26394:3;26379:19;;25999:405::o;28277:401::-;28479:2;28461:21;;;28518:2;28498:18;;;28491:30;28557:34;28552:2;28537:18;;28530:62;-1:-1:-1;;;28623:2:1;28608:18;;28601:35;28668:3;28653:19;;28277:401::o;29463:399::-;29665:2;29647:21;;;29704:2;29684:18;;;29677:30;29743:34;29738:2;29723:18;;29716:62;-1:-1:-1;;;29809:2:1;29794:18;;29787:33;29852:3;29837:19;;29463:399::o;29867:406::-;30069:2;30051:21;;;30108:2;30088:18;;;30081:30;30147:34;30142:2;30127:18;;30120:62;-1:-1:-1;;;30213:2:1;30198:18;;30191:40;30263:3;30248:19;;29867:406::o;30684:356::-;30886:2;30868:21;;;30905:18;;;30898:30;30964:34;30959:2;30944:18;;30937:62;31031:2;31016:18;;30684:356::o;33354:404::-;33556:2;33538:21;;;33595:2;33575:18;;;33568:30;33634:34;33629:2;33614:18;;33607:62;-1:-1:-1;;;33700:2:1;33685:18;;33678:38;33748:3;33733:19;;33354:404::o;34106:397::-;34308:2;34290:21;;;34347:2;34327:18;;;34320:30;34386:34;34381:2;34366:18;;34359:62;-1:-1:-1;;;34452:2:1;34437:18;;34430:31;34493:3;34478:19;;34106:397::o;35359:545::-;35452:4;35458:6;35518:11;35505:25;35612:2;35608:7;35597:8;35581:14;35577:29;35573:43;35553:18;35549:68;35539:96;;35631:1;35628;35621:12;35539:96;35658:33;;35710:20;;;-1:-1:-1;;;;;;35742:30:1;;35739:50;;;35785:1;35782;35775:12;35739:50;35818:4;35806:17;;-1:-1:-1;35869:1:1;35865:14;;;35849;35845:35;35835:46;;35832:66;;;35894:1;35891;35884:12;35909:183;35969:4;-1:-1:-1;;;;;35994:6:1;35991:30;35988:56;;;36024:18;;:::i;:::-;-1:-1:-1;36069:1:1;36065:14;36081:4;36061:25;;35909:183::o;36097:128::-;36137:3;36168:1;36164:6;36161:1;36158:13;36155:39;;;36174:18;;:::i;:::-;-1:-1:-1;36210:9:1;;36097:128::o;36230:168::-;36270:7;36336:1;36332;36328:6;36324:14;36321:1;36318:21;36313:1;36306:9;36299:17;36295:45;36292:71;;;36343:18;;:::i;:::-;-1:-1:-1;36383:9:1;;36230:168::o;36403:125::-;36443:4;36471:1;36468;36465:8;36462:34;;;36476:18;;:::i;:::-;-1:-1:-1;36513:9:1;;36403:125::o;36533:258::-;36605:1;36615:113;36629:6;36626:1;36623:13;36615:113;;;36705:11;;;36699:18;36686:11;;;36679:39;36651:2;36644:10;36615:113;;;36746:6;36743:1;36740:13;36737:48;;;-1:-1:-1;;36781:1:1;36763:16;;36756:27;36533:258::o;36796:136::-;36835:3;36863:5;36853:39;;36872:18;;:::i;:::-;-1:-1:-1;;;36908:18:1;;36796:136::o;36937:380::-;37016:1;37012:12;;;;37059;;;37080:61;;37134:4;37126:6;37122:17;37112:27;;37080:61;37187:2;37179:6;37176:14;37156:18;37153:38;37150:161;;;37233:10;37228:3;37224:20;37221:1;37214:31;37268:4;37265:1;37258:15;37296:4;37293:1;37286:15;37150:161;;36937:380;;;:::o;37322:249::-;37432:2;37413:13;;-1:-1:-1;;37409:27:1;37397:40;;-1:-1:-1;;;;;37452:34:1;;37488:22;;;37449:62;37446:88;;;37514:18;;:::i;:::-;37550:2;37543:22;-1:-1:-1;;37322:249:1:o;37576:135::-;37615:3;-1:-1:-1;;37636:17:1;;37633:43;;;37656:18;;:::i;:::-;-1:-1:-1;37703:1:1;37692:13;;37576:135::o;37716:127::-;37777:10;37772:3;37768:20;37765:1;37758:31;37808:4;37805:1;37798:15;37832:4;37829:1;37822:15;37848:127;37909:10;37904:3;37900:20;37897:1;37890:31;37940:4;37937:1;37930:15;37964:4;37961:1;37954:15;37980:127;38041:10;38036:3;38032:20;38029:1;38022:31;38072:4;38069:1;38062:15;38096:4;38093:1;38086:15;38112:179;38147:3;38189:1;38171:16;38168:23;38165:120;;;38235:1;38232;38229;38214:23;-1:-1:-1;38272:1:1;38266:8;38261:3;38257:18;38165:120;38112:179;:::o;38296:671::-;38335:3;38377:4;38359:16;38356:26;38353:39;;;38296:671;:::o;38353:39::-;38419:2;38413:9;-1:-1:-1;;38484:16:1;38480:25;;38477:1;38413:9;38456:50;38535:4;38529:11;38559:16;-1:-1:-1;;;;;38665:2:1;38658:4;38650:6;38646:17;38643:25;38638:2;38630:6;38627:14;38624:45;38621:58;;;38672:5;;;;;38296:671;:::o;38621:58::-;38709:6;38703:4;38699:17;38688:28;;38745:3;38739:10;38772:2;38764:6;38761:14;38758:27;;;38778:5;;;;;;38296:671;:::o;38758:27::-;38862:2;38843:16;38837:4;38833:27;38829:36;38822:4;38813:6;38808:3;38804:16;38800:27;38797:69;38794:82;;;38869:5;;;;;;38296:671;:::o;38794:82::-;38885:57;38936:4;38927:6;38919;38915:19;38911:30;38905:4;38885:57;:::i;:::-;-1:-1:-1;38958:3:1;;38296:671;-1:-1:-1;;;;;38296:671:1:o;38972:131::-;-1:-1:-1;;;;;39047:31:1;;39037:42;;39027:70;;39093:1;39090;39083:12;39108:131;-1:-1:-1;;;;;;39182:32:1;;39172:43;;39162:71;;39229:1;39226;39219:12

Swarm Source

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