ETH Price: $3,272.10 (-4.06%)
Gas: 8 Gwei

Token

Pods (POD)
 

Overview

Max Total Supply

2,500 POD

Holders

1,292

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xee6DF2087F3eADE8B0dB4A379cfbe063A59E27bD
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:
Pod

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/*
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░░░░  ░░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░░      ░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░        ░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░            ░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░              ░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░                ░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░        ░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░        ░░░░░░░░        ░░░░░░░░░░░░░░
░░░░░░░░░░░░            ░░            ░░░░░░░░░░░░░
░░░░░░░░░░░             ░░              ░░░░░░░░░░░
░░░░░░░░░░              ░░               ░░░░░░░░░░
░░░░░░░░░              ░░░░               ░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░█▀▀░░░░░░█▀█░░░░░░▀█▀░░░░░░█▀▀░░░░░░█▀▀░░░░░░
░░░░░░█▀▀░░░░░░█▀█░░░░░░░█░░░░░░░█▀▀░░░░░░▀▀█░░░░░░
░░░░░░▀░░░░░░░░▀░▀░░░░░░░▀░░░░░░░▀▀▀░░░░░░▀▀▀░░░░░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░             Pod v1.0.6              ░░░░░░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
*/

// File: contracts/IERC2981Royalties.sol


pragma solidity ^0.8.0;

/// @title IERC2981Royalties
/// @dev Interface for the ERC2981 - Token Royalty standard
interface IERC2981Royalties {
    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _value - the sale price of the NFT asset specified by _tokenId
    /// @return _receiver - address of who should be sent the royalty payment
    /// @return _royaltyAmount - the royalty payment amount for value sale price
    function royaltyInfo(uint256 _tokenId, uint256 _value)
        external
        view
        returns (address _receiver, uint256 _royaltyAmount);
}
// File: contracts/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: contracts/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }
}
// File: contracts/RevokableOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  RevokableOperatorFilterer
 * @notice This contract is meant to allow contracts to permanently opt out of the OperatorFilterRegistry. The Registry
 *         itself has an "unregister" function, but if the contract is ownable, the owner can re-register at any point.
 *         As implemented, this abstract contract allows the contract owner to toggle the
 *         isOperatorFilterRegistryRevoked flag in order to permanently bypass the OperatorFilterRegistry checks.
 */
abstract contract RevokableOperatorFilterer is OperatorFilterer {
    error OnlyOwner();
    error AlreadyRevoked();

    bool private _isOperatorFilterRegistryRevoked;

    modifier onlyAllowedOperator(address from) override {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (!_isOperatorFilterRegistryRevoked && address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) override {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (!_isOperatorFilterRegistryRevoked && address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }

    /**
     * @notice Disable the isOperatorFilterRegistryRevoked flag. OnlyOwner.
     */
    function revokeOperatorFilterRegistry() external {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        if (_isOperatorFilterRegistryRevoked) {
            revert AlreadyRevoked();
        }
        _isOperatorFilterRegistryRevoked = true;
    }

    function isOperatorFilterRegistryRevoked() public view returns (bool) {
        return _isOperatorFilterRegistryRevoked;
    }

    /**
     * @dev assume the contract has an owner, but leave specific Ownable implementation up to inheriting contract
     */
    function owner() public view virtual returns (address);
}
// File: contracts/RevokableDefaultOperatorFilterer.sol


pragma solidity ^0.8.13;



/**
 * @title  RevokableDefaultOperatorFilterer
 * @notice Inherits from RevokableOperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract RevokableDefaultOperatorFilterer is RevokableOperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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.7.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
                /// @solidity memory-safe-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: contracts/ERC2981Base.sol


pragma solidity ^0.8.0;



/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
abstract contract ERC2981Base is ERC165, IERC2981Royalties {
    struct RoyaltyInfo {
        address recipient;
        uint24 amount;
    }

    /// @inheritdoc	ERC165
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return
            interfaceId == type(IERC2981Royalties).interfaceId ||
            super.supportsInterface(interfaceId);
    }
}
// File: contracts/ERC2981ContractWideRoyalties.sol


pragma solidity ^0.8.0;



/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
/// @dev This implementation has the same royalties for each and every tokens
abstract contract ERC2981ContractWideRoyalties is ERC2981Base {
    RoyaltyInfo private _royalties;

    /// @dev Sets token royalties
    /// @param recipient recipient of the royalties
    /// @param value percentage (using 2 decimals - 10000 = 100, 0 = 0)
    function _setRoyalties(address recipient, uint256 value) internal {
        require(value <= 10000, "ERC2981Royalties: Too high");
        _royalties = RoyaltyInfo(recipient, uint24(value));
    }

    /// @inheritdoc	IERC2981Royalties
    function royaltyInfo(uint256, uint256 value)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        RoyaltyInfo memory royalties = _royalties;
        receiver = royalties.recipient;
        royaltyAmount = (value * royalties.amount) / 10000;
    }
}
// File: @openzeppelin/contracts/access/AccessControl.sol


// OpenZeppelin Contracts (last updated v4.7.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);
        _;
    }

    /**
     * @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 `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @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.
     *
     * May emit a {RoleGranted} event.
     */
    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.
     *
     * May emit a {RoleRevoked} event.
     */
    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`.
     *
     * May emit a {RoleRevoked} event.
     */
    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.
     *
     * May emit a {RoleGranted} event.
     *
     * [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.
     *
     * May emit a {RoleGranted} event.
     */
    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.
     *
     * May emit a {RoleRevoked} event.
     */
    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 (last updated v4.7.0) (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 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 (last updated v4.7.0) (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: address zero is not a valid owner");
        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 token 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: caller is not token 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();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, 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);

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

        _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);

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

        _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();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

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

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * 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 _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);

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

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

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * 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();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

        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);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * 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);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {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 `ids` and `amounts` 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 {}

    /**
     * @dev Hook that is called after 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 _afterTokenTransfer(
        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: contracts/Pod.sol


pragma solidity ^0.8.16;

contract Asset {
    function fatesAssetTransfer(uint256 _id, address _to) public {}
}

contract Pod is
    ERC1155,
    AccessControl,
    Ownable,
    RevokableDefaultOperatorFilterer,
    ERC2981ContractWideRoyalties
{
    string public name; // Token name.
    string public symbol; // Shorthand identifer.
    string public contractURI_; // Link to contract-level metadata.
    string public baseURI; // Base domain.
    string public launchedURI; // Launched token's metadata.
    string public unlaunchedURI; // Unlaunched token's metadata.
    uint256 public royalty; // Royalty % 10000 = 100%.
    uint256 public expiry = 3600;
    bool public paused = false; // Revert calls to critical funcs.
    bool internal locked; // Switch to prevent reentrancy attack.

    struct TokenIds {
        uint256 aId;
        uint256 cId;
        uint256 expiresAt;
        bool listed;
    }

    // Stop >1 of same address per allowlist slot
    mapping(address => bool) public allowlistValve;
    // Tokens requiring unique IDs.
    mapping(uint256 => bool) public uid;
    // Mapping pod IDs to corresponding pilot addresses.
    mapping(uint256 => address) public allowList;
    // Prevent >1 token per pilot.
    mapping(address => bool) public launchClearance;
    // Mapping pod assigned pilots to exodus assets.
    mapping(address => TokenIds) launchList;
    // pod state tracker.
    mapping(uint256 => bool) private launchStatus;

    // Contracts pod will interact with.
    Asset private astrContract;
    Asset private charContract;

    // Distributor role.
    bytes32 public constant DISTRIBUTOR = keccak256("DISTRIBUTOR");

    constructor(
        address _root,
        address _distributor,
        address _astrContract,
        address _charContract,
        string memory _name,
        string memory _symbol,
        string memory _contractURI,
        string memory _baseURI,
        string memory _launchedURI,
        string memory _unlaunchedURI,
        uint256 _royalty
    ) ERC1155(baseURI) {
        _setupRole(DEFAULT_ADMIN_ROLE, _root);
        _setupRole(DISTRIBUTOR, _distributor);
        name = _name;
        symbol = _symbol;
        contractURI_ = _contractURI;
        baseURI = _baseURI;
        launchedURI = _launchedURI;
        unlaunchedURI = _unlaunchedURI;
        royalty = _royalty;
        astrContract = Asset(_astrContract);
        charContract = Asset(_charContract);
    }

    /*
     * @dev
     *      Modifier restricts func calls to addresses under admin role only.
     */
    modifier onlyAdmin() {
        require(
            hasRole(DEFAULT_ADMIN_ROLE, msg.sender),
            "Restricted to admins."
        );
        _;
    }

    /*
     * @dev
     *      Modifier used to lock external functions until fully executed.
     */
    modifier noReentrant() {
        require(!locked, "No recursive calls.");
        locked = true;
        _;
        locked = false;
    }

    /*
     * @dev
     *      Write contract activity switch.
     * @params
     *      _paused - Boolean state change.
     */
    function setPaused(bool _paused) external onlyAdmin {
        paused = _paused;
    }

    /*
     * @dev
     *      Read collection-level metadata.
     */
    function contractURI() public view returns (string memory) {
        return contractURI_;
    }

    /*
     * @dev
     *      Write collection-level metadata.
     * @params
     *      _contracturi - Link to contract-level JSON metadata.
     */
    function setContractURI(string memory _contracturi) external onlyAdmin {
        contractURI_ = _contracturi;
    }

    /*
     * @dev
     *      Set expiry time for buying a token.
     * @params
     *      _expiry - In seconds, 3600 default.
     */
    function setExpiry(uint256 _expiry) external onlyAdmin {
        expiry = _expiry;
    }

    /*
     * @dev
     *      Read royalty fee set.
     */
    function getRoyaltyFee() public view returns (uint256) {
        return royalty;
    }

    /*
     * @dev
     *      Write royalty fee.
     * @params
     *      _recipient - Target address to receive the royalty fee.
     *      _value - Basis point royalty %.
     */
    function setRoyalties(address _recipient, uint256 _value)
        external
        onlyAdmin
    {
        _setRoyalties(_recipient, _value);
    }

    /*
     * @dev
     *      Add pilot address to the allowList against token ID.
     * @params
     *      _id - ID of tokens to be minted.
     *      _pilot - Pilot to allow listed.
     */
    function addToAllowList(uint256 _id, address _pilot)
        external
        onlyRole(DISTRIBUTOR)
    {
        // Pod must not already have been claimed.
        require(uid[_id] == false, "Pod already claimed.");
        // Pilot must not have already been allocated a Pod.
        require(allowlistValve[_pilot] == false, "Address already listed.");
        // No more than once whilst on allow list at any one time.
        allowlistValve[_pilot] = true;
        // Add to allow list.
        allowList[_id] = _pilot;
    }

    /*
     * @dev
     *      Remove pilot address from the allow list against token ID.
     *      Also resets the pilot to be able to engage in the evac process again.
     * @params
     *      _id - ID of token to remove.
     *      _pilot - Pilot address to remove.
     */
    function removeFromAllowList(uint256 _id, address _pilot)
        external
        onlyRole(DISTRIBUTOR)
    {
        require(allowlistValve[_pilot] == true, "Address not allocated a pod.");
        allowlistValve[_pilot] = false;
        delete allowList[_id];
    }

    /*
     * @dev
     *      Check an account is on the allowList.
     * @params
     *      _id - ID of token to check as listed.
     *      _pilot - Pilot address to check as listed.
     */
    function isAllowListed(uint256 _id, address _pilot)
        public
        view
        returns (bool)
    {
        bool pilotIsAllowListed = false;
        if (allowList[_id] == _pilot) {
            pilotIsAllowListed = true;
        }
        return pilotIsAllowListed;
    }

    /*
     * @dev
     *      Claim evac pod.
     * @params
     *      _id - ID of tokens to be minted.
     */
    function evacPodClaim(uint256 _id) external noReentrant {
        // Required on public funcs that alter state.
        require(!paused, "Exodus is on hold.");

        // Pod must be non-fungible.
        require(uid[_id] == false, "Pod already claimed.");

        address pilot = msg.sender;
        // Pilot must be on allowListed for token id.
        require(allowList[_id] == pilot, "Address is not listed for this pod.");
        // Ensure pilot address has not launched.
        require(launchClearance[pilot] == false, "Address already owns a pod.");

        // Pilot now cleared for launch.
        launchClearance[pilot] = true;

        // Pod ID claimed.
        uid[_id] = true;

        // Allocate to pilot.
        _mint(pilot, _id, 1, bytes(""));
    }

    /*
     * @dev
     *      Add pilot to launch list.
     * @params
     *      _podId - Id of pod to launch.
     *      _charId - Id of character to allocate.
     *      _astrId - Id of asteroid to allocate.
     */
    function addToLaunchList(
        address _pilot,
        uint256 _charId,
        uint256 _astrId
    ) external onlyRole(DISTRIBUTOR) {
        // Ensure pilot address has not launched.
        require(launchClearance[_pilot] == true, "Address doesn't own a pod.");

        // Ensures the same pilot cannot be allocated twice.
        require(
            launchList[_pilot].listed == false,
            "Address doesn't own a pod."
        );

        launchList[_pilot] = TokenIds(
            _astrId,
            _charId,
            block.timestamp + expiry,
            true
        );
    }

    /*
     * @dev
     *      Remove pilot addresses from the allowList against token IDs.
     * @params
     *      _pilot - Pilot address to remove from launchList.
     */
    function removeFromLaunchList(address _pilot)
        external
        onlyRole(DISTRIBUTOR)
    {
        delete launchList[_pilot];
    }

    /*
     * @dev
     *      Check an account is on the launchList.
     * @params
     *      _pilot - Pilot address to check against launchList.
     */
    function isLaunchListed(address _pilot) public view returns (bool) {
        bool pilotLaunchListed = false;

        if (
            launchList[_pilot].listed == true &&
            block.timestamp <= launchList[_pilot].expiresAt
        ) {
            pilotLaunchListed = true;
        }
        return pilotLaunchListed;
    }

    /*
     * @dev
     *       Set pilot's launch clearance.
     * @params
     *      _pilot - Pilot address to clear.
     *      _clearance - Cleared to launch or not.
     */
    function setLaunchClearance(address _pilot, bool _clearance)
        external
        onlyRole(DISTRIBUTOR)
    {
        launchClearance[_pilot] = _clearance;
    }

    /*
     * @dev
     *      Launch pod.
     * @params
     *      _id - Ids of pod to launch.
     */
    function _launchPod(uint256 _id) private {
        require(!launchStatus[_id]);
        launchStatus[_id] = true;
    }

    /*
     * @dev
     *      Launch pod, simultaneously allocating correspoinding assets.
     * @params
     *      _podId - Id of pod to launch.
     *      _charId - Id of character to allocate.
     *      _astrId - Id of asteroid to allocate.
     */
    function evacPodLaunch(
        uint256 _podId,
        uint256 _charId,
        uint256 _astrId
    ) external noReentrant {
        // Required on public funcs that alter state.
        require(!paused, "Exodus is on hold.");

        // Set pilot.
        address pilot = msg.sender;

        // launchList IDs must match pilots assigned _astrId and _charId.
        require(
            launchList[pilot].aId == _astrId,
            "Asteroid not assigned to pilot."
        );
        require(
            launchList[pilot].cId == _charId,
            "Character not assigned to pilot."
        );
        // launchList entry must not have expired.
        require(
            block.timestamp <= launchList[pilot].expiresAt,
            "List entry expired."
        );

        // Check Pilot is cleared for launch.
        require(
            launchClearance[pilot] == true,
            "Pod is not cleared for launch."
        );
        require(launchStatus[_podId] == false, "Failure to launch.");

        // Launch pod.
        _launchPod(_podId);
        // Distribute assets to pilot.
        astrContract.fatesAssetTransfer(_astrId, pilot);
        charContract.fatesAssetTransfer(_charId, pilot);
    }

    /*
     * @dev
     *      Check a pod's launch status.
     * @params
     *      _id - Id of pod.
     */
    function hasLaunched(uint256 _id) public view returns (bool) {
        return launchStatus[_id];
    }

    /*
     * @dev
     *      Read the URI to a pod's metadata.
     * @params
     *      _id - Id of pod.
     */
    function uri(uint256 _id) public view override returns (string memory) {
        if (launchStatus[_id] == true) {
            return string(abi.encodePacked(baseURI, launchedURI));
        }
        return string(abi.encodePacked(baseURI, unlaunchedURI));
    }

    /*
     * @dev
     *      Write the base URI to a pod's metadata.
     * @params
     *      _uri - Base domain (w/o trailing slash).
     */
    function setBaseURI(string memory _baseuri) external onlyAdmin {
        baseURI = _baseuri;
    }

    /*
     * @dev
     *      Write the launched URI to a pod's metadata.
     *      Note: Can use the ERC1155 {id}, per-token substitution.
     * @params
     *      _suffix - Suffix link to launched state metadata JSON file (with trailing slash).
     */
    function setLaunchedURI(string memory _suffix) external onlyAdmin {
        launchedURI = _suffix;
    }

    /*
     * @dev
     *      Write the launched URI to a pod's metadata.
     *      Note: Can use the ERC1155 {id}, per-token substitution.
     * @params
     *      _suffix - Suffix link to unlaunched state metadata JSON file (with trailing slash).
     */
    function setUnLaunchedURI(string memory _suffix) external onlyAdmin {
        unlaunchedURI = _suffix;
    }

    /*
     * @dev
     *      Ensure marketplaces don't bypass creator royalty.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        override
        onlyAllowedOperatorApproval(operator)
    {
        super.setApprovalForAll(operator, approved);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        uint256 amount,
        bytes memory data
    ) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, amount, data);
    }

    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override onlyAllowedOperator(from) {
        super.safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    function owner()
        public
        view
        virtual
        override(Ownable, RevokableOperatorFilterer)
        returns (address)
    {
        return Ownable.owner();
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC1155, AccessControl, ERC2981Base)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_root","type":"address"},{"internalType":"address","name":"_distributor","type":"address"},{"internalType":"address","name":"_astrContract","type":"address"},{"internalType":"address","name":"_charContract","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"},{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"string","name":"_launchedURI","type":"string"},{"internalType":"string","name":"_unlaunchedURI","type":"string"},{"internalType":"uint256","name":"_royalty","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyRevoked","type":"error"},{"inputs":[],"name":"OnlyOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DISTRIBUTOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"address","name":"_pilot","type":"address"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pilot","type":"address"},{"internalType":"uint256","name":"_charId","type":"uint256"},{"internalType":"uint256","name":"_astrId","type":"uint256"}],"name":"addToLaunchList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allowList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlistValve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"evacPodClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_podId","type":"uint256"},{"internalType":"uint256","name":"_charId","type":"uint256"},{"internalType":"uint256","name":"_astrId","type":"uint256"}],"name":"evacPodLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"expiry","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":[],"name":"getRoyaltyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_id","type":"uint256"}],"name":"hasLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_id","type":"uint256"},{"internalType":"address","name":"_pilot","type":"address"}],"name":"isAllowListed","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":"address","name":"_pilot","type":"address"}],"name":"isLaunchListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperatorFilterRegistryRevoked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"launchClearance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchedURI","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"address","name":"_pilot","type":"address"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pilot","type":"address"}],"name":"removeFromLaunchList","outputs":[],"stateMutability":"nonpayable","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":[],"name":"revokeOperatorFilterRegistry","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":[],"name":"royalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","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":"tokenId","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":"_baseuri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contracturi","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_expiry","type":"uint256"}],"name":"setExpiry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pilot","type":"address"},{"internalType":"bool","name":"_clearance","type":"bool"}],"name":"setLaunchClearance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_suffix","type":"string"}],"name":"setLaunchedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_suffix","type":"string"}],"name":"setUnLaunchedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlaunchedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

6080604052610e10600d55600e805460ff191690553480156200002157600080fd5b5060405162003d5138038062003d5183398101604081905262000044916200051b565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001600980546200006a90620006a2565b80601f01602080910402602001604051908101604052809291908181526020018280546200009890620006a2565b8015620000e95780601f10620000bd57610100808354040283529160200191620000e9565b820191906000526020600020905b815481529060010190602001808311620000cb57829003601f168201915b5050505050620000ff816200032860201b60201c565b506200010b336200033a565b6daaeb6d7670e522a718067333cd4e3b15620002505780156200019e57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200017f57600080fd5b505af115801562000194573d6000803e3d6000fd5b5050505062000250565b6001600160a01b03821615620001ef5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000164565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200023657600080fd5b505af11580156200024b573d6000803e3d6000fd5b505050505b5062000260905060008c6200038c565b6200028c7f85faced7bde13e1a7dad704b895f006e704f207617d68166b31ba2d79624862d8b6200038c565b60066200029a888262000731565b506007620002a9878262000731565b506008620002b8868262000731565b506009620002c7858262000731565b50600a620002d6848262000731565b50600b620002e5838262000731565b50600c555050601580546001600160a01b039788166001600160a01b031991821617909155601680549690971695169490941790945550620007fd945050505050565b600262000336828262000731565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008281526003602090815260408083206001600160a01b038516845290915290205462000336908390839060ff16620003365760008281526003602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620003f53390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b80516001600160a01b03811681146200045157600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200047e57600080fd5b81516001600160401b03808211156200049b576200049b62000456565b604051601f8301601f19908116603f01168101908282118183101715620004c657620004c662000456565b81604052838152602092508683858801011115620004e357600080fd5b600091505b83821015620005075785820183015181830184015290820190620004e8565b600093810190920192909252949350505050565b60008060008060008060008060008060006101608c8e0312156200053e57600080fd5b620005498c62000439565b9a506200055960208d0162000439565b99506200056960408d0162000439565b98506200057960608d0162000439565b60808d01519098506001600160401b038111156200059657600080fd5b620005a48e828f016200046c565b60a08e015190985090506001600160401b03811115620005c357600080fd5b620005d18e828f016200046c565b60c08e015190975090506001600160401b03811115620005f057600080fd5b620005fe8e828f016200046c565b60e08e015190965090506001600160401b038111156200061d57600080fd5b6200062b8e828f016200046c565b6101008e015190955090506001600160401b038111156200064b57600080fd5b620006598e828f016200046c565b6101208e015190945090506001600160401b038111156200067957600080fd5b620006878e828f016200046c565b9250506101408c015190509295989b509295989b9093969950565b600181811c90821680620006b757607f821691505b602082108103620006d857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200072c57600081815260208120601f850160051c81016020861015620007075750805b601f850160051c820191505b81811015620007285782815560010162000713565b5050505b505050565b81516001600160401b038111156200074d576200074d62000456565b62000765816200075e8454620006a2565b84620006de565b602080601f8311600181146200079d5760008415620007845750858301515b600019600386901b1c1916600185901b17855562000728565b600085815260208120601f198616915b82811015620007ce57888601518255948401946001909101908401620007ad565b5085821015620007ed5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b613544806200080d6000396000f3fe608060405234801561001057600080fd5b50600436106103415760003560e01c8063715018a6116101b8578063a217fddf11610104578063da728711116100a2578063e985e9c51161007c578063e985e9c51461073e578063ecba222a1461077a578063f242432a1461078c578063f2fde38b1461079f57600080fd5b8063da7287111461071a578063e184c9be1461072d578063e8a3d4851461073657600080fd5b8063afdc65e5116100de578063afdc65e5146106c9578063b3d011b6146106d1578063bbd50604146106e4578063d547741f1461070757600080fd5b8063a217fddf1461069b578063a22cb465146106a3578063ad8a8f53146106b657600080fd5b80638c7ea24b11610171578063938e3d7b1161014b578063938e3d7b1461065857806393bfc2071461066b57806395d89b411461067e5780639c26149f1461068657600080fd5b80638c7ea24b1461062a5780638da5cb5b1461063d57806391d148541461064557600080fd5b8063715018a6146105be57806376e12868146105c6578063820bdcdc146105d957806384207565146105e157806384c2c41c146105f457806384de1d4c1461060757600080fd5b80632f2ff15d1161029257806352546aeb116102305780635ef9432a1161020a5780635ef9432a1461056257806362a6d1971461056a5780636c0360eb146105935780636fd020b51461059b57600080fd5b806352546aeb1461052f57806355f804b3146105425780635c975abb1461055557600080fd5b806341f434341161026c57806341f43434146104c75780634641a9bf146104f45780634ce3bf8d146105075780634e1273f41461050f57600080fd5b80632f2ff15d1461049957806335a6907a146104ac57806336568abe146104b457600080fd5b80630e89341c116102ff57806329ee566c116102d957806329ee566c146104385780632a55205a146104415780632e20a28f146104735780632eb2c2d61461048657600080fd5b80630e89341c146103ef57806316c38b3c14610402578063248a9ca31461041557600080fd5b8062fdd58e1461034657806301cceb381461036c57806301ffc9a71461038157806304bd5f82146103a457806306fdde03146103c75780630d112049146103dc575b600080fd5b610359610354366004612909565b6107b2565b6040519081526020015b60405180910390f35b61037f61037a366004612933565b61084b565b005b61039461038f366004612962565b610877565b6040519015158152602001610363565b6103946103b236600461297f565b60126020526000908152604090205460ff1681565b6103cf610882565b60405161036391906129ea565b61037f6103ea3660046129fd565b610910565b6103cf6103fd366004612933565b610a2b565b61037f610410366004612a37565b610a89565b610359610423366004612933565b60009081526003602052604090206001015490565b610359600c5481565b61045461044f366004612a54565b610ac3565b604080516001600160a01b039093168352602083019190915201610363565b61037f610481366004612b17565b610b18565b61037f610494366004612c1d565b610b4f565b61037f6104a73660046129fd565b610c47565b6103cf610c71565b61037f6104c23660046129fd565b610c7e565b6104dc6daaeb6d7670e522a718067333cd4e81565b6040516001600160a01b039091168152602001610363565b61037f610502366004612cc7565b610cf8565b6103cf610d3c565b61052261051d366004612cfe565b610d49565b6040516103639190612dfa565b61037f61053d366004612e0d565b610e73565b61037f610550366004612b17565b610fe6565b600e546103949060ff1681565b61037f611019565b6104dc610578366004612933565b6011602052600090815260409020546001600160a01b031681565b6103cf611092565b6103946105a9366004612933565b60106020526000908152604090205460ff1681565b61037f61109f565b61037f6105d4366004612e40565b6110b3565b600c54610359565b61037f6105ef3660046129fd565b611427565b6103946106023660046129fd565b6114e7565b61039461061536600461297f565b600f6020526000908152604090205460ff1681565b61037f610638366004612909565b611515565b6104dc611546565b6103946106533660046129fd565b61155f565b61037f610666366004612b17565b61158a565b61037f610679366004612b17565b6115bd565b6103cf6115f0565b6103596000805160206134ef83398151915281565b610359600081565b61037f6106b1366004612cc7565b6115fd565b61037f6106c436600461297f565b6116da565b6103cf611729565b61037f6106df366004612933565b611736565b6103946106f2366004612933565b60009081526014602052604090205460ff1690565b61037f6107153660046129fd565b611972565b61039461072836600461297f565b611997565b610359600d5481565b6103cf6119f2565b61039461074c366004612e6c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b600454600160a01b900460ff16610394565b61037f61079a366004612e96565b611a84565b61037f6107ad36600461297f565b611b6f565b60006001600160a01b0383166108225760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b61085660003361155f565b6108725760405162461bcd60e51b815260040161081990612efb565b600d55565b600061084582611be8565b6006805461088f90612f2a565b80601f01602080910402602001604051908101604052809291908181526020018280546108bb90612f2a565b80156109085780601f106108dd57610100808354040283529160200191610908565b820191906000526020600020905b8154815290600101906020018083116108eb57829003601f168201915b505050505081565b6000805160206134ef83398151915261092881611c0d565b60008381526010602052604090205460ff161561097e5760405162461bcd60e51b81526020600482015260146024820152732837b21030b63932b0b23c9031b630b4b6b2b21760611b6044820152606401610819565b6001600160a01b0382166000908152600f602052604090205460ff16156109e75760405162461bcd60e51b815260206004820152601760248201527f4164647265737320616c7265616479206c69737465642e0000000000000000006044820152606401610819565b506001600160a01b03166000818152600f60209081526040808320805460ff19166001179055938252601190529190912080546001600160a01b0319169091179055565b60008181526014602052604090205460609060ff161515600103610a74576009600a604051602001610a5e929190612fd7565b6040516020818303038152906040529050919050565b6009600b604051602001610a5e929190612fd7565b610a9460003361155f565b610ab05760405162461bcd60e51b815260040161081990612efb565b600e805460ff1916911515919091179055565b604080518082019091526005546001600160a01b038116808352600160a01b90910462ffffff1660208301819052909160009161271090610b049086613002565b610b0e9190613021565b9150509250929050565b610b2360003361155f565b610b3f5760405162461bcd60e51b815260040161081990612efb565b600a610b4b8282613089565b5050565b6004548590600160a01b900460ff16158015610b7957506daaeb6d7670e522a718067333cd4e3b15155b15610c3257336001600160a01b03821603610ba057610b9b8686868686611c17565b610c3f565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610bef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c139190613149565b610c3257604051633b79c77360e21b8152336004820152602401610819565b610c3f8686868686611c17565b505050505050565b600082815260036020526040902060010154610c6281611c0d565b610c6c8383611c63565b505050565b6008805461088f90612f2a565b6001600160a01b0381163314610cee5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610819565b610b4b8282611ce9565b6000805160206134ef833981519152610d1081611c0d565b506001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b600a805461088f90612f2a565b60608151835114610dae5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610819565b6000835167ffffffffffffffff811115610dca57610dca612a76565b604051908082528060200260200182016040528015610df3578160200160208202803683370190505b50905060005b8451811015610e6b57610e3e858281518110610e1757610e17613166565b6020026020010151858381518110610e3157610e31613166565b60200260200101516107b2565b828281518110610e5057610e50613166565b6020908102919091010152610e648161317c565b9050610df9565b509392505050565b6000805160206134ef833981519152610e8b81611c0d565b6001600160a01b03841660009081526012602052604090205460ff161515600114610ef85760405162461bcd60e51b815260206004820152601a60248201527f4164647265737320646f65736e2774206f776e206120706f642e0000000000006044820152606401610819565b6001600160a01b03841660009081526013602052604090206003015460ff1615610f645760405162461bcd60e51b815260206004820152601a60248201527f4164647265737320646f65736e2774206f776e206120706f642e0000000000006044820152606401610819565b6040518060800160405280838152602001848152602001600d5442610f899190613195565b8152600160209182018190526001600160a01b0396909616600090815260138252604090819020835181559183015196820196909655948101516002860155606001516003909401805460ff191694151594909417909355505050565b610ff160003361155f565b61100d5760405162461bcd60e51b815260040161081990612efb565b6009610b4b8282613089565b611021611546565b6001600160a01b0316336001600160a01b03161461105257604051635fc483c560e01b815260040160405180910390fd5b600454600160a01b900460ff161561107d5760405163905e710760e01b815260040160405180910390fd5b6004805460ff60a01b1916600160a01b179055565b6009805461088f90612f2a565b6110a7611d50565b6110b16000611daf565b565b600e54610100900460ff16156111015760405162461bcd60e51b81526020600482015260136024820152722737903932b1bab939b4bb329031b0b636399760691b6044820152606401610819565b600e805461ff001981166101001790915560ff16156111575760405162461bcd60e51b815260206004820152601260248201527122bc37b23ab99034b99037b7103437b6321760711b6044820152606401610819565b3360008181526013602052604090205482146111b55760405162461bcd60e51b815260206004820152601f60248201527f41737465726f6964206e6f742061737369676e656420746f2070696c6f742e006044820152606401610819565b6001600160a01b038116600090815260136020526040902060010154831461121f5760405162461bcd60e51b815260206004820181905260248201527f436861726163746572206e6f742061737369676e656420746f2070696c6f742e6044820152606401610819565b6001600160a01b0381166000908152601360205260409020600201544211156112805760405162461bcd60e51b81526020600482015260136024820152722634b9ba1032b73a393c9032bc3834b932b21760691b6044820152606401610819565b6001600160a01b03811660009081526012602052604090205460ff1615156001146112ed5760405162461bcd60e51b815260206004820152601e60248201527f506f64206973206e6f7420636c656172656420666f72206c61756e63682e00006044820152606401610819565b60008481526014602052604090205460ff16156113415760405162461bcd60e51b81526020600482015260126024820152712330b4b63ab932903a37903630bab731b41760711b6044820152606401610819565b61134a84611e01565b60155460405163db779f3b60e01b8152600481018490526001600160a01b0383811660248301529091169063db779f3b90604401600060405180830381600087803b15801561139857600080fd5b505af11580156113ac573d6000803e3d6000fd5b505060165460405163db779f3b60e01b8152600481018790526001600160a01b038581166024830152909116925063db779f3b9150604401600060405180830381600087803b1580156113fe57600080fd5b505af1158015611412573d6000803e3d6000fd5b5050600e805461ff0019169055505050505050565b6000805160206134ef83398151915261143f81611c0d565b6001600160a01b0382166000908152600f602052604090205460ff1615156001146114ac5760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206e6f7420616c6c6f6361746564206120706f642e000000006044820152606401610819565b506001600160a01b03166000908152600f60209081526040808320805460ff19169055928252601190522080546001600160a01b0319169055565b60008281526011602052604081205481906001600160a01b0380851691160361150e575060015b9392505050565b61152060003361155f565b61153c5760405162461bcd60e51b815260040161081990612efb565b610b4b8282611e38565b600061155a6004546001600160a01b031690565b905090565b60009182526003602090815260408084206001600160a01b0393909316845291905290205460ff1690565b61159560003361155f565b6115b15760405162461bcd60e51b815260040161081990612efb565b6008610b4b8282613089565b6115c860003361155f565b6115e45760405162461bcd60e51b815260040161081990612efb565b600b610b4b8282613089565b6007805461088f90612f2a565b6004548290600160a01b900460ff1615801561162757506daaeb6d7670e522a718067333cd4e3b15155b156116d057604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611684573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a89190613149565b6116d057604051633b79c77360e21b81526001600160a01b0382166004820152602401610819565b610c6c8383611ed4565b6000805160206134ef8339815191526116f281611c0d565b506001600160a01b03166000908152601360205260408120818155600181018290556002810191909155600301805460ff19169055565b600b805461088f90612f2a565b600e54610100900460ff16156117845760405162461bcd60e51b81526020600482015260136024820152722737903932b1bab939b4bb329031b0b636399760691b6044820152606401610819565b600e805461ff001981166101001790915560ff16156117da5760405162461bcd60e51b815260206004820152601260248201527122bc37b23ab99034b99037b7103437b6321760711b6044820152606401610819565b60008181526010602052604090205460ff16156118305760405162461bcd60e51b81526020600482015260146024820152732837b21030b63932b0b23c9031b630b4b6b2b21760611b6044820152606401610819565b60008181526011602052604090205433906001600160a01b031681146118a45760405162461bcd60e51b815260206004820152602360248201527f41646472657373206973206e6f74206c697374656420666f722074686973207060448201526237b21760e91b6064820152608401610819565b6001600160a01b03811660009081526012602052604090205460ff161561190d5760405162461bcd60e51b815260206004820152601b60248201527f4164647265737320616c7265616479206f776e73206120706f642e00000000006044820152606401610819565b6001600160a01b03811660009081526012602090815260408083208054600160ff199182168117909255868552601084528285208054909116821790558151928301909152918152611963918391859190611edf565b5050600e805461ff0019169055565b60008281526003602052604090206001015461198d81611c0d565b610c6c8383611ce9565b6001600160a01b038116600090815260136020526040812060030154819060ff16151560011480156119e457506001600160a01b0383166000908152601360205260409020600201544211155b156108455750600192915050565b606060088054611a0190612f2a565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2d90612f2a565b8015611a7a5780601f10611a4f57610100808354040283529160200191611a7a565b820191906000526020600020905b815481529060010190602001808311611a5d57829003601f168201915b5050505050905090565b6004548590600160a01b900460ff16158015611aae57506daaeb6d7670e522a718067333cd4e3b15155b15611b6257336001600160a01b03821603611ad057610b9b8686868686611ff3565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611b1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b439190613149565b611b6257604051633b79c77360e21b8152336004820152602401610819565b610c3f8686868686611ff3565b611b77611d50565b6001600160a01b038116611bdc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610819565b611be581611daf565b50565b60006001600160e01b0319821663152a902d60e11b1480610845575061084582612038565b611be5813361205d565b6001600160a01b038516331480611c335750611c33853361074c565b611c4f5760405162461bcd60e51b8152600401610819906131a8565b611c5c85858585856120c1565b5050505050565b611c6d828261155f565b610b4b5760008281526003602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611ca53390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611cf3828261155f565b15610b4b5760008281526003602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b33611d59611546565b6001600160a01b0316146110b15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610819565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008181526014602052604090205460ff1615611e1d57600080fd5b6000908152601460205260409020805460ff19166001179055565b612710811115611e8a5760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f20686967680000000000006044820152606401610819565b604080518082019091526001600160a01b0390921680835262ffffff909116602090920182905260058054600160a01b9093026001600160b81b0319909316909117919091179055565b610b4b338383612296565b6001600160a01b038416611f3f5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610819565b336000611f4b85612376565b90506000611f5885612376565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290611f8a908490613195565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611fea836000898989896123c1565b50505050505050565b6001600160a01b03851633148061200f575061200f853361074c565b61202b5760405162461bcd60e51b8152600401610819906131a8565b611c5c858585858561251c565b60006001600160e01b03198216637965db0b60e01b1480610845575061084582612646565b612067828261155f565b610b4b5761207f816001600160a01b03166014612696565b61208a836020612696565b60405160200161209b9291906131f7565b60408051601f198184030181529082905262461bcd60e51b8252610819916004016129ea565b81518351146121235760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610819565b6001600160a01b0384166121495760405162461bcd60e51b81526004016108199061326c565b3360005b845181101561223057600085828151811061216a5761216a613166565b60200260200101519050600085838151811061218857612188613166565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156121d85760405162461bcd60e51b8152600401610819906132b1565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290612215908490613195565b92505081905550505050806122299061317c565b905061214d565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516122809291906132fb565b60405180910390a4610c3f818787878787612832565b816001600160a01b0316836001600160a01b0316036123095760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610819565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106123b0576123b0613166565b602090810291909101015292915050565b6001600160a01b0384163b15610c3f5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906124059089908990889088908890600401613329565b6020604051808303816000875af1925050508015612440575060408051601f3d908101601f1916820190925261243d9181019061336e565b60015b6124ec5761244c61338b565b806308c379a00361248557506124606133a7565b8061246b5750612487565b8060405162461bcd60e51b815260040161081991906129ea565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610819565b6001600160e01b0319811663f23a6e6160e01b14611fea5760405162461bcd60e51b815260040161081990613431565b6001600160a01b0384166125425760405162461bcd60e51b81526004016108199061326c565b33600061254e85612376565b9050600061255b85612376565b90506000868152602081815260408083206001600160a01b038c1684529091529020548581101561259e5760405162461bcd60e51b8152600401610819906132b1565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906125db908490613195565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461263b848a8a8a8a8a6123c1565b505050505050505050565b60006001600160e01b03198216636cdb3d1360e11b148061267757506001600160e01b031982166303a24d0760e21b145b8061084557506301ffc9a760e01b6001600160e01b0319831614610845565b606060006126a5836002613002565b6126b0906002613195565b67ffffffffffffffff8111156126c8576126c8612a76565b6040519080825280601f01601f1916602001820160405280156126f2576020820181803683370190505b509050600360fc1b8160008151811061270d5761270d613166565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061273c5761273c613166565b60200101906001600160f81b031916908160001a9053506000612760846002613002565b61276b906001613195565b90505b60018111156127e3576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061279f5761279f613166565b1a60f81b8282815181106127b5576127b5613166565b60200101906001600160f81b031916908160001a90535060049490941c936127dc81613479565b905061276e565b50831561150e5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610819565b6001600160a01b0384163b15610c3f5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906128769089908990889088908890600401613490565b6020604051808303816000875af19250505080156128b1575060408051601f3d908101601f191682019092526128ae9181019061336e565b60015b6128bd5761244c61338b565b6001600160e01b0319811663bc197c8160e01b14611fea5760405162461bcd60e51b815260040161081990613431565b80356001600160a01b038116811461290457600080fd5b919050565b6000806040838503121561291c57600080fd5b612925836128ed565b946020939093013593505050565b60006020828403121561294557600080fd5b5035919050565b6001600160e01b031981168114611be557600080fd5b60006020828403121561297457600080fd5b813561150e8161294c565b60006020828403121561299157600080fd5b61150e826128ed565b60005b838110156129b557818101518382015260200161299d565b50506000910152565b600081518084526129d681602086016020860161299a565b601f01601f19169290920160200192915050565b60208152600061150e60208301846129be565b60008060408385031215612a1057600080fd5b82359150612a20602084016128ed565b90509250929050565b8015158114611be557600080fd5b600060208284031215612a4957600080fd5b813561150e81612a29565b60008060408385031215612a6757600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715612ab257612ab2612a76565b6040525050565b600067ffffffffffffffff831115612ad357612ad3612a76565b604051612aea601f8501601f191660200182612a8c565b809150838152848484011115612aff57600080fd5b83836020830137600060208583010152509392505050565b600060208284031215612b2957600080fd5b813567ffffffffffffffff811115612b4057600080fd5b8201601f81018413612b5157600080fd5b612b6084823560208401612ab9565b949350505050565b600067ffffffffffffffff821115612b8257612b82612a76565b5060051b60200190565b600082601f830112612b9d57600080fd5b81356020612baa82612b68565b604051612bb78282612a8c565b83815260059390931b8501820192828101915086841115612bd757600080fd5b8286015b84811015612bf25780358352918301918301612bdb565b509695505050505050565b600082601f830112612c0e57600080fd5b61150e83833560208501612ab9565b600080600080600060a08688031215612c3557600080fd5b612c3e866128ed565b9450612c4c602087016128ed565b9350604086013567ffffffffffffffff80821115612c6957600080fd5b612c7589838a01612b8c565b94506060880135915080821115612c8b57600080fd5b612c9789838a01612b8c565b93506080880135915080821115612cad57600080fd5b50612cba88828901612bfd565b9150509295509295909350565b60008060408385031215612cda57600080fd5b612ce3836128ed565b91506020830135612cf381612a29565b809150509250929050565b60008060408385031215612d1157600080fd5b823567ffffffffffffffff80821115612d2957600080fd5b818501915085601f830112612d3d57600080fd5b81356020612d4a82612b68565b604051612d578282612a8c565b83815260059390931b8501820192828101915089841115612d7757600080fd5b948201945b83861015612d9c57612d8d866128ed565b82529482019490820190612d7c565b96505086013592505080821115612db257600080fd5b50610b0e85828601612b8c565b600081518084526020808501945080840160005b83811015612def57815187529582019590820190600101612dd3565b509495945050505050565b60208152600061150e6020830184612dbf565b600080600060608486031215612e2257600080fd5b612e2b846128ed565b95602085013595506040909401359392505050565b600080600060608486031215612e5557600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612e7f57600080fd5b612e88836128ed565b9150612a20602084016128ed565b600080600080600060a08688031215612eae57600080fd5b612eb7866128ed565b9450612ec5602087016128ed565b93506040860135925060608601359150608086013567ffffffffffffffff811115612eef57600080fd5b612cba88828901612bfd565b6020808252601590820152742932b9ba3934b1ba32b2103a379030b236b4b7399760591b604082015260600190565b600181811c90821680612f3e57607f821691505b602082108103612f5e57634e487b7160e01b600052602260045260246000fd5b50919050565b60008154612f7181612f2a565b60018281168015612f895760018114612f9e57612fcd565b60ff1984168752821515830287019450612fcd565b8560005260208060002060005b85811015612fc45781548a820152908401908201612fab565b50505082870194505b5050505092915050565b6000612b60612fe68386612f64565b84612f64565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561301c5761301c612fec565b500290565b60008261303e57634e487b7160e01b600052601260045260246000fd5b500490565b601f821115610c6c57600081815260208120601f850160051c8101602086101561306a5750805b601f850160051c820191505b81811015610c3f57828155600101613076565b815167ffffffffffffffff8111156130a3576130a3612a76565b6130b7816130b18454612f2a565b84613043565b602080601f8311600181146130ec57600084156130d45750858301515b600019600386901b1c1916600185901b178555610c3f565b600085815260208120601f198616915b8281101561311b578886015182559484019460019091019084016130fc565b50858210156131395787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561315b57600080fd5b815161150e81612a29565b634e487b7160e01b600052603260045260246000fd5b60006001820161318e5761318e612fec565b5060010190565b8082018082111561084557610845612fec565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161322f81601785016020880161299a565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161326081602884016020880161299a565b01602801949350505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60408152600061330e6040830185612dbf565b82810360208401526133208185612dbf565b95945050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090613363908301846129be565b979650505050505050565b60006020828403121561338057600080fd5b815161150e8161294c565b600060033d11156133a45760046000803e5060005160e01c5b90565b600060443d10156133b55790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156133e557505050505090565b82850191508151818111156133fd5750505050505090565b843d87010160208285010111156134175750505050505090565b61342660208286010187612a8c565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60008161348857613488612fec565b506000190190565b6001600160a01b0386811682528516602082015260a0604082018190526000906134bc90830186612dbf565b82810360608401526134ce8186612dbf565b905082810360808401526134e281856129be565b9897505050505050505056fe85faced7bde13e1a7dad704b895f006e704f207617d68166b31ba2d79624862da2646970667358221220f42bb361d7985377d77f9cb1ce022d7610747fdd51289413f14a38d2bcfb4e4b64736f6c63430008100033000000000000000000000000c0f26f847002066a0ed9817fc7f2599553f8a16e000000000000000000000000deed7229ee94f86a9c6ac53436172b34120bf6b4000000000000000000000000bf826778e20274a33cc896275f3f01c97bca7b7100000000000000000000000034f3fc52d923d9340343464138aa394cd4f9e26e000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000004506f6473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003504f4400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103415760003560e01c8063715018a6116101b8578063a217fddf11610104578063da728711116100a2578063e985e9c51161007c578063e985e9c51461073e578063ecba222a1461077a578063f242432a1461078c578063f2fde38b1461079f57600080fd5b8063da7287111461071a578063e184c9be1461072d578063e8a3d4851461073657600080fd5b8063afdc65e5116100de578063afdc65e5146106c9578063b3d011b6146106d1578063bbd50604146106e4578063d547741f1461070757600080fd5b8063a217fddf1461069b578063a22cb465146106a3578063ad8a8f53146106b657600080fd5b80638c7ea24b11610171578063938e3d7b1161014b578063938e3d7b1461065857806393bfc2071461066b57806395d89b411461067e5780639c26149f1461068657600080fd5b80638c7ea24b1461062a5780638da5cb5b1461063d57806391d148541461064557600080fd5b8063715018a6146105be57806376e12868146105c6578063820bdcdc146105d957806384207565146105e157806384c2c41c146105f457806384de1d4c1461060757600080fd5b80632f2ff15d1161029257806352546aeb116102305780635ef9432a1161020a5780635ef9432a1461056257806362a6d1971461056a5780636c0360eb146105935780636fd020b51461059b57600080fd5b806352546aeb1461052f57806355f804b3146105425780635c975abb1461055557600080fd5b806341f434341161026c57806341f43434146104c75780634641a9bf146104f45780634ce3bf8d146105075780634e1273f41461050f57600080fd5b80632f2ff15d1461049957806335a6907a146104ac57806336568abe146104b457600080fd5b80630e89341c116102ff57806329ee566c116102d957806329ee566c146104385780632a55205a146104415780632e20a28f146104735780632eb2c2d61461048657600080fd5b80630e89341c146103ef57806316c38b3c14610402578063248a9ca31461041557600080fd5b8062fdd58e1461034657806301cceb381461036c57806301ffc9a71461038157806304bd5f82146103a457806306fdde03146103c75780630d112049146103dc575b600080fd5b610359610354366004612909565b6107b2565b6040519081526020015b60405180910390f35b61037f61037a366004612933565b61084b565b005b61039461038f366004612962565b610877565b6040519015158152602001610363565b6103946103b236600461297f565b60126020526000908152604090205460ff1681565b6103cf610882565b60405161036391906129ea565b61037f6103ea3660046129fd565b610910565b6103cf6103fd366004612933565b610a2b565b61037f610410366004612a37565b610a89565b610359610423366004612933565b60009081526003602052604090206001015490565b610359600c5481565b61045461044f366004612a54565b610ac3565b604080516001600160a01b039093168352602083019190915201610363565b61037f610481366004612b17565b610b18565b61037f610494366004612c1d565b610b4f565b61037f6104a73660046129fd565b610c47565b6103cf610c71565b61037f6104c23660046129fd565b610c7e565b6104dc6daaeb6d7670e522a718067333cd4e81565b6040516001600160a01b039091168152602001610363565b61037f610502366004612cc7565b610cf8565b6103cf610d3c565b61052261051d366004612cfe565b610d49565b6040516103639190612dfa565b61037f61053d366004612e0d565b610e73565b61037f610550366004612b17565b610fe6565b600e546103949060ff1681565b61037f611019565b6104dc610578366004612933565b6011602052600090815260409020546001600160a01b031681565b6103cf611092565b6103946105a9366004612933565b60106020526000908152604090205460ff1681565b61037f61109f565b61037f6105d4366004612e40565b6110b3565b600c54610359565b61037f6105ef3660046129fd565b611427565b6103946106023660046129fd565b6114e7565b61039461061536600461297f565b600f6020526000908152604090205460ff1681565b61037f610638366004612909565b611515565b6104dc611546565b6103946106533660046129fd565b61155f565b61037f610666366004612b17565b61158a565b61037f610679366004612b17565b6115bd565b6103cf6115f0565b6103596000805160206134ef83398151915281565b610359600081565b61037f6106b1366004612cc7565b6115fd565b61037f6106c436600461297f565b6116da565b6103cf611729565b61037f6106df366004612933565b611736565b6103946106f2366004612933565b60009081526014602052604090205460ff1690565b61037f6107153660046129fd565b611972565b61039461072836600461297f565b611997565b610359600d5481565b6103cf6119f2565b61039461074c366004612e6c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b600454600160a01b900460ff16610394565b61037f61079a366004612e96565b611a84565b61037f6107ad36600461297f565b611b6f565b60006001600160a01b0383166108225760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b61085660003361155f565b6108725760405162461bcd60e51b815260040161081990612efb565b600d55565b600061084582611be8565b6006805461088f90612f2a565b80601f01602080910402602001604051908101604052809291908181526020018280546108bb90612f2a565b80156109085780601f106108dd57610100808354040283529160200191610908565b820191906000526020600020905b8154815290600101906020018083116108eb57829003601f168201915b505050505081565b6000805160206134ef83398151915261092881611c0d565b60008381526010602052604090205460ff161561097e5760405162461bcd60e51b81526020600482015260146024820152732837b21030b63932b0b23c9031b630b4b6b2b21760611b6044820152606401610819565b6001600160a01b0382166000908152600f602052604090205460ff16156109e75760405162461bcd60e51b815260206004820152601760248201527f4164647265737320616c7265616479206c69737465642e0000000000000000006044820152606401610819565b506001600160a01b03166000818152600f60209081526040808320805460ff19166001179055938252601190529190912080546001600160a01b0319169091179055565b60008181526014602052604090205460609060ff161515600103610a74576009600a604051602001610a5e929190612fd7565b6040516020818303038152906040529050919050565b6009600b604051602001610a5e929190612fd7565b610a9460003361155f565b610ab05760405162461bcd60e51b815260040161081990612efb565b600e805460ff1916911515919091179055565b604080518082019091526005546001600160a01b038116808352600160a01b90910462ffffff1660208301819052909160009161271090610b049086613002565b610b0e9190613021565b9150509250929050565b610b2360003361155f565b610b3f5760405162461bcd60e51b815260040161081990612efb565b600a610b4b8282613089565b5050565b6004548590600160a01b900460ff16158015610b7957506daaeb6d7670e522a718067333cd4e3b15155b15610c3257336001600160a01b03821603610ba057610b9b8686868686611c17565b610c3f565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610bef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c139190613149565b610c3257604051633b79c77360e21b8152336004820152602401610819565b610c3f8686868686611c17565b505050505050565b600082815260036020526040902060010154610c6281611c0d565b610c6c8383611c63565b505050565b6008805461088f90612f2a565b6001600160a01b0381163314610cee5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610819565b610b4b8282611ce9565b6000805160206134ef833981519152610d1081611c0d565b506001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b600a805461088f90612f2a565b60608151835114610dae5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610819565b6000835167ffffffffffffffff811115610dca57610dca612a76565b604051908082528060200260200182016040528015610df3578160200160208202803683370190505b50905060005b8451811015610e6b57610e3e858281518110610e1757610e17613166565b6020026020010151858381518110610e3157610e31613166565b60200260200101516107b2565b828281518110610e5057610e50613166565b6020908102919091010152610e648161317c565b9050610df9565b509392505050565b6000805160206134ef833981519152610e8b81611c0d565b6001600160a01b03841660009081526012602052604090205460ff161515600114610ef85760405162461bcd60e51b815260206004820152601a60248201527f4164647265737320646f65736e2774206f776e206120706f642e0000000000006044820152606401610819565b6001600160a01b03841660009081526013602052604090206003015460ff1615610f645760405162461bcd60e51b815260206004820152601a60248201527f4164647265737320646f65736e2774206f776e206120706f642e0000000000006044820152606401610819565b6040518060800160405280838152602001848152602001600d5442610f899190613195565b8152600160209182018190526001600160a01b0396909616600090815260138252604090819020835181559183015196820196909655948101516002860155606001516003909401805460ff191694151594909417909355505050565b610ff160003361155f565b61100d5760405162461bcd60e51b815260040161081990612efb565b6009610b4b8282613089565b611021611546565b6001600160a01b0316336001600160a01b03161461105257604051635fc483c560e01b815260040160405180910390fd5b600454600160a01b900460ff161561107d5760405163905e710760e01b815260040160405180910390fd5b6004805460ff60a01b1916600160a01b179055565b6009805461088f90612f2a565b6110a7611d50565b6110b16000611daf565b565b600e54610100900460ff16156111015760405162461bcd60e51b81526020600482015260136024820152722737903932b1bab939b4bb329031b0b636399760691b6044820152606401610819565b600e805461ff001981166101001790915560ff16156111575760405162461bcd60e51b815260206004820152601260248201527122bc37b23ab99034b99037b7103437b6321760711b6044820152606401610819565b3360008181526013602052604090205482146111b55760405162461bcd60e51b815260206004820152601f60248201527f41737465726f6964206e6f742061737369676e656420746f2070696c6f742e006044820152606401610819565b6001600160a01b038116600090815260136020526040902060010154831461121f5760405162461bcd60e51b815260206004820181905260248201527f436861726163746572206e6f742061737369676e656420746f2070696c6f742e6044820152606401610819565b6001600160a01b0381166000908152601360205260409020600201544211156112805760405162461bcd60e51b81526020600482015260136024820152722634b9ba1032b73a393c9032bc3834b932b21760691b6044820152606401610819565b6001600160a01b03811660009081526012602052604090205460ff1615156001146112ed5760405162461bcd60e51b815260206004820152601e60248201527f506f64206973206e6f7420636c656172656420666f72206c61756e63682e00006044820152606401610819565b60008481526014602052604090205460ff16156113415760405162461bcd60e51b81526020600482015260126024820152712330b4b63ab932903a37903630bab731b41760711b6044820152606401610819565b61134a84611e01565b60155460405163db779f3b60e01b8152600481018490526001600160a01b0383811660248301529091169063db779f3b90604401600060405180830381600087803b15801561139857600080fd5b505af11580156113ac573d6000803e3d6000fd5b505060165460405163db779f3b60e01b8152600481018790526001600160a01b038581166024830152909116925063db779f3b9150604401600060405180830381600087803b1580156113fe57600080fd5b505af1158015611412573d6000803e3d6000fd5b5050600e805461ff0019169055505050505050565b6000805160206134ef83398151915261143f81611c0d565b6001600160a01b0382166000908152600f602052604090205460ff1615156001146114ac5760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206e6f7420616c6c6f6361746564206120706f642e000000006044820152606401610819565b506001600160a01b03166000908152600f60209081526040808320805460ff19169055928252601190522080546001600160a01b0319169055565b60008281526011602052604081205481906001600160a01b0380851691160361150e575060015b9392505050565b61152060003361155f565b61153c5760405162461bcd60e51b815260040161081990612efb565b610b4b8282611e38565b600061155a6004546001600160a01b031690565b905090565b60009182526003602090815260408084206001600160a01b0393909316845291905290205460ff1690565b61159560003361155f565b6115b15760405162461bcd60e51b815260040161081990612efb565b6008610b4b8282613089565b6115c860003361155f565b6115e45760405162461bcd60e51b815260040161081990612efb565b600b610b4b8282613089565b6007805461088f90612f2a565b6004548290600160a01b900460ff1615801561162757506daaeb6d7670e522a718067333cd4e3b15155b156116d057604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611684573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a89190613149565b6116d057604051633b79c77360e21b81526001600160a01b0382166004820152602401610819565b610c6c8383611ed4565b6000805160206134ef8339815191526116f281611c0d565b506001600160a01b03166000908152601360205260408120818155600181018290556002810191909155600301805460ff19169055565b600b805461088f90612f2a565b600e54610100900460ff16156117845760405162461bcd60e51b81526020600482015260136024820152722737903932b1bab939b4bb329031b0b636399760691b6044820152606401610819565b600e805461ff001981166101001790915560ff16156117da5760405162461bcd60e51b815260206004820152601260248201527122bc37b23ab99034b99037b7103437b6321760711b6044820152606401610819565b60008181526010602052604090205460ff16156118305760405162461bcd60e51b81526020600482015260146024820152732837b21030b63932b0b23c9031b630b4b6b2b21760611b6044820152606401610819565b60008181526011602052604090205433906001600160a01b031681146118a45760405162461bcd60e51b815260206004820152602360248201527f41646472657373206973206e6f74206c697374656420666f722074686973207060448201526237b21760e91b6064820152608401610819565b6001600160a01b03811660009081526012602052604090205460ff161561190d5760405162461bcd60e51b815260206004820152601b60248201527f4164647265737320616c7265616479206f776e73206120706f642e00000000006044820152606401610819565b6001600160a01b03811660009081526012602090815260408083208054600160ff199182168117909255868552601084528285208054909116821790558151928301909152918152611963918391859190611edf565b5050600e805461ff0019169055565b60008281526003602052604090206001015461198d81611c0d565b610c6c8383611ce9565b6001600160a01b038116600090815260136020526040812060030154819060ff16151560011480156119e457506001600160a01b0383166000908152601360205260409020600201544211155b156108455750600192915050565b606060088054611a0190612f2a565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2d90612f2a565b8015611a7a5780601f10611a4f57610100808354040283529160200191611a7a565b820191906000526020600020905b815481529060010190602001808311611a5d57829003601f168201915b5050505050905090565b6004548590600160a01b900460ff16158015611aae57506daaeb6d7670e522a718067333cd4e3b15155b15611b6257336001600160a01b03821603611ad057610b9b8686868686611ff3565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611b1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b439190613149565b611b6257604051633b79c77360e21b8152336004820152602401610819565b610c3f8686868686611ff3565b611b77611d50565b6001600160a01b038116611bdc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610819565b611be581611daf565b50565b60006001600160e01b0319821663152a902d60e11b1480610845575061084582612038565b611be5813361205d565b6001600160a01b038516331480611c335750611c33853361074c565b611c4f5760405162461bcd60e51b8152600401610819906131a8565b611c5c85858585856120c1565b5050505050565b611c6d828261155f565b610b4b5760008281526003602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611ca53390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611cf3828261155f565b15610b4b5760008281526003602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b33611d59611546565b6001600160a01b0316146110b15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610819565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008181526014602052604090205460ff1615611e1d57600080fd5b6000908152601460205260409020805460ff19166001179055565b612710811115611e8a5760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f20686967680000000000006044820152606401610819565b604080518082019091526001600160a01b0390921680835262ffffff909116602090920182905260058054600160a01b9093026001600160b81b0319909316909117919091179055565b610b4b338383612296565b6001600160a01b038416611f3f5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610819565b336000611f4b85612376565b90506000611f5885612376565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290611f8a908490613195565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611fea836000898989896123c1565b50505050505050565b6001600160a01b03851633148061200f575061200f853361074c565b61202b5760405162461bcd60e51b8152600401610819906131a8565b611c5c858585858561251c565b60006001600160e01b03198216637965db0b60e01b1480610845575061084582612646565b612067828261155f565b610b4b5761207f816001600160a01b03166014612696565b61208a836020612696565b60405160200161209b9291906131f7565b60408051601f198184030181529082905262461bcd60e51b8252610819916004016129ea565b81518351146121235760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610819565b6001600160a01b0384166121495760405162461bcd60e51b81526004016108199061326c565b3360005b845181101561223057600085828151811061216a5761216a613166565b60200260200101519050600085838151811061218857612188613166565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156121d85760405162461bcd60e51b8152600401610819906132b1565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290612215908490613195565b92505081905550505050806122299061317c565b905061214d565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516122809291906132fb565b60405180910390a4610c3f818787878787612832565b816001600160a01b0316836001600160a01b0316036123095760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610819565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106123b0576123b0613166565b602090810291909101015292915050565b6001600160a01b0384163b15610c3f5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906124059089908990889088908890600401613329565b6020604051808303816000875af1925050508015612440575060408051601f3d908101601f1916820190925261243d9181019061336e565b60015b6124ec5761244c61338b565b806308c379a00361248557506124606133a7565b8061246b5750612487565b8060405162461bcd60e51b815260040161081991906129ea565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610819565b6001600160e01b0319811663f23a6e6160e01b14611fea5760405162461bcd60e51b815260040161081990613431565b6001600160a01b0384166125425760405162461bcd60e51b81526004016108199061326c565b33600061254e85612376565b9050600061255b85612376565b90506000868152602081815260408083206001600160a01b038c1684529091529020548581101561259e5760405162461bcd60e51b8152600401610819906132b1565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906125db908490613195565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461263b848a8a8a8a8a6123c1565b505050505050505050565b60006001600160e01b03198216636cdb3d1360e11b148061267757506001600160e01b031982166303a24d0760e21b145b8061084557506301ffc9a760e01b6001600160e01b0319831614610845565b606060006126a5836002613002565b6126b0906002613195565b67ffffffffffffffff8111156126c8576126c8612a76565b6040519080825280601f01601f1916602001820160405280156126f2576020820181803683370190505b509050600360fc1b8160008151811061270d5761270d613166565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061273c5761273c613166565b60200101906001600160f81b031916908160001a9053506000612760846002613002565b61276b906001613195565b90505b60018111156127e3576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061279f5761279f613166565b1a60f81b8282815181106127b5576127b5613166565b60200101906001600160f81b031916908160001a90535060049490941c936127dc81613479565b905061276e565b50831561150e5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610819565b6001600160a01b0384163b15610c3f5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906128769089908990889088908890600401613490565b6020604051808303816000875af19250505080156128b1575060408051601f3d908101601f191682019092526128ae9181019061336e565b60015b6128bd5761244c61338b565b6001600160e01b0319811663bc197c8160e01b14611fea5760405162461bcd60e51b815260040161081990613431565b80356001600160a01b038116811461290457600080fd5b919050565b6000806040838503121561291c57600080fd5b612925836128ed565b946020939093013593505050565b60006020828403121561294557600080fd5b5035919050565b6001600160e01b031981168114611be557600080fd5b60006020828403121561297457600080fd5b813561150e8161294c565b60006020828403121561299157600080fd5b61150e826128ed565b60005b838110156129b557818101518382015260200161299d565b50506000910152565b600081518084526129d681602086016020860161299a565b601f01601f19169290920160200192915050565b60208152600061150e60208301846129be565b60008060408385031215612a1057600080fd5b82359150612a20602084016128ed565b90509250929050565b8015158114611be557600080fd5b600060208284031215612a4957600080fd5b813561150e81612a29565b60008060408385031215612a6757600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715612ab257612ab2612a76565b6040525050565b600067ffffffffffffffff831115612ad357612ad3612a76565b604051612aea601f8501601f191660200182612a8c565b809150838152848484011115612aff57600080fd5b83836020830137600060208583010152509392505050565b600060208284031215612b2957600080fd5b813567ffffffffffffffff811115612b4057600080fd5b8201601f81018413612b5157600080fd5b612b6084823560208401612ab9565b949350505050565b600067ffffffffffffffff821115612b8257612b82612a76565b5060051b60200190565b600082601f830112612b9d57600080fd5b81356020612baa82612b68565b604051612bb78282612a8c565b83815260059390931b8501820192828101915086841115612bd757600080fd5b8286015b84811015612bf25780358352918301918301612bdb565b509695505050505050565b600082601f830112612c0e57600080fd5b61150e83833560208501612ab9565b600080600080600060a08688031215612c3557600080fd5b612c3e866128ed565b9450612c4c602087016128ed565b9350604086013567ffffffffffffffff80821115612c6957600080fd5b612c7589838a01612b8c565b94506060880135915080821115612c8b57600080fd5b612c9789838a01612b8c565b93506080880135915080821115612cad57600080fd5b50612cba88828901612bfd565b9150509295509295909350565b60008060408385031215612cda57600080fd5b612ce3836128ed565b91506020830135612cf381612a29565b809150509250929050565b60008060408385031215612d1157600080fd5b823567ffffffffffffffff80821115612d2957600080fd5b818501915085601f830112612d3d57600080fd5b81356020612d4a82612b68565b604051612d578282612a8c565b83815260059390931b8501820192828101915089841115612d7757600080fd5b948201945b83861015612d9c57612d8d866128ed565b82529482019490820190612d7c565b96505086013592505080821115612db257600080fd5b50610b0e85828601612b8c565b600081518084526020808501945080840160005b83811015612def57815187529582019590820190600101612dd3565b509495945050505050565b60208152600061150e6020830184612dbf565b600080600060608486031215612e2257600080fd5b612e2b846128ed565b95602085013595506040909401359392505050565b600080600060608486031215612e5557600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612e7f57600080fd5b612e88836128ed565b9150612a20602084016128ed565b600080600080600060a08688031215612eae57600080fd5b612eb7866128ed565b9450612ec5602087016128ed565b93506040860135925060608601359150608086013567ffffffffffffffff811115612eef57600080fd5b612cba88828901612bfd565b6020808252601590820152742932b9ba3934b1ba32b2103a379030b236b4b7399760591b604082015260600190565b600181811c90821680612f3e57607f821691505b602082108103612f5e57634e487b7160e01b600052602260045260246000fd5b50919050565b60008154612f7181612f2a565b60018281168015612f895760018114612f9e57612fcd565b60ff1984168752821515830287019450612fcd565b8560005260208060002060005b85811015612fc45781548a820152908401908201612fab565b50505082870194505b5050505092915050565b6000612b60612fe68386612f64565b84612f64565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561301c5761301c612fec565b500290565b60008261303e57634e487b7160e01b600052601260045260246000fd5b500490565b601f821115610c6c57600081815260208120601f850160051c8101602086101561306a5750805b601f850160051c820191505b81811015610c3f57828155600101613076565b815167ffffffffffffffff8111156130a3576130a3612a76565b6130b7816130b18454612f2a565b84613043565b602080601f8311600181146130ec57600084156130d45750858301515b600019600386901b1c1916600185901b178555610c3f565b600085815260208120601f198616915b8281101561311b578886015182559484019460019091019084016130fc565b50858210156131395787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561315b57600080fd5b815161150e81612a29565b634e487b7160e01b600052603260045260246000fd5b60006001820161318e5761318e612fec565b5060010190565b8082018082111561084557610845612fec565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161322f81601785016020880161299a565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161326081602884016020880161299a565b01602801949350505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60408152600061330e6040830185612dbf565b82810360208401526133208185612dbf565b95945050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090613363908301846129be565b979650505050505050565b60006020828403121561338057600080fd5b815161150e8161294c565b600060033d11156133a45760046000803e5060005160e01c5b90565b600060443d10156133b55790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156133e557505050505090565b82850191508151818111156133fd5750505050505090565b843d87010160208285010111156134175750505050505090565b61342660208286010187612a8c565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60008161348857613488612fec565b506000190190565b6001600160a01b0386811682528516602082015260a0604082018190526000906134bc90830186612dbf565b82810360608401526134ce8186612dbf565b905082810360808401526134e281856129be565b9897505050505050505056fe85faced7bde13e1a7dad704b895f006e704f207617d68166b31ba2d79624862da2646970667358221220f42bb361d7985377d77f9cb1ce022d7610747fdd51289413f14a38d2bcfb4e4b64736f6c63430008100033

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

000000000000000000000000c0f26f847002066a0ed9817fc7f2599553f8a16e000000000000000000000000deed7229ee94f86a9c6ac53436172b34120bf6b4000000000000000000000000bf826778e20274a33cc896275f3f01c97bca7b7100000000000000000000000034f3fc52d923d9340343464138aa394cd4f9e26e000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000004506f6473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003504f4400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _root (address): 0xc0F26f847002066A0Ed9817fc7F2599553f8A16e
Arg [1] : _distributor (address): 0xdEed7229ee94f86A9c6AC53436172B34120BF6b4
Arg [2] : _astrContract (address): 0xbf826778E20274a33CC896275F3F01c97BCa7b71
Arg [3] : _charContract (address): 0x34F3fC52D923D9340343464138Aa394cD4f9E26E
Arg [4] : _name (string): Pods
Arg [5] : _symbol (string): POD
Arg [6] : _contractURI (string):
Arg [7] : _baseURI (string):
Arg [8] : _launchedURI (string):
Arg [9] : _unlaunchedURI (string):
Arg [10] : _royalty (uint256): 500

-----Encoded View---------------
19 Constructor Arguments found :
Arg [0] : 000000000000000000000000c0f26f847002066a0ed9817fc7f2599553f8a16e
Arg [1] : 000000000000000000000000deed7229ee94f86a9c6ac53436172b34120bf6b4
Arg [2] : 000000000000000000000000bf826778e20274a33cc896275f3f01c97bca7b71
Arg [3] : 00000000000000000000000034f3fc52d923d9340343464138aa394cd4f9e26e
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [6] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [10] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [12] : 506f647300000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [14] : 504f440000000000000000000000000000000000000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

66634:13994:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50955:230;;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;50955:230:0;;;;;;;;70426:90;;;;;;:::i;:::-;;:::i;:::-;;80385:240;;;;;;:::i;:::-;;:::i;:::-;;;1369:14:1;;1362:22;1344:41;;1332:2;1317:18;80385:240:0;1204:187:1;67793:47:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;66779:18;;;:::i;:::-;;;;;;;:::i;71240:541::-;;;;;;:::i;:::-;;:::i;77984:266::-;;;;;;:::i;:::-;;:::i;69724:87::-;;;;;;:::i;:::-;;:::i;37577:131::-;;;;;;:::i;:::-;37651:7;37678:12;;;:6;:12;;;;;:22;;;;37577:131;67111:22;;;;;;32838:321;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3783:32:1;;;3765:51;;3847:2;3832:18;;3825:34;;;;3738:18;32838:321:0;3591:274:1;78786:106:0;;;;;;:::i;:::-;;:::i;79876:302::-;;;;;;:::i;:::-;;:::i;38018:147::-;;;;;;:::i;:::-;;:::i;66870:26::-;;;:::i;39162:218::-;;;;;;:::i;:::-;;:::i;6355:143::-;;6455:42;6355:143;;;;;-1:-1:-1;;;;;7731:32:1;;;7713:51;;7701:2;7686:18;6355:143:0;7536:234:1;75679:170:0;;;;;;:::i;:::-;;:::i;66983:25::-;;;:::i;51351:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;74016:620::-;;;;;;:::i;:::-;;:::i;78411:100::-;;;;;;:::i;:::-;;:::i;67202:26::-;;;;;;;;;10691:287;;;:::i;67706:44::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;67706:44:0;;;66939:21;;;:::i;67606:35::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;20148:103;;;:::i;76365:1258::-;;;;;;:::i;:::-;;:::i;70589:88::-;70662:7;;70589:88;;72079:275;;;;;;:::i;:::-;;:::i;72566:289::-;;;;;;:::i;:::-;;:::i;67516:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;70877:152;;;;;;:::i;:::-;;:::i;80186:191::-;;;:::i;36037:147::-;;;;;;:::i;:::-;;:::i;70157:117::-;;;;;;:::i;:::-;;:::i;79169:110::-;;;;;;:::i;:::-;;:::i;66819:20::-;;;:::i;68164:62::-;;-1:-1:-1;;;;;;;;;;;68164:62:0;;35142:49;;35187:4;35142:49;;79380:208;;;;;;:::i;:::-;;:::i;74827:144::-;;;;;;:::i;:::-;;:::i;67045:27::-;;;:::i;72984:793::-;;;;;;:::i;:::-;;:::i;77749:104::-;;;;;;:::i;:::-;77804:4;77828:17;;;:12;:17;;;;;;;;;77749:104;38458:149;;;;;;:::i;:::-;;:::i;75142:341::-;;;;;;:::i;:::-;;:::i;67167:28::-;;;;;;69894:97;;;:::i;52175:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;52298:27:0;;;52274:4;52298:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;52175:168;10986:128;11074:32;;-1:-1:-1;;;11074:32:0;;;;10986:128;;79596:272;;;;;;:::i;:::-;;:::i;20406:201::-;;;;;;:::i;:::-;;:::i;50955:230::-;51041:7;-1:-1:-1;;;;;51069:21:0;;51061:76;;;;-1:-1:-1;;;51061:76:0;;11948:2:1;51061:76:0;;;11930:21:1;11987:2;11967:18;;;11960:30;12026:34;12006:18;;;11999:62;-1:-1:-1;;;12077:18:1;;;12070:40;12127:19;;51061:76:0;;;;;;;;;-1:-1:-1;51155:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;51155:22:0;;;;;;;;;;50955:230;;;;;:::o;70426:90::-;69216:39;35187:4;69244:10;69216:7;:39::i;:::-;69194:110;;;;-1:-1:-1;;;69194:110:0;;;;;;;:::i;:::-;70492:6:::1;:16:::0;70426:90::o;80385:240::-;80552:4;80581:36;80605:11;80581:23;:36::i;66779:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71240:541::-;-1:-1:-1;;;;;;;;;;;35633:16:0;35644:4;35633:10;:16::i;:::-;71418:8:::1;::::0;;;:3:::1;:8;::::0;;;;;::::1;;:17;71410:50;;;::::0;-1:-1:-1;;;71410:50:0;;13094:2:1;71410:50:0::1;::::0;::::1;13076:21:1::0;13133:2;13113:18;;;13106:30;-1:-1:-1;;;13152:18:1;;;13145:50;13212:18;;71410:50:0::1;12892:344:1::0;71410:50:0::1;-1:-1:-1::0;;;;;71541:22:0;::::1;;::::0;;;:14:::1;:22;::::0;;;;;::::1;;:31;71533:67;;;::::0;-1:-1:-1;;;71533:67:0;;13443:2:1;71533:67:0::1;::::0;::::1;13425:21:1::0;13482:2;13462:18;;;13455:30;13521:25;13501:18;;;13494:53;13564:18;;71533:67:0::1;13241:347:1::0;71533:67:0::1;-1:-1:-1::0;;;;;;71679:22:0::1;;::::0;;;:14:::1;:22;::::0;;;;;;;:29;;-1:-1:-1;;71679:29:0::1;71704:4;71679:29;::::0;;71750:14;;;:9:::1;:14:::0;;;;;;:23;;-1:-1:-1;;;;;;71750:23:0::1;::::0;;::::1;::::0;;71240:541::o;77984:266::-;78070:17;;;;:12;:17;;;;;;78040:13;;78070:17;;:25;;:17;:25;78066:111;;78143:7;78152:11;78126:38;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78112:53;;77984:266;;;:::o;78066:111::-;78218:7;78227:13;78201:40;;;;;;;;;:::i;69724:87::-;69216:39;35187:4;69244:10;69216:7;:39::i;:::-;69194:110;;;;-1:-1:-1;;;69194:110:0;;;;;;;:::i;:::-;69787:6:::1;:16:::0;;-1:-1:-1;;69787:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;69724:87::o;32838:321::-;33008:41;;;;;;;;;33039:10;33008:41;-1:-1:-1;;;;;33008:41:0;;;;;-1:-1:-1;;;33008:41:0;;;;;;;;;;;;;-1:-1:-1;;33146:5:0;;33118:24;;:5;:24;:::i;:::-;33117:34;;;;:::i;:::-;33101:50;;32997:162;32838:321;;;;;:::o;78786:106::-;69216:39;35187:4;69244:10;69216:7;:39::i;:::-;69194:110;;;;-1:-1:-1;;;69194:110:0;;;;;;;:::i;:::-;78863:11:::1;:21;78877:7:::0;78863:11;:21:::1;:::i;:::-;;78786:106:::0;:::o;79876:302::-;9528:32;;80096:4;;-1:-1:-1;;;9528:32:0;;;;9527:33;:86;;;;-1:-1:-1;6455:42:0;9564:45;:49;;9527:86;9523:576;;;9853:10;-1:-1:-1;;;;;9845:18:0;;;9841:85;;80113:57:::1;80141:4;80147:2;80151:3;80156:7;80165:4;80113:27;:57::i;:::-;9904:7:::0;;9841:85;9945:69;;-1:-1:-1;;;9945:69:0;;9996:4;9945:69;;;17545:34:1;10003:10:0;17595:18:1;;;17588:43;6455:42:0;;9945;;17480:18:1;;9945:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9940:148;;10042:30;;-1:-1:-1;;;10042:30:0;;10061:10;10042:30;;;7713:51:1;7686:18;;10042:30:0;7536:234:1;9940:148:0;80113:57:::1;80141:4;80147:2;80151:3;80156:7;80165:4;80113:27;:57::i;:::-;79876:302:::0;;;;;;:::o;38018:147::-;37651:7;37678:12;;;:6;:12;;;;;:22;;;35633:16;35644:4;35633:10;:16::i;:::-;38132:25:::1;38143:4;38149:7;38132:10;:25::i;:::-;38018:147:::0;;;:::o;66870:26::-;;;;;;;:::i;39162:218::-;-1:-1:-1;;;;;39258:23:0;;18131:10;39258:23;39250:83;;;;-1:-1:-1;;;39250:83:0;;18094:2:1;39250:83:0;;;18076:21:1;18133:2;18113:18;;;18106:30;18172:34;18152:18;;;18145:62;-1:-1:-1;;;18223:18:1;;;18216:45;18278:19;;39250:83:0;17892:411:1;39250:83:0;39346:26;39358:4;39364:7;39346:11;:26::i;75679:170::-;-1:-1:-1;;;;;;;;;;;35633:16:0;35644:4;35633:10;:16::i;:::-;-1:-1:-1;;;;;;75805:23:0;;;::::1;;::::0;;;:15:::1;:23;::::0;;;;:36;;-1:-1:-1;;75805:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;75679:170::o;66983:25::-;;;;;;;:::i;51351:524::-;51507:16;51568:3;:10;51549:8;:15;:29;51541:83;;;;-1:-1:-1;;;51541:83:0;;18510:2:1;51541:83:0;;;18492:21:1;18549:2;18529:18;;;18522:30;18588:34;18568:18;;;18561:62;-1:-1:-1;;;18639:18:1;;;18632:39;18688:19;;51541:83:0;18308:405:1;51541:83:0;51637:30;51684:8;:15;51670:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51670:30:0;;51637:63;;51718:9;51713:122;51737:8;:15;51733:1;:19;51713:122;;;51793:30;51803:8;51812:1;51803:11;;;;;;;;:::i;:::-;;;;;;;51816:3;51820:1;51816:6;;;;;;;;:::i;:::-;;;;;;;51793:9;:30::i;:::-;51774:13;51788:1;51774:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;51754:3;;;:::i;:::-;;;51713:122;;;-1:-1:-1;51854:13:0;51351:524;-1:-1:-1;;;51351:524:0:o;74016:620::-;-1:-1:-1;;;;;;;;;;;35633:16:0;35644:4;35633:10;:16::i;:::-;-1:-1:-1;;;;;74226:23:0;::::1;;::::0;;;:15:::1;:23;::::0;;;;;::::1;;:31;;:23:::0;:31:::1;74218:70;;;::::0;-1:-1:-1;;;74218:70:0;;19192:2:1;74218:70:0::1;::::0;::::1;19174:21:1::0;19231:2;19211:18;;;19204:30;19270:28;19250:18;;;19243:56;19316:18;;74218:70:0::1;18990:350:1::0;74218:70:0::1;-1:-1:-1::0;;;;;74385:18:0;::::1;;::::0;;;:10:::1;:18;::::0;;;;:25:::1;;::::0;::::1;;:34;74363:110;;;::::0;-1:-1:-1;;;74363:110:0;;19192:2:1;74363:110:0::1;::::0;::::1;19174:21:1::0;19231:2;19211:18;;;19204:30;19270:28;19250:18;;;19243:56;19316:18;;74363:110:0::1;18990:350:1::0;74363:110:0::1;74507:121;;;;;;;;74530:7;74507:121;;;;74552:7;74507:121;;;;74592:6;;74574:15;:24;;;;:::i;:::-;74507:121:::0;;74613:4:::1;74507:121;::::0;;::::1;::::0;;;-1:-1:-1;;;;;74486:18:0;;;::::1;-1:-1:-1::0;74486:18:0;;;:10:::1;:18:::0;;;;;;;:142;;;;;;::::1;::::0;;;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;;::::0;::::1;::::0;;::::1;::::0;;-1:-1:-1;;74486:142:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;-1:-1:-1;;;74016:620:0:o;78411:100::-;69216:39;35187:4;69244:10;69216:7;:39::i;:::-;69194:110;;;;-1:-1:-1;;;69194:110:0;;;;;;;:::i;:::-;78485:7:::1;:18;78495:8:::0;78485:7;:18:::1;:::i;10691:287::-:0;10769:7;:5;:7::i;:::-;-1:-1:-1;;;;;10755:21:0;:10;-1:-1:-1;;;;;10755:21:0;;10751:72;;10800:11;;-1:-1:-1;;;10800:11:0;;;;;;;;;;;10751:72;10837:32;;-1:-1:-1;;;10837:32:0;;;;10833:88;;;10893:16;;-1:-1:-1;;;10893:16:0;;;;;;;;;;;10833:88;10931:32;:39;;-1:-1:-1;;;;10931:39:0;-1:-1:-1;;;10931:39:0;;;10691:287::o;66939:21::-;;;;;;;:::i;20148:103::-;19386:13;:11;:13::i;:::-;20213:30:::1;20240:1;20213:18;:30::i;:::-;20148:103::o:0;76365:1258::-;69481:6;;;;;;;69480:7;69472:39;;;;-1:-1:-1;;;69472:39:0;;19677:2:1;69472:39:0;;;19659:21:1;19716:2;19696:18;;;19689:30;-1:-1:-1;;;19735:18:1;;;19728:49;19794:18;;69472:39:0;19475:343:1;69472:39:0;69522:6;:13;;-1:-1:-1;;69522:13:0;;;;;;;;76568:6;76567:7:::1;76559:38;;;::::0;-1:-1:-1;;;76559:38:0;;20025:2:1;76559:38:0::1;::::0;::::1;20007:21:1::0;20064:2;20044:18;;;20037:30;-1:-1:-1;;;20083:18:1;;;20076:48;20141:18;;76559:38:0::1;19823:342:1::0;76559:38:0::1;76649:10;76633:13;76769:17:::0;;;:10:::1;:17;::::0;;;;:21;:32;::::1;76747:113;;;::::0;-1:-1:-1;;;76747:113:0;;20372:2:1;76747:113:0::1;::::0;::::1;20354:21:1::0;20411:2;20391:18;;;20384:30;20450:33;20430:18;;;20423:61;20501:18;;76747:113:0::1;20170:355:1::0;76747:113:0::1;-1:-1:-1::0;;;;;76893:17:0;::::1;;::::0;;;:10:::1;:17;::::0;;;;:21:::1;;::::0;:32;::::1;76871:114;;;::::0;-1:-1:-1;;;76871:114:0;;20732:2:1;76871:114:0::1;::::0;::::1;20714:21:1::0;;;20751:18;;;20744:30;20810:34;20790:18;;;20783:62;20862:18;;76871:114:0::1;20530:356:1::0;76871:114:0::1;-1:-1:-1::0;;;;;77089:17:0;::::1;;::::0;;;:10:::1;:17;::::0;;;;:27:::1;;::::0;77070:15:::1;:46;;77048:115;;;::::0;-1:-1:-1;;;77048:115:0;;21093:2:1;77048:115:0::1;::::0;::::1;21075:21:1::0;21132:2;21112:18;;;21105:30;-1:-1:-1;;;21151:18:1;;;21144:49;21210:18;;77048:115:0::1;20891:343:1::0;77048:115:0::1;-1:-1:-1::0;;;;;77245:22:0;::::1;;::::0;;;:15:::1;:22;::::0;;;;;::::1;;:30;;:22:::0;:30:::1;77223:110;;;::::0;-1:-1:-1;;;77223:110:0;;21441:2:1;77223:110:0::1;::::0;::::1;21423:21:1::0;21480:2;21460:18;;;21453:30;21519:32;21499:18;;;21492:60;21569:18;;77223:110:0::1;21239:354:1::0;77223:110:0::1;77352:20;::::0;;;:12:::1;:20;::::0;;;;;::::1;;:29;77344:60;;;::::0;-1:-1:-1;;;77344:60:0;;21800:2:1;77344:60:0::1;::::0;::::1;21782:21:1::0;21839:2;21819:18;;;21812:30;-1:-1:-1;;;21858:18:1;;;21851:48;21916:18;;77344:60:0::1;21598:342:1::0;77344:60:0::1;77441:18;77452:6;77441:10;:18::i;:::-;77510:12;::::0;:47:::1;::::0;-1:-1:-1;;;77510:47:0;;::::1;::::0;::::1;22119:25:1::0;;;-1:-1:-1;;;;;22180:32:1;;;22160:18;;;22153:60;77510:12:0;;::::1;::::0;:31:::1;::::0;22092:18:1;;77510:47:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;77568:12:0::1;::::0;:47:::1;::::0;-1:-1:-1;;;77568:47:0;;::::1;::::0;::::1;22119:25:1::0;;;-1:-1:-1;;;;;22180:32:1;;;22160:18;;;22153:60;77568:12:0;;::::1;::::0;-1:-1:-1;77568:31:0::1;::::0;-1:-1:-1;22092:18:1;;77568:47:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;69558:6:0;:14;;-1:-1:-1;;69558:14:0;;;-1:-1:-1;;;;;;76365:1258:0:o;72079:275::-;-1:-1:-1;;;;;;;;;;;35633:16:0;35644:4;35633:10;:16::i;:::-;-1:-1:-1;;;;;72210:22:0;::::1;;::::0;;;:14:::1;:22;::::0;;;;;::::1;;:30;;:22:::0;:30:::1;72202:71;;;::::0;-1:-1:-1;;;72202:71:0;;22426:2:1;72202:71:0::1;::::0;::::1;22408:21:1::0;22465:2;22445:18;;;22438:30;22504;22484:18;;;22477:58;22552:18;;72202:71:0::1;22224:352:1::0;72202:71:0::1;-1:-1:-1::0;;;;;;72284:22:0::1;72309:5;72284:22:::0;;;:14:::1;:22;::::0;;;;;;;:30;;-1:-1:-1;;72284:30:0::1;::::0;;72332:14;;;:9:::1;:14:::0;;;72325:21;;-1:-1:-1;;;;;;72325:21:0::1;::::0;;72079:275::o;72566:289::-;72666:4;72734:14;;;:9;:14;;;;;;72666:4;;-1:-1:-1;;;;;72734:24:0;;;:14;;:24;72730:82;;-1:-1:-1;72796:4:0;72730:82;72829:18;72566:289;-1:-1:-1;;;72566:289:0:o;70877:152::-;69216:39;35187:4;69244:10;69216:7;:39::i;:::-;69194:110;;;;-1:-1:-1;;;69194:110:0;;;;;;;:::i;:::-;70988:33:::1;71002:10;71014:6;70988:13;:33::i;80186:191::-:0;80322:7;80354:15;19573:6;;-1:-1:-1;;;;;19573:6:0;;19500:87;80354:15;80347:22;;80186:191;:::o;36037:147::-;36123:4;36147:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;36147:29:0;;;;;;;;;;;;;;;36037:147::o;70157:117::-;69216:39;35187:4;69244:10;69216:7;:39::i;:::-;69194:110;;;;-1:-1:-1;;;69194:110:0;;;;;;;:::i;:::-;70239:12:::1;:27;70254:12:::0;70239;:27:::1;:::i;79169:110::-:0;69216:39;35187:4;69244:10;69216:7;:39::i;:::-;69194:110;;;;-1:-1:-1;;;69194:110:0;;;;;;;:::i;:::-;79248:13:::1;:23;79264:7:::0;79248:13;:23:::1;:::i;66819:20::-:0;;;;;;;:::i;79380:208::-;10312:32;;79511:8;;-1:-1:-1;;;10312:32:0;;;;10311:33;:86;;;;-1:-1:-1;6455:42:0;10348:45;:49;;10311:86;10307:262;;;10419:67;;-1:-1:-1;;;10419:67:0;;10470:4;10419:67;;;17545:34:1;-1:-1:-1;;;;;17615:15:1;;17595:18;;;17588:43;6455:42:0;;10419;;17480:18:1;;10419:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10414:144;;10514:28;;-1:-1:-1;;;10514:28:0;;-1:-1:-1;;;;;7731:32:1;;10514:28:0;;;7713:51:1;7686:18;;10514:28:0;7536:234:1;10414:144:0;79537:43:::1;79561:8;79571;79537:23;:43::i;74827:144::-:0;-1:-1:-1;;;;;;;;;;;35633:16:0;35644:4;35633:10;:16::i;:::-;-1:-1:-1;;;;;;74945:18:0::1;;::::0;;;:10:::1;:18;::::0;;;;74938:25;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;;-1:-1:-1;;74938:25:0::1;::::0;;74827:144::o;67045:27::-;;;;;;;:::i;72984:793::-;69481:6;;;;;;;69480:7;69472:39;;;;-1:-1:-1;;;69472:39:0;;19677:2:1;69472:39:0;;;19659:21:1;19716:2;19696:18;;;19689:30;-1:-1:-1;;;19735:18:1;;;19728:49;19794:18;;69472:39:0;19475:343:1;69472:39:0;69522:6;:13;;-1:-1:-1;;69522:13:0;;;;;;;;73115:6;73114:7:::1;73106:38;;;::::0;-1:-1:-1;;;73106:38:0;;20025:2:1;73106:38:0::1;::::0;::::1;20007:21:1::0;20064:2;20044:18;;;20037:30;-1:-1:-1;;;20083:18:1;;;20076:48;20141:18;;73106:38:0::1;19823:342:1::0;73106:38:0::1;73203:8;::::0;;;:3:::1;:8;::::0;;;;;::::1;;:17;73195:50;;;::::0;-1:-1:-1;;;73195:50:0;;13094:2:1;73195:50:0::1;::::0;::::1;13076:21:1::0;13133:2;13113:18;;;13106:30;-1:-1:-1;;;13152:18:1;;;13145:50;13212:18;;73195:50:0::1;12892:344:1::0;73195:50:0::1;73258:13;73358:14:::0;;;:9:::1;:14;::::0;;;;;73274:10:::1;::::0;-1:-1:-1;;;;;73358:14:0::1;:23:::0;::::1;73350:71;;;::::0;-1:-1:-1;;;73350:71:0;;22783:2:1;73350:71:0::1;::::0;::::1;22765:21:1::0;22822:2;22802:18;;;22795:30;22861:34;22841:18;;;22834:62;-1:-1:-1;;;22912:18:1;;;22905:33;22955:19;;73350:71:0::1;22581:399:1::0;73350:71:0::1;-1:-1:-1::0;;;;;73491:22:0;::::1;;::::0;;;:15:::1;:22;::::0;;;;;::::1;;:31;73483:71;;;::::0;-1:-1:-1;;;73483:71:0;;23187:2:1;73483:71:0::1;::::0;::::1;23169:21:1::0;23226:2;23206:18;;;23199:30;23265:29;23245:18;;;23238:57;23312:18;;73483:71:0::1;22985:351:1::0;73483:71:0::1;-1:-1:-1::0;;;;;73609:22:0;::::1;;::::0;;;:15:::1;:22;::::0;;;;;;;:29;;73634:4:::1;-1:-1:-1::0;;73609:29:0;;::::1;::::0;::::1;::::0;;;73679:8;;;:3:::1;:8:::0;;;;;:15;;;;::::1;::::0;::::1;::::0;;73759:9;;;;::::1;::::0;;;;;;73738:31:::1;::::0;73609:22;;73679:8;;73634:4;73738:5:::1;:31::i;:::-;-1:-1:-1::0;;69558:6:0;:14;;-1:-1:-1;;69558:14:0;;;72984:793::o;38458:149::-;37651:7;37678:12;;;:6;:12;;;;;:22;;;35633:16;35644:4;35633:10;:16::i;:::-;38573:26:::1;38585:4;38591:7;38573:11;:26::i;75142:341::-:0;-1:-1:-1;;;;;75281:18:0;;75203:4;75281:18;;;:10;:18;;;;;:25;;;75203:4;;75281:25;;:33;;:25;:33;:97;;;;-1:-1:-1;;;;;;75350:18:0;;;;;;:10;:18;;;;;:28;;;75331:15;:47;;75281:97;75263:178;;;-1:-1:-1;75425:4:0;75458:17;75142:341;-1:-1:-1;;75142:341:0:o;69894:97::-;69938:13;69971:12;69964:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69894:97;:::o;79596:272::-;9528:32;;79788:4;;-1:-1:-1;;;9528:32:0;;;;9527:33;:86;;;;-1:-1:-1;6455:42:0;9564:45;:49;;9527:86;9523:576;;;9853:10;-1:-1:-1;;;;;9845:18:0;;;9841:85;;79805:55:::1;79828:4;79834:2;79838:7;79847:6;79855:4;79805:22;:55::i;9841:85::-:0;9945:69;;-1:-1:-1;;;9945:69:0;;9996:4;9945:69;;;17545:34:1;10003:10:0;17595:18:1;;;17588:43;6455:42:0;;9945;;17480:18:1;;9945:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9940:148;;10042:30;;-1:-1:-1;;;10042:30:0;;10061:10;10042:30;;;7713:51:1;7686:18;;10042:30:0;7536:234:1;9940:148:0;79805:55:::1;79828:4;79834:2;79838:7;79847:6;79855:4;79805:22;:55::i;20406:201::-:0;19386:13;:11;:13::i;:::-;-1:-1:-1;;;;;20495:22:0;::::1;20487:73;;;::::0;-1:-1:-1;;;20487:73:0;;23543:2:1;20487:73:0::1;::::0;::::1;23525:21:1::0;23582:2;23562:18;;;23555:30;23621:34;23601:18;;;23594:62;-1:-1:-1;;;23672:18:1;;;23665:36;23718:19;;20487:73:0::1;23341:402:1::0;20487:73:0::1;20571:28;20590:8;20571:18;:28::i;:::-;20406:201:::0;:::o;31792:283::-;31922:4;-1:-1:-1;;;;;;31964:50:0;;-1:-1:-1;;;31964:50:0;;:103;;;32031:36;32055:11;32031:23;:36::i;36488:105::-;36555:30;36566:4;18131:10;36555;:30::i;52899:439::-;-1:-1:-1;;;;;53132:20:0;;18131:10;53132:20;;:60;;-1:-1:-1;53156:36:0;53173:4;18131:10;52175:168;:::i;53156:36::-;53110:157;;;;-1:-1:-1;;;53110:157:0;;;;;;;:::i;:::-;53278:52;53301:4;53307:2;53311:3;53316:7;53325:4;53278:22;:52::i;:::-;52899:439;;;;;:::o;40759:238::-;40843:22;40851:4;40857:7;40843;:22::i;:::-;40838:152;;40882:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;40882:29:0;;;;;;;;;:36;;-1:-1:-1;;40882:36:0;40914:4;40882:36;;;40965:12;18131:10;;18051:98;40965:12;-1:-1:-1;;;;;40938:40:0;40956:7;-1:-1:-1;;;;;40938:40:0;40950:4;40938:40;;;;;;;;;;40759:238;;:::o;41177:239::-;41261:22;41269:4;41275:7;41261;:22::i;:::-;41257:152;;;41332:5;41300:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;41300:29:0;;;;;;;;;;:37;;-1:-1:-1;;41300:37:0;;;41357:40;18131:10;;41300:12;;41357:40;;41332:5;41357:40;41177:239;;:::o;19665:132::-;18131:10;19729:7;:5;:7::i;:::-;-1:-1:-1;;;;;19729:23:0;;19721:68;;;;-1:-1:-1;;;19721:68:0;;24366:2:1;19721:68:0;;;24348:21:1;;;24385:18;;;24378:30;24444:34;24424:18;;;24417:62;24496:18;;19721:68:0;24164:356:1;20767:191:0;20860:6;;;-1:-1:-1;;;;;20877:17:0;;;-1:-1:-1;;;;;;20877:17:0;;;;;;;20910:40;;20860:6;;;20877:17;20860:6;;20910:40;;20841:16;;20910:40;20830:128;20767:191;:::o;75969:122::-;76030:17;;;;:12;:17;;;;;;;;76029:18;76021:27;;;;;;76059:17;;;;:12;:17;;;;;:24;;-1:-1:-1;;76059:24:0;76079:4;76059:24;;;75969:122::o;32592:199::-;32686:5;32677;:14;;32669:53;;;;-1:-1:-1;;;32669:53:0;;24727:2:1;32669:53:0;;;24709:21:1;24766:2;24746:18;;;24739:30;24805:28;24785:18;;;24778:56;24851:18;;32669:53:0;24525:350:1;32669:53:0;32746:37;;;;;;;;;-1:-1:-1;;;;;32746:37:0;;;;;;;;;;;;;;;;;32733:10;:50;;-1:-1:-1;;;32733:50:0;;;-1:-1:-1;;;;;;32733:50:0;;;;;;;;;;;;32592:199::o;51948:155::-;52043:52;18131:10;52076:8;52086;52043:18;:52::i;57598:729::-;-1:-1:-1;;;;;57751:16:0;;57743:62;;;;-1:-1:-1;;;57743:62:0;;25082:2:1;57743:62:0;;;25064:21:1;25121:2;25101:18;;;25094:30;25160:34;25140:18;;;25133:62;-1:-1:-1;;;25211:18:1;;;25204:31;25252:19;;57743:62:0;24880:397:1;57743:62:0;18131:10;57818:16;57883:21;57901:2;57883:17;:21::i;:::-;57860:44;;57915:24;57942:25;57960:6;57942:17;:25::i;:::-;57915:52;;58059:9;:13;;;;;;;;;;;-1:-1:-1;;;;;58059:17:0;;;;;;;;;:27;;58080:6;;58059:9;:27;;58080:6;;58059:27;:::i;:::-;;;;-1:-1:-1;;58102:52:0;;;25456:25:1;;;25512:2;25497:18;;25490:34;;;-1:-1:-1;;;;;58102:52:0;;;;58135:1;;58102:52;;;;;;25429:18:1;58102:52:0;;;;;;;58245:74;58276:8;58294:1;58298:2;58302;58306:6;58314:4;58245:30;:74::i;:::-;57732:595;;;57598:729;;;;:::o;52415:407::-;-1:-1:-1;;;;;52623:20:0;;18131:10;52623:20;;:60;;-1:-1:-1;52647:36:0;52664:4;18131:10;52175:168;:::i;52647:36::-;52601:157;;;;-1:-1:-1;;;52601:157:0;;;;;;;:::i;:::-;52769:45;52787:4;52793:2;52797;52801:6;52809:4;52769:17;:45::i;35741:204::-;35826:4;-1:-1:-1;;;;;;35850:47:0;;-1:-1:-1;;;35850:47:0;;:87;;;35901:36;35925:11;35901:23;:36::i;36883:505::-;36972:22;36980:4;36986:7;36972;:22::i;:::-;36967:414;;37160:41;37188:7;-1:-1:-1;;;;;37160:41:0;37198:2;37160:19;:41::i;:::-;37274:38;37302:4;37309:2;37274:19;:38::i;:::-;37065:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;37065:270:0;;;;;;;;;;-1:-1:-1;;;37011:358:0;;;;;;;:::i;55134:1146::-;55361:7;:14;55347:3;:10;:28;55339:81;;;;-1:-1:-1;;;55339:81:0;;26554:2:1;55339:81:0;;;26536:21:1;26593:2;26573:18;;;26566:30;26632:34;26612:18;;;26605:62;-1:-1:-1;;;26683:18:1;;;26676:38;26731:19;;55339:81:0;26352:404:1;55339:81:0;-1:-1:-1;;;;;55439:16:0;;55431:66;;;;-1:-1:-1;;;55431:66:0;;;;;;;:::i;:::-;18131:10;55510:16;55627:421;55651:3;:10;55647:1;:14;55627:421;;;55683:10;55696:3;55700:1;55696:6;;;;;;;;:::i;:::-;;;;;;;55683:19;;55717:14;55734:7;55742:1;55734:10;;;;;;;;:::i;:::-;;;;;;;;;;;;55761:19;55783:13;;;;;;;;;;-1:-1:-1;;;;;55783:19:0;;;;;;;;;;;;55734:10;;-1:-1:-1;55825:21:0;;;;55817:76;;;;-1:-1:-1;;;55817:76:0;;;;;;;:::i;:::-;55937:9;:13;;;;;;;;;;;-1:-1:-1;;;;;55937:19:0;;;;;;;;;;55959:20;;;55937:42;;56009:17;;;;;;;:27;;55959:20;;55937:9;56009:27;;55959:20;;56009:27;:::i;:::-;;;;;;;;55668:380;;;55663:3;;;;:::i;:::-;;;55627:421;;;;56095:2;-1:-1:-1;;;;;56065:47:0;56089:4;-1:-1:-1;;;;;56065:47:0;56079:8;-1:-1:-1;;;;;56065:47:0;;56099:3;56104:7;56065:47;;;;;;;:::i;:::-;;;;;;;;56197:75;56233:8;56243:4;56249:2;56253:3;56258:7;56267:4;56197:35;:75::i;62011:331::-;62166:8;-1:-1:-1;;;;;62157:17:0;:5;-1:-1:-1;;;;;62157:17:0;;62149:71;;;;-1:-1:-1;;;62149:71:0;;28250:2:1;62149:71:0;;;28232:21:1;28289:2;28269:18;;;28262:30;28328:34;28308:18;;;28301:62;-1:-1:-1;;;28379:18:1;;;28372:39;28428:19;;62149:71:0;28048:405:1;62149:71:0;-1:-1:-1;;;;;62231:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;62231:46:0;;;;;;;;;;62293:41;;1344::1;;;62293::0;;1317:18:1;62293:41:0;;;;;;;62011:331;;;:::o;66277:198::-;66397:16;;;66411:1;66397:16;;;;;;;;;66343;;66372:22;;66397:16;;;;;;;;;;;;-1:-1:-1;66397:16:0;66372:41;;66435:7;66424:5;66430:1;66424:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;66462:5;66277:198;-1:-1:-1;;66277:198:0:o;64704:744::-;-1:-1:-1;;;;;64919:13:0;;22493:19;:23;64915:526;;64955:72;;-1:-1:-1;;;64955:72:0;;-1:-1:-1;;;;;64955:38:0;;;;;:72;;64994:8;;65004:4;;65010:2;;65014:6;;65022:4;;64955:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64955:72:0;;;;;;;;-1:-1:-1;;64955:72:0;;;;;;;;;;;;:::i;:::-;;;64951:479;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;65303:6;65296:14;;-1:-1:-1;;;65296:14:0;;;;;;;;:::i;64951:479::-;;;65352:62;;-1:-1:-1;;;65352:62:0;;30340:2:1;65352:62:0;;;30322:21:1;30379:2;30359:18;;;30352:30;30418:34;30398:18;;;30391:62;-1:-1:-1;;;30469:18:1;;;30462:50;30529:19;;65352:62:0;30138:416:1;64951:479:0;-1:-1:-1;;;;;;65077:55:0;;-1:-1:-1;;;65077:55:0;65073:154;;65157:50;;-1:-1:-1;;;65157:50:0;;;;;;;:::i;53802:974::-;-1:-1:-1;;;;;53990:16:0;;53982:66;;;;-1:-1:-1;;;53982:66:0;;;;;;;:::i;:::-;18131:10;54061:16;54126:21;54144:2;54126:17;:21::i;:::-;54103:44;;54158:24;54185:25;54203:6;54185:17;:25::i;:::-;54158:52;;54296:19;54318:13;;;;;;;;;;;-1:-1:-1;;;;;54318:19:0;;;;;;;;;;54356:21;;;;54348:76;;;;-1:-1:-1;;;54348:76:0;;;;;;;:::i;:::-;54460:9;:13;;;;;;;;;;;-1:-1:-1;;;;;54460:19:0;;;;;;;;;;54482:20;;;54460:42;;54524:17;;;;;;;:27;;54482:20;;54460:9;54524:27;;54482:20;;54524:27;:::i;:::-;;;;-1:-1:-1;;54569:46:0;;;25456:25:1;;;25512:2;25497:18;;25490:34;;;-1:-1:-1;;;;;54569:46:0;;;;;;;;;;;;;;25429:18:1;54569:46:0;;;;;;;54700:68;54731:8;54741:4;54747:2;54751;54755:6;54763:4;54700:30;:68::i;:::-;53971:805;;;;53802:974;;;;;:::o;49978:310::-;50080:4;-1:-1:-1;;;;;;50117:41:0;;-1:-1:-1;;;50117:41:0;;:110;;-1:-1:-1;;;;;;;50175:52:0;;-1:-1:-1;;;50175:52:0;50117:110;:163;;;-1:-1:-1;;;;;;;;;;31409:40:0;;;50244:36;31300:157;13565:451;13640:13;13666:19;13698:10;13702:6;13698:1;:10;:::i;:::-;:14;;13711:1;13698:14;:::i;:::-;13688:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13688:25:0;;13666:47;;-1:-1:-1;;;13724:6:0;13731:1;13724:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;13724:15:0;;;;;;;;;-1:-1:-1;;;13750:6:0;13757:1;13750:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;13750:15:0;;;;;;;;-1:-1:-1;13781:9:0;13793:10;13797:6;13793:1;:10;:::i;:::-;:14;;13806:1;13793:14;:::i;:::-;13781:26;;13776:135;13813:1;13809;:5;13776:135;;;-1:-1:-1;;;13861:5:0;13869:3;13861:11;13848:25;;;;;;;:::i;:::-;;;;13836:6;13843:1;13836:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;13836:37:0;;;;;;;;-1:-1:-1;13898:1:0;13888:11;;;;;13816:3;;;:::i;:::-;;;13776:135;;;-1:-1:-1;13929:10:0;;13921:55;;;;-1:-1:-1;;;13921:55:0;;31311:2:1;13921:55:0;;;31293:21:1;;;31330:18;;;31323:30;31389:34;31369:18;;;31362:62;31441:18;;13921:55:0;31109:356:1;65456:813:0;-1:-1:-1;;;;;65696:13:0;;22493:19;:23;65692:570;;65732:79;;-1:-1:-1;;;65732:79:0;;-1:-1:-1;;;;;65732:43:0;;;;;:79;;65776:8;;65786:4;;65792:3;;65797:7;;65806:4;;65732:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65732:79:0;;;;;;;;-1:-1:-1;;65732:79:0;;;;;;;;;;;;:::i;:::-;;;65728:523;;;;:::i;:::-;-1:-1:-1;;;;;;65893:60:0;;-1:-1:-1;;;65893:60:0;65889:159;;65978:50;;-1:-1:-1;;;65978:50:0;;;;;;;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;633:180::-;692:6;745:2;733:9;724:7;720:23;716:32;713:52;;;761:1;758;751:12;713:52;-1:-1:-1;784:23:1;;633:180;-1:-1:-1;633:180:1:o;818:131::-;-1:-1:-1;;;;;;892:32:1;;882:43;;872:71;;939:1;936;929:12;954:245;1012:6;1065:2;1053:9;1044:7;1040:23;1036:32;1033:52;;;1081:1;1078;1071:12;1033:52;1120:9;1107:23;1139:30;1163:5;1139:30;:::i;1396:186::-;1455:6;1508:2;1496:9;1487:7;1483:23;1479:32;1476:52;;;1524:1;1521;1514:12;1476:52;1547:29;1566:9;1547:29;:::i;1587:250::-;1672:1;1682:113;1696:6;1693:1;1690:13;1682:113;;;1772:11;;;1766:18;1753:11;;;1746:39;1718:2;1711:10;1682:113;;;-1:-1:-1;;1829:1:1;1811:16;;1804:27;1587:250::o;1842:271::-;1884:3;1922:5;1916:12;1949:6;1944:3;1937:19;1965:76;2034:6;2027:4;2022:3;2018:14;2011:4;2004:5;2000:16;1965:76;:::i;:::-;2095:2;2074:15;-1:-1:-1;;2070:29:1;2061:39;;;;2102:4;2057:50;;1842:271;-1:-1:-1;;1842:271:1:o;2118:220::-;2267:2;2256:9;2249:21;2230:4;2287:45;2328:2;2317:9;2313:18;2305:6;2287:45;:::i;2343:254::-;2411:6;2419;2472:2;2460:9;2451:7;2447:23;2443:32;2440:52;;;2488:1;2485;2478:12;2440:52;2524:9;2511:23;2501:33;;2553:38;2587:2;2576:9;2572:18;2553:38;:::i;:::-;2543:48;;2343:254;;;;;:::o;2602:118::-;2688:5;2681:13;2674:21;2667:5;2664:32;2654:60;;2710:1;2707;2700:12;2725:241;2781:6;2834:2;2822:9;2813:7;2809:23;2805:32;2802:52;;;2850:1;2847;2840:12;2802:52;2889:9;2876:23;2908:28;2930:5;2908:28;:::i;3338:248::-;3406:6;3414;3467:2;3455:9;3446:7;3442:23;3438:32;3435:52;;;3483:1;3480;3473:12;3435:52;-1:-1:-1;;3506:23:1;;;3576:2;3561:18;;;3548:32;;-1:-1:-1;3338:248:1:o;3870:127::-;3931:10;3926:3;3922:20;3919:1;3912:31;3962:4;3959:1;3952:15;3986:4;3983:1;3976:15;4002:249;4112:2;4093:13;;-1:-1:-1;;4089:27:1;4077:40;;4147:18;4132:34;;4168:22;;;4129:62;4126:88;;;4194:18;;:::i;:::-;4230:2;4223:22;-1:-1:-1;;4002:249:1:o;4256:469::-;4321:5;4355:18;4347:6;4344:30;4341:56;;;4377:18;;:::i;:::-;4426:2;4420:9;4438:69;4495:2;4474:15;;-1:-1:-1;;4470:29:1;4501:4;4466:40;4420:9;4438:69;:::i;:::-;4525:6;4516:15;;4555:6;4547;4540:22;4595:3;4586:6;4581:3;4577:16;4574:25;4571:45;;;4612:1;4609;4602:12;4571:45;4662:6;4657:3;4650:4;4642:6;4638:17;4625:44;4717:1;4710:4;4701:6;4693;4689:19;4685:30;4678:41;;4256:469;;;;;:::o;4730:451::-;4799:6;4852:2;4840:9;4831:7;4827:23;4823:32;4820:52;;;4868:1;4865;4858:12;4820:52;4908:9;4895:23;4941:18;4933:6;4930:30;4927:50;;;4973:1;4970;4963:12;4927:50;4996:22;;5049:4;5041:13;;5037:27;-1:-1:-1;5027:55:1;;5078:1;5075;5068:12;5027:55;5101:74;5167:7;5162:2;5149:16;5144:2;5140;5136:11;5101:74;:::i;:::-;5091:84;4730:451;-1:-1:-1;;;;4730:451:1:o;5186:183::-;5246:4;5279:18;5271:6;5268:30;5265:56;;;5301:18;;:::i;:::-;-1:-1:-1;5346:1:1;5342:14;5358:4;5338:25;;5186:183::o;5374:724::-;5428:5;5481:3;5474:4;5466:6;5462:17;5458:27;5448:55;;5499:1;5496;5489:12;5448:55;5535:6;5522:20;5561:4;5584:43;5624:2;5584:43;:::i;:::-;5656:2;5650:9;5668:31;5696:2;5688:6;5668:31;:::i;:::-;5734:18;;;5826:1;5822:10;;;;5810:23;;5806:32;;;5768:15;;;;-1:-1:-1;5850:15:1;;;5847:35;;;5878:1;5875;5868:12;5847:35;5914:2;5906:6;5902:15;5926:142;5942:6;5937:3;5934:15;5926:142;;;6008:17;;5996:30;;6046:12;;;;5959;;5926:142;;;-1:-1:-1;6086:6:1;5374:724;-1:-1:-1;;;;;;5374:724:1:o;6103:221::-;6145:5;6198:3;6191:4;6183:6;6179:17;6175:27;6165:55;;6216:1;6213;6206:12;6165:55;6238:80;6314:3;6305:6;6292:20;6285:4;6277:6;6273:17;6238:80;:::i;6329:943::-;6483:6;6491;6499;6507;6515;6568:3;6556:9;6547:7;6543:23;6539:33;6536:53;;;6585:1;6582;6575:12;6536:53;6608:29;6627:9;6608:29;:::i;:::-;6598:39;;6656:38;6690:2;6679:9;6675:18;6656:38;:::i;:::-;6646:48;;6745:2;6734:9;6730:18;6717:32;6768:18;6809:2;6801:6;6798:14;6795:34;;;6825:1;6822;6815:12;6795:34;6848:61;6901:7;6892:6;6881:9;6877:22;6848:61;:::i;:::-;6838:71;;6962:2;6951:9;6947:18;6934:32;6918:48;;6991:2;6981:8;6978:16;6975:36;;;7007:1;7004;6997:12;6975:36;7030:63;7085:7;7074:8;7063:9;7059:24;7030:63;:::i;:::-;7020:73;;7146:3;7135:9;7131:19;7118:33;7102:49;;7176:2;7166:8;7163:16;7160:36;;;7192:1;7189;7182:12;7160:36;;7215:51;7258:7;7247:8;7236:9;7232:24;7215:51;:::i;:::-;7205:61;;;6329:943;;;;;;;;:::o;7775:315::-;7840:6;7848;7901:2;7889:9;7880:7;7876:23;7872:32;7869:52;;;7917:1;7914;7907:12;7869:52;7940:29;7959:9;7940:29;:::i;:::-;7930:39;;8019:2;8008:9;8004:18;7991:32;8032:28;8054:5;8032:28;:::i;:::-;8079:5;8069:15;;;7775:315;;;;;:::o;8095:1208::-;8213:6;8221;8274:2;8262:9;8253:7;8249:23;8245:32;8242:52;;;8290:1;8287;8280:12;8242:52;8330:9;8317:23;8359:18;8400:2;8392:6;8389:14;8386:34;;;8416:1;8413;8406:12;8386:34;8454:6;8443:9;8439:22;8429:32;;8499:7;8492:4;8488:2;8484:13;8480:27;8470:55;;8521:1;8518;8511:12;8470:55;8557:2;8544:16;8579:4;8602:43;8642:2;8602:43;:::i;:::-;8674:2;8668:9;8686:31;8714:2;8706:6;8686:31;:::i;:::-;8752:18;;;8840:1;8836:10;;;;8828:19;;8824:28;;;8786:15;;;;-1:-1:-1;8864:19:1;;;8861:39;;;8896:1;8893;8886:12;8861:39;8920:11;;;;8940:148;8956:6;8951:3;8948:15;8940:148;;;9022:23;9041:3;9022:23;:::i;:::-;9010:36;;8973:12;;;;9066;;;;8940:148;;;9107:6;-1:-1:-1;;9151:18:1;;9138:32;;-1:-1:-1;;9182:16:1;;;9179:36;;;9211:1;9208;9201:12;9179:36;;9234:63;9289:7;9278:8;9267:9;9263:24;9234:63;:::i;9308:435::-;9361:3;9399:5;9393:12;9426:6;9421:3;9414:19;9452:4;9481:2;9476:3;9472:12;9465:19;;9518:2;9511:5;9507:14;9539:1;9549:169;9563:6;9560:1;9557:13;9549:169;;;9624:13;;9612:26;;9658:12;;;;9693:15;;;;9585:1;9578:9;9549:169;;;-1:-1:-1;9734:3:1;;9308:435;-1:-1:-1;;;;;9308:435:1:o;9748:261::-;9927:2;9916:9;9909:21;9890:4;9947:56;9999:2;9988:9;9984:18;9976:6;9947:56;:::i;10014:322::-;10091:6;10099;10107;10160:2;10148:9;10139:7;10135:23;10131:32;10128:52;;;10176:1;10173;10166:12;10128:52;10199:29;10218:9;10199:29;:::i;:::-;10189:39;10275:2;10260:18;;10247:32;;-1:-1:-1;10326:2:1;10311:18;;;10298:32;;10014:322;-1:-1:-1;;;10014:322:1:o;10549:316::-;10626:6;10634;10642;10695:2;10683:9;10674:7;10670:23;10666:32;10663:52;;;10711:1;10708;10701:12;10663:52;-1:-1:-1;;10734:23:1;;;10804:2;10789:18;;10776:32;;-1:-1:-1;10855:2:1;10840:18;;;10827:32;;10549:316;-1:-1:-1;10549:316:1:o;10870:260::-;10938:6;10946;10999:2;10987:9;10978:7;10974:23;10970:32;10967:52;;;11015:1;11012;11005:12;10967:52;11038:29;11057:9;11038:29;:::i;:::-;11028:39;;11086:38;11120:2;11109:9;11105:18;11086:38;:::i;11135:606::-;11239:6;11247;11255;11263;11271;11324:3;11312:9;11303:7;11299:23;11295:33;11292:53;;;11341:1;11338;11331:12;11292:53;11364:29;11383:9;11364:29;:::i;:::-;11354:39;;11412:38;11446:2;11435:9;11431:18;11412:38;:::i;:::-;11402:48;;11497:2;11486:9;11482:18;11469:32;11459:42;;11548:2;11537:9;11533:18;11520:32;11510:42;;11603:3;11592:9;11588:19;11575:33;11631:18;11623:6;11620:30;11617:50;;;11663:1;11660;11653:12;11617:50;11686:49;11727:7;11718:6;11707:9;11703:22;11686:49;:::i;12157:345::-;12359:2;12341:21;;;12398:2;12378:18;;;12371:30;-1:-1:-1;;;12432:2:1;12417:18;;12410:51;12493:2;12478:18;;12157:345::o;12507:380::-;12586:1;12582:12;;;;12629;;;12650:61;;12704:4;12696:6;12692:17;12682:27;;12650:61;12757:2;12749:6;12746:14;12726:18;12723:38;12720:161;;12803:10;12798:3;12794:20;12791:1;12784:31;12838:4;12835:1;12828:15;12866:4;12863:1;12856:15;12720:161;;12507:380;;;:::o;13719:722::-;13769:3;13810:5;13804:12;13839:36;13865:9;13839:36;:::i;:::-;13894:1;13911:18;;;13938:133;;;;14085:1;14080:355;;;;13904:531;;13938:133;-1:-1:-1;;13971:24:1;;13959:37;;14044:14;;14037:22;14025:35;;14016:45;;;-1:-1:-1;13938:133:1;;14080:355;14111:5;14108:1;14101:16;14140:4;14185:2;14182:1;14172:16;14210:1;14224:165;14238:6;14235:1;14232:13;14224:165;;;14316:14;;14303:11;;;14296:35;14359:16;;;;14253:10;;14224:165;;;14228:3;;;14418:6;14413:3;14409:16;14402:23;;13904:531;;;;;13719:722;;;;:::o;14446:277::-;14619:3;14644:73;14678:38;14712:3;14704:6;14678:38;:::i;:::-;14670:6;14644:73;:::i;14728:127::-;14789:10;14784:3;14780:20;14777:1;14770:31;14820:4;14817:1;14810:15;14844:4;14841:1;14834:15;14860:168;14900:7;14966:1;14962;14958:6;14954:14;14951:1;14948:21;14943:1;14936:9;14929:17;14925:45;14922:71;;;14973:18;;:::i;:::-;-1:-1:-1;15013:9:1;;14860:168::o;15033:217::-;15073:1;15099;15089:132;;15143:10;15138:3;15134:20;15131:1;15124:31;15178:4;15175:1;15168:15;15206:4;15203:1;15196:15;15089:132;-1:-1:-1;15235:9:1;;15033:217::o;15255:545::-;15357:2;15352:3;15349:11;15346:448;;;15393:1;15418:5;15414:2;15407:17;15463:4;15459:2;15449:19;15533:2;15521:10;15517:19;15514:1;15510:27;15504:4;15500:38;15569:4;15557:10;15554:20;15551:47;;;-1:-1:-1;15592:4:1;15551:47;15647:2;15642:3;15638:12;15635:1;15631:20;15625:4;15621:31;15611:41;;15702:82;15720:2;15713:5;15710:13;15702:82;;;15765:17;;;15746:1;15735:13;15702:82;;15976:1352;16102:3;16096:10;16129:18;16121:6;16118:30;16115:56;;;16151:18;;:::i;:::-;16180:97;16270:6;16230:38;16262:4;16256:11;16230:38;:::i;:::-;16224:4;16180:97;:::i;:::-;16332:4;;16396:2;16385:14;;16413:1;16408:663;;;;17115:1;17132:6;17129:89;;;-1:-1:-1;17184:19:1;;;17178:26;17129:89;-1:-1:-1;;15933:1:1;15929:11;;;15925:24;15921:29;15911:40;15957:1;15953:11;;;15908:57;17231:81;;16378:944;;16408:663;13666:1;13659:14;;;13703:4;13690:18;;-1:-1:-1;;16444:20:1;;;16562:236;16576:7;16573:1;16570:14;16562:236;;;16665:19;;;16659:26;16644:42;;16757:27;;;;16725:1;16713:14;;;;16592:19;;16562:236;;;16566:3;16826:6;16817:7;16814:19;16811:201;;;16887:19;;;16881:26;-1:-1:-1;;16970:1:1;16966:14;;;16982:3;16962:24;16958:37;16954:42;16939:58;16924:74;;16811:201;-1:-1:-1;;;;;17058:1:1;17042:14;;;17038:22;17025:36;;-1:-1:-1;15976:1352:1:o;17642:245::-;17709:6;17762:2;17750:9;17741:7;17737:23;17733:32;17730:52;;;17778:1;17775;17768:12;17730:52;17810:9;17804:16;17829:28;17851:5;17829:28;:::i;18718:127::-;18779:10;18774:3;18770:20;18767:1;18760:31;18810:4;18807:1;18800:15;18834:4;18831:1;18824:15;18850:135;18889:3;18910:17;;;18907:43;;18930:18;;:::i;:::-;-1:-1:-1;18977:1:1;18966:13;;18850:135::o;19345:125::-;19410:9;;;19431:10;;;19428:36;;;19444:18;;:::i;23748:411::-;23950:2;23932:21;;;23989:2;23969:18;;;23962:30;24028:34;24023:2;24008:18;;24001:62;-1:-1:-1;;;24094:2:1;24079:18;;24072:45;24149:3;24134:19;;23748:411::o;25535:812::-;25946:25;25941:3;25934:38;25916:3;26001:6;25995:13;26017:75;26085:6;26080:2;26075:3;26071:12;26064:4;26056:6;26052:17;26017:75;:::i;:::-;-1:-1:-1;;;26151:2:1;26111:16;;;26143:11;;;26136:40;26201:13;;26223:76;26201:13;26285:2;26277:11;;26270:4;26258:17;;26223:76;:::i;:::-;26319:17;26338:2;26315:26;;25535:812;-1:-1:-1;;;;25535:812:1:o;26761:401::-;26963:2;26945:21;;;27002:2;26982:18;;;26975:30;27041:34;27036:2;27021:18;;27014:62;-1:-1:-1;;;27107:2:1;27092:18;;27085:35;27152:3;27137:19;;26761:401::o;27167:406::-;27369:2;27351:21;;;27408:2;27388:18;;;27381:30;27447:34;27442:2;27427:18;;27420:62;-1:-1:-1;;;27513:2:1;27498:18;;27491:40;27563:3;27548:19;;27167:406::o;27578:465::-;27835:2;27824:9;27817:21;27798:4;27861:56;27913:2;27902:9;27898:18;27890:6;27861:56;:::i;:::-;27965:9;27957:6;27953:22;27948:2;27937:9;27933:18;27926:50;27993:44;28030:6;28022;27993:44;:::i;:::-;27985:52;27578:465;-1:-1:-1;;;;;27578:465:1:o;28458:561::-;-1:-1:-1;;;;;28755:15:1;;;28737:34;;28807:15;;28802:2;28787:18;;28780:43;28854:2;28839:18;;28832:34;;;28897:2;28882:18;;28875:34;;;28717:3;28940;28925:19;;28918:32;;;28680:4;;28967:46;;28993:19;;28985:6;28967:46;:::i;:::-;28959:54;28458:561;-1:-1:-1;;;;;;;28458:561:1:o;29024:249::-;29093:6;29146:2;29134:9;29125:7;29121:23;29117:32;29114:52;;;29162:1;29159;29152:12;29114:52;29194:9;29188:16;29213:30;29237:5;29213:30;:::i;29278:179::-;29313:3;29355:1;29337:16;29334:23;29331:120;;;29401:1;29398;29395;29380:23;-1:-1:-1;29438:1:1;29432:8;29427:3;29423:18;29331:120;29278:179;:::o;29462:671::-;29501:3;29543:4;29525:16;29522:26;29519:39;;;29462:671;:::o;29519:39::-;29585:2;29579:9;-1:-1:-1;;29650:16:1;29646:25;;29643:1;29579:9;29622:50;29701:4;29695:11;29725:16;29760:18;29831:2;29824:4;29816:6;29812:17;29809:25;29804:2;29796:6;29793:14;29790:45;29787:58;;;29838:5;;;;;29462:671;:::o;29787:58::-;29875:6;29869:4;29865:17;29854:28;;29911:3;29905:10;29938:2;29930:6;29927:14;29924:27;;;29944:5;;;;;;29462:671;:::o;29924:27::-;30028:2;30009:16;30003:4;29999:27;29995:36;29988:4;29979:6;29974:3;29970:16;29966:27;29963:69;29960:82;;;30035:5;;;;;;29462:671;:::o;29960:82::-;30051:57;30102:4;30093:6;30085;30081:19;30077:30;30071:4;30051:57;:::i;:::-;-1:-1:-1;30124:3:1;;29462:671;-1:-1:-1;;;;;29462:671:1:o;30559:404::-;30761:2;30743:21;;;30800:2;30780:18;;;30773:30;30839:34;30834:2;30819:18;;30812:62;-1:-1:-1;;;30905:2:1;30890:18;;30883:38;30953:3;30938:19;;30559:404::o;30968:136::-;31007:3;31035:5;31025:39;;31044:18;;:::i;:::-;-1:-1:-1;;;31080:18:1;;30968:136::o;31470:827::-;-1:-1:-1;;;;;31867:15:1;;;31849:34;;31919:15;;31914:2;31899:18;;31892:43;31829:3;31966:2;31951:18;;31944:31;;;31792:4;;31998:57;;32035:19;;32027:6;31998:57;:::i;:::-;32103:9;32095:6;32091:22;32086:2;32075:9;32071:18;32064:50;32137:44;32174:6;32166;32137:44;:::i;:::-;32123:58;;32230:9;32222:6;32218:22;32212:3;32201:9;32197:19;32190:51;32258:33;32284:6;32276;32258:33;:::i;:::-;32250:41;31470:827;-1:-1:-1;;;;;;;;31470:827:1:o

Swarm Source

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