ETH Price: $3,383.10 (+3.88%)
Gas: 2 Gwei

Token

Decal by TJ Thorne (DECAL)
 

Overview

Max Total Supply

100 DECAL

Holders

88

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
harusame.eth
Balance
1 DECAL
0xd31A84c20bc430aD75E6a1903E7dDbee52211072
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:
TJ_Decal

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-19
*/

// 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/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (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.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.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.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

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

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

        _revokeRole(role, account);
    }

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/utils/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/utils/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.
 */
abstract contract OperatorFilterer {
  error OperatorNotAllowed(address operator);

  IOperatorFilterRegistry 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/utils/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/utils/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: contracts/utils/Errors.sol


pragma solidity ^0.8.0;

error MaxSupplyReached();
error AlreadyMinted();
error ProofInvalidOrNotInAllowlist();
error CannotMintFromContract();

// File: contracts/TJ_Decal.sol


pragma solidity ^0.8.13;











/// @author @0x__jj, @llio (Deca)
contract TJ_Decal is
  ERC721,
  ReentrancyGuard,
  AccessControl,
  RevokableOperatorFilterer,
  RevokableDefaultOperatorFilterer,
  Ownable
{
  using Address for address;
  using Strings for *;

  mapping(address => bool) public minted;

  uint256 public totalSupply = 0;

  uint256 public constant MAX_SUPPLY = 100;

  bytes32 public merkleRoot;

  string public baseUri;

  constructor(string memory _baseUri, address[] memory _admins)
    ERC721("Decal by TJ Thorne", "DECAL")
  {
    _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
    for (uint256 i = 0; i < _admins.length; i++) {
      _grantRole(DEFAULT_ADMIN_ROLE, _admins[i]);
    }
    baseUri = _baseUri;
  }

  function setMerkleRoot(bytes32 _merkleRoot)
    external
    onlyRole(DEFAULT_ADMIN_ROLE)
  {
    merkleRoot = _merkleRoot;
  }

  function setBaseUri(string memory _newBaseUri)
    external
    onlyRole(DEFAULT_ADMIN_ROLE)
  {
    baseUri = _newBaseUri;
  }

  function mint(bytes32[] calldata _merkleProof)
    external
    nonReentrant
    returns (uint256)
  {
    if (totalSupply >= MAX_SUPPLY) revert MaxSupplyReached();
    if (minted[msg.sender]) revert AlreadyMinted();
    if (msg.sender.isContract()) revert CannotMintFromContract();
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    if (!MerkleProof.verify(_merkleProof, merkleRoot, leaf))
      revert ProofInvalidOrNotInAllowlist();

    uint256 tokenId = totalSupply;
    totalSupply++;
    minted[msg.sender] = true;
    _safeMint(msg.sender, tokenId);
    return tokenId;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    override(ERC721)
    returns (string memory)
  {
    require(_exists(_tokenId), "DECAL: URI query for nonexistent token");
    string memory baseURI = _baseURI();
    require(bytes(baseURI).length > 0, "baseURI not set");
    return string(abi.encodePacked(baseURI, _tokenId.toString()));
  }

  function getTokensOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 tokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](tokenCount);
    uint256 seen = 0;
    for (uint256 i; i < totalSupply; i++) {
      if (ownerOf(i) == _owner) {
        tokenIds[seen] = i;
        seen++;
      }
      if (seen == tokenCount) break;
    }
    return tokenIds;
  }

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

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

  function setApprovalForAll(address operator, bool approved)
    public
    override
    onlyAllowedOperatorApproval(operator)
  {
    super.setApprovalForAll(operator, approved);
  }

  function approve(address operator, uint256 tokenId)
    public
    override
    onlyAllowedOperatorApproval(operator)
  {
    super.approve(operator, tokenId);
  }

  function transferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public override onlyAllowedOperator(from) {
    super.transferFrom(from, to, tokenId);
  }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"address[]","name":"_admins","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyMinted","type":"error"},{"inputs":[],"name":"AlreadyRevoked","type":"error"},{"inputs":[],"name":"CannotMintFromContract","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"OnlyOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"ProofInvalidOrNotInAllowlist","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokensOfOwner","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":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperatorFilterRegistryRevoked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","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":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a553480156200001657600080fd5b50604051620054de380380620054de83398181016040528101906200003c919062000956565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601281526020017f446563616c20627920544a2054686f726e6500000000000000000000000000008152506040518060400160405280600581526020017f444543414c0000000000000000000000000000000000000000000000000000008152508160009080519060200190620000d7929190620005c9565b508060019080519060200190620000f0929190620005c9565b505050600160068190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002f0578015620001b6576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200017c929190620009ec565b600060405180830381600087803b1580156200019757600080fd5b505af1158015620001ac573d6000803e3d6000fd5b50505050620002ef565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000270576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b815260040162000236929190620009ec565b600060405180830381600087803b1580156200025157600080fd5b505af115801562000266573d6000803e3d6000fd5b50505050620002ee565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002b9919062000a19565b600060405180830381600087803b158015620002d457600080fd5b505af1158015620002e9573d6000803e3d6000fd5b505050505b5b5b505062000312620003066200039e60201b60201c565b620003a660201b60201c565b620003276000801b336200046c60201b60201c565b60005b81518110156200037c57620003666000801b83838151811062000352576200035162000a36565b5b60200260200101516200046c60201b60201c565b8080620003739062000a9e565b9150506200032a565b5081600c908051906020019062000395929190620005c9565b50505062000b4f565b600033905090565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200047e82826200055e60201b60201c565b6200055a5760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004ff6200039e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054620005d79062000b1a565b90600052602060002090601f016020900481019282620005fb576000855562000647565b82601f106200061657805160ff191683800117855562000647565b8280016001018555821562000647579182015b828111156200064657825182559160200191906001019062000629565b5b5090506200065691906200065a565b5090565b5b80821115620006755760008160009055506001016200065b565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620006e28262000697565b810181811067ffffffffffffffff82111715620007045762000703620006a8565b5b80604052505050565b60006200071962000679565b9050620007278282620006d7565b919050565b600067ffffffffffffffff8211156200074a5762000749620006a8565b5b620007558262000697565b9050602081019050919050565b60005b838110156200078257808201518184015260208101905062000765565b8381111562000792576000848401525b50505050565b6000620007af620007a9846200072c565b6200070d565b905082815260208101848484011115620007ce57620007cd62000692565b5b620007db84828562000762565b509392505050565b600082601f830112620007fb57620007fa6200068d565b5b81516200080d84826020860162000798565b91505092915050565b600067ffffffffffffffff821115620008345762000833620006a8565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000877826200084a565b9050919050565b62000889816200086a565b81146200089557600080fd5b50565b600081519050620008a9816200087e565b92915050565b6000620008c6620008c08462000816565b6200070d565b90508083825260208201905060208402830185811115620008ec57620008eb62000845565b5b835b8181101562000919578062000904888262000898565b845260208401935050602081019050620008ee565b5050509392505050565b600082601f8301126200093b576200093a6200068d565b5b81516200094d848260208601620008af565b91505092915050565b6000806040838503121562000970576200096f62000683565b5b600083015167ffffffffffffffff81111562000991576200099062000688565b5b6200099f85828601620007e3565b925050602083015167ffffffffffffffff811115620009c357620009c262000688565b5b620009d18582860162000923565b9150509250929050565b620009e6816200086a565b82525050565b600060408201905062000a036000830185620009db565b62000a126020830184620009db565b9392505050565b600060208201905062000a306000830184620009db565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000819050919050565b600062000aab8262000a94565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000ae05762000adf62000a65565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b3357607f821691505b60208210810362000b495762000b4862000aeb565b5b50919050565b61497f8062000b5f6000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c806370a082311161011a578063a217fddf116100ad578063c87b56dd1161007c578063c87b56dd146105b0578063d547741f146105e0578063e985e9c5146105fc578063ecba222a1461062c578063f2fde38b1461064a576101fb565b8063a217fddf1461052a578063a22cb46514610548578063b77a147b14610564578063b88d4fde14610594576101fb565b806391d14854116100e957806391d14854146104a257806395d89b41146104d25780639abc8320146104f0578063a0bcfc7f1461050e576101fb565b806370a082311461042e578063715018a61461045e5780637cb64759146104685780638da5cb5b14610484576101fb565b80632eb4a7ab1161019257806342842e0e1161016157806342842e0e146103a85780635de6dc55146103c45780635ef9432a146103f45780636352211e146103fe576101fb565b80632eb4a7ab146103345780632f2ff15d1461035257806332cb6b0c1461036e57806336568abe1461038c576101fb565b806318160ddd116101ce57806318160ddd1461029a5780631e7269c5146102b857806323b872dd146102e8578063248a9ca314610304576101fb565b806301ffc9a71461020057806306fdde0314610230578063081812fc1461024e578063095ea7b31461027e575b600080fd5b61021a600480360381019061021591906130c9565b610666565b6040516102279190613111565b60405180910390f35b610238610678565b60405161024591906131c5565b60405180910390f35b6102686004803603810190610263919061321d565b61070a565b604051610275919061328b565b60405180910390f35b610298600480360381019061029391906132d2565b61078f565b005b6102a26108b2565b6040516102af9190613321565b60405180910390f35b6102d260048036038101906102cd919061333c565b6108b8565b6040516102df9190613111565b60405180910390f35b61030260048036038101906102fd9190613369565b6108d8565b005b61031e600480360381019061031991906133f2565b610a41565b60405161032b919061342e565b60405180910390f35b61033c610a61565b604051610349919061342e565b60405180910390f35b61036c60048036038101906103679190613449565b610a67565b005b610376610a88565b6040516103839190613321565b60405180910390f35b6103a660048036038101906103a19190613449565b610a8d565b005b6103c260048036038101906103bd9190613369565b610b10565b005b6103de60048036038101906103d9919061333c565b610c79565b6040516103eb9190613547565b60405180910390f35b6103fc610d74565b005b6104186004803603810190610413919061321d565b610e44565b604051610425919061328b565b60405180910390f35b6104486004803603810190610443919061333c565b610ef5565b6040516104559190613321565b60405180910390f35b610466610fac565b005b610482600480360381019061047d91906133f2565b610fc0565b005b61048c610fd8565b604051610499919061328b565b60405180910390f35b6104bc60048036038101906104b79190613449565b610fe7565b6040516104c99190613111565b60405180910390f35b6104da611052565b6040516104e791906131c5565b60405180910390f35b6104f86110e4565b60405161050591906131c5565b60405180910390f35b6105286004803603810190610523919061369e565b611172565b005b61053261119a565b60405161053f919061342e565b60405180910390f35b610562600480360381019061055d9190613713565b6111a1565b005b61057e600480360381019061057991906137b3565b6112c4565b60405161058b9190613321565b60405180910390f35b6105ae60048036038101906105a991906138a1565b61156c565b005b6105ca60048036038101906105c5919061321d565b6116d8565b6040516105d791906131c5565b60405180910390f35b6105fa60048036038101906105f59190613449565b6117a4565b005b61061660048036038101906106119190613924565b6117c5565b6040516106239190613111565b60405180910390f35b610634611859565b6040516106419190613111565b60405180910390f35b610664600480360381019061065f919061333c565b611870565b005b6000610671826118f3565b9050919050565b60606000805461068790613993565b80601f01602080910402602001604051908101604052809291908181526020018280546106b390613993565b80156107005780601f106106d557610100808354040283529160200191610700565b820191906000526020600020905b8154815290600101906020018083116106e357829003601f168201915b5050505050905090565b60006107158261196d565b610754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074b90613a36565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81600860009054906101000a900460ff161580156107d2575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b156108a3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610820929190613a56565b602060405180830381865afa15801561083d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108619190613a94565b6108a257806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610899919061328b565b60405180910390fd5b5b6108ad83836119d9565b505050565b600a5481565b60096020528060005260406000206000915054906101000a900460ff1681565b82600860009054906101000a900460ff1615801561091b575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15610a2f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109635761095e848484611af0565b610a3b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016109ac929190613a56565b602060405180830381865afa1580156109c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ed9190613a94565b610a2e57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a25919061328b565b60405180910390fd5b5b610a3a848484611af0565b5b50505050565b600060076000838152602001908152602001600020600101549050919050565b600b5481565b610a7082610a41565b610a7981611b50565b610a838383611b64565b505050565b606481565b610a95611c45565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af990613b33565b60405180910390fd5b610b0c8282611c4d565b5050565b82600860009054906101000a900460ff16158015610b53575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15610c67573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b9b57610b96848484611d2f565b610c73565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610be4929190613a56565b602060405180830381865afa158015610c01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c259190613a94565b610c6657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c5d919061328b565b60405180910390fd5b5b610c72848484611d2f565b5b50505050565b60606000610c8683610ef5565b905060008167ffffffffffffffff811115610ca457610ca3613573565b5b604051908082528060200260200182016040528015610cd25781602001602082028036833780820191505090505b5090506000805b600a54811015610d68578573ffffffffffffffffffffffffffffffffffffffff16610d0382610e44565b73ffffffffffffffffffffffffffffffffffffffff1603610d4d5780838381518110610d3257610d31613b53565b5b6020026020010181815250508180610d4990613bb1565b9250505b83820315610d68578080610d6090613bb1565b915050610cd9565b50819350505050919050565b610d7c610fd8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610de0576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600860009054906101000a900460ff1615610e27576040517f905e710700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600860006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee390613c6b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90613cfd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fb4611d4f565b610fbe6000611dcd565b565b6000801b610fcd81611b50565b81600b819055505050565b6000610fe2611e93565b905090565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606001805461106190613993565b80601f016020809104026020016040519081016040528092919081815260200182805461108d90613993565b80156110da5780601f106110af576101008083540402835291602001916110da565b820191906000526020600020905b8154815290600101906020018083116110bd57829003601f168201915b5050505050905090565b600c80546110f190613993565b80601f016020809104026020016040519081016040528092919081815260200182805461111d90613993565b801561116a5780601f1061113f5761010080835404028352916020019161116a565b820191906000526020600020905b81548152906001019060200180831161114d57829003601f168201915b505050505081565b6000801b61117f81611b50565b81600c9080519060200190611195929190612fba565b505050565b6000801b81565b81600860009054906101000a900460ff161580156111e4575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b156112b5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611232929190613a56565b602060405180830381865afa15801561124f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112739190613a94565b6112b457806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112ab919061328b565b60405180910390fd5b5b6112bf8383611ebd565b505050565b600060026006540361130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613d69565b60405180910390fd5b60026006819055506064600a541061134f576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113d3576040517fddefae2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113f23373ffffffffffffffffffffffffffffffffffffffff16611ed3565b15611429576040517f2dd5679600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60003360405160200161143c9190613dd1565b6040516020818303038152906040528051906020012090506114a2848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b5483611ef6565b6114d8576040517f0ed6f64500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600a549050600a60008154809291906114f290613bb1565b91905055506001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506115593382611f0d565b8092505050600160068190555092915050565b83600860009054906101000a900460ff161580156115af575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b156116c4573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115f8576115f385858585611f2b565b6116d1565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611641929190613a56565b602060405180830381865afa15801561165e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116829190613a94565b6116c357336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016116ba919061328b565b60405180910390fd5b5b6116d085858585611f2b565b5b5050505050565b60606116e38261196d565b611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990613e5e565b60405180910390fd5b600061172c611f8d565b90506000815111611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990613eca565b60405180910390fd5b8061177c8461201f565b60405160200161178d929190613f26565b604051602081830303815290604052915050919050565b6117ad82610a41565b6117b681611b50565b6117c08383611c4d565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600860009054906101000a900460ff16905090565b611878611d4f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613fbc565b60405180910390fd5b6118f081611dcd565b50565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061196657506119658261217f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60006119e482610e44565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b9061404e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611a73611c45565b73ffffffffffffffffffffffffffffffffffffffff161480611aa25750611aa181611a9c611c45565b6117c5565b5b611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad8906140e0565b60405180910390fd5b611aeb8383612261565b505050565b611b01611afb611c45565b8261231a565b611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3790614172565b60405180910390fd5b611b4b8383836123f8565b505050565b611b6181611b5c611c45565b61265e565b50565b611b6e8282610fe7565b611c415760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611be6611c45565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600033905090565b611c578282610fe7565b15611d2b5760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611cd0611c45565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611d4a8383836040518060200160405280600081525061156c565b505050565b611d57611c45565b73ffffffffffffffffffffffffffffffffffffffff16611d75610fd8565b73ffffffffffffffffffffffffffffffffffffffff1614611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc2906141de565b60405180910390fd5b565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ecf611ec8611c45565b83836126fb565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082611f038584612867565b1490509392505050565b611f278282604051806020016040528060008152506128dc565b5050565b611f3c611f36611c45565b8361231a565b611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7290614172565b60405180910390fd5b611f8784848484612937565b50505050565b6060600c8054611f9c90613993565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc890613993565b80156120155780601f10611fea57610100808354040283529160200191612015565b820191906000526020600020905b815481529060010190602001808311611ff857829003601f168201915b5050505050905090565b606060008203612066576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061217a565b600082905060005b6000821461209857808061208190613bb1565b915050600a82612091919061422d565b915061206e565b60008167ffffffffffffffff8111156120b4576120b3613573565b5b6040519080825280601f01601f1916602001820160405280156120e65781602001600182028036833780820191505090505b5090505b60008514612173576001826120ff919061425e565b9150600a8561210e9190614292565b603061211a91906142c3565b60f81b8183815181106121305761212f613b53565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561216c919061422d565b94506120ea565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061224a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061225a575061225982612993565b5b9050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122d483610e44565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123258261196d565b612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b9061438b565b60405180910390fd5b600061236f83610e44565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123b157506123b081856117c5565b5b806123ef57508373ffffffffffffffffffffffffffffffffffffffff166123d78461070a565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661241882610e44565b73ffffffffffffffffffffffffffffffffffffffff161461246e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124659061441d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d4906144af565b60405180910390fd5b6124e88383836129fd565b6124f3600082612261565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612543919061425e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461259a91906142c3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612659838383612a02565b505050565b6126688282610fe7565b6126f75761268d8173ffffffffffffffffffffffffffffffffffffffff166014612a07565b61269b8360001c6020612a07565b6040516020016126ac929190614567565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee91906131c5565b60405180910390fd5b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612769576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612760906145ed565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161285a9190613111565b60405180910390a3505050565b60008082905060005b84518110156128d157600085828151811061288e5761288d613b53565b5b602002602001015190508083116128b0576128a98382612c43565b92506128bd565b6128ba8184612c43565b92505b5080806128c990613bb1565b915050612870565b508091505092915050565b6128e68383612c5a565b6128f36000848484612e33565b612932576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129299061467f565b60405180910390fd5b505050565b6129428484846123f8565b61294e84848484612e33565b61298d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129849061467f565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b505050565b606060006002836002612a1a919061469f565b612a2491906142c3565b67ffffffffffffffff811115612a3d57612a3c613573565b5b6040519080825280601f01601f191660200182016040528015612a6f5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612aa757612aa6613b53565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612b0b57612b0a613b53565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612b4b919061469f565b612b5591906142c3565b90505b6001811115612bf5577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612b9757612b96613b53565b5b1a60f81b828281518110612bae57612bad613b53565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612bee906146f9565b9050612b58565b5060008414612c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c309061476e565b60405180910390fd5b8091505092915050565b600082600052816020526040600020905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc0906147da565b60405180910390fd5b612cd28161196d565b15612d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0990614846565b60405180910390fd5b612d1e600083836129fd565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d6e91906142c3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e2f60008383612a02565b5050565b6000612e548473ffffffffffffffffffffffffffffffffffffffff16611ed3565b15612fad578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e7d611c45565b8786866040518563ffffffff1660e01b8152600401612e9f94939291906148bb565b6020604051808303816000875af1925050508015612edb57506040513d601f19601f82011682018060405250810190612ed8919061491c565b60015b612f5d573d8060008114612f0b576040519150601f19603f3d011682016040523d82523d6000602084013e612f10565b606091505b506000815103612f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4c9061467f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612fb2565b600190505b949350505050565b828054612fc690613993565b90600052602060002090601f016020900481019282612fe8576000855561302f565b82601f1061300157805160ff191683800117855561302f565b8280016001018555821561302f579182015b8281111561302e578251825591602001919060010190613013565b5b50905061303c9190613040565b5090565b5b80821115613059576000816000905550600101613041565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130a681613071565b81146130b157600080fd5b50565b6000813590506130c38161309d565b92915050565b6000602082840312156130df576130de613067565b5b60006130ed848285016130b4565b91505092915050565b60008115159050919050565b61310b816130f6565b82525050565b60006020820190506131266000830184613102565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561316657808201518184015260208101905061314b565b83811115613175576000848401525b50505050565b6000601f19601f8301169050919050565b60006131978261312c565b6131a18185613137565b93506131b1818560208601613148565b6131ba8161317b565b840191505092915050565b600060208201905081810360008301526131df818461318c565b905092915050565b6000819050919050565b6131fa816131e7565b811461320557600080fd5b50565b600081359050613217816131f1565b92915050565b60006020828403121561323357613232613067565b5b600061324184828501613208565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132758261324a565b9050919050565b6132858161326a565b82525050565b60006020820190506132a0600083018461327c565b92915050565b6132af8161326a565b81146132ba57600080fd5b50565b6000813590506132cc816132a6565b92915050565b600080604083850312156132e9576132e8613067565b5b60006132f7858286016132bd565b925050602061330885828601613208565b9150509250929050565b61331b816131e7565b82525050565b60006020820190506133366000830184613312565b92915050565b60006020828403121561335257613351613067565b5b6000613360848285016132bd565b91505092915050565b60008060006060848603121561338257613381613067565b5b6000613390868287016132bd565b93505060206133a1868287016132bd565b92505060406133b286828701613208565b9150509250925092565b6000819050919050565b6133cf816133bc565b81146133da57600080fd5b50565b6000813590506133ec816133c6565b92915050565b60006020828403121561340857613407613067565b5b6000613416848285016133dd565b91505092915050565b613428816133bc565b82525050565b6000602082019050613443600083018461341f565b92915050565b600080604083850312156134605761345f613067565b5b600061346e858286016133dd565b925050602061347f858286016132bd565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134be816131e7565b82525050565b60006134d083836134b5565b60208301905092915050565b6000602082019050919050565b60006134f482613489565b6134fe8185613494565b9350613509836134a5565b8060005b8381101561353a57815161352188826134c4565b975061352c836134dc565b92505060018101905061350d565b5085935050505092915050565b6000602082019050818103600083015261356181846134e9565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135ab8261317b565b810181811067ffffffffffffffff821117156135ca576135c9613573565b5b80604052505050565b60006135dd61305d565b90506135e982826135a2565b919050565b600067ffffffffffffffff82111561360957613608613573565b5b6136128261317b565b9050602081019050919050565b82818337600083830152505050565b600061364161363c846135ee565b6135d3565b90508281526020810184848401111561365d5761365c61356e565b5b61366884828561361f565b509392505050565b600082601f83011261368557613684613569565b5b813561369584826020860161362e565b91505092915050565b6000602082840312156136b4576136b3613067565b5b600082013567ffffffffffffffff8111156136d2576136d161306c565b5b6136de84828501613670565b91505092915050565b6136f0816130f6565b81146136fb57600080fd5b50565b60008135905061370d816136e7565b92915050565b6000806040838503121561372a57613729613067565b5b6000613738858286016132bd565b9250506020613749858286016136fe565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261377357613772613569565b5b8235905067ffffffffffffffff8111156137905761378f613753565b5b6020830191508360208202830111156137ac576137ab613758565b5b9250929050565b600080602083850312156137ca576137c9613067565b5b600083013567ffffffffffffffff8111156137e8576137e761306c565b5b6137f48582860161375d565b92509250509250929050565b600067ffffffffffffffff82111561381b5761381a613573565b5b6138248261317b565b9050602081019050919050565b600061384461383f84613800565b6135d3565b9050828152602081018484840111156138605761385f61356e565b5b61386b84828561361f565b509392505050565b600082601f83011261388857613887613569565b5b8135613898848260208601613831565b91505092915050565b600080600080608085870312156138bb576138ba613067565b5b60006138c9878288016132bd565b94505060206138da878288016132bd565b93505060406138eb87828801613208565b925050606085013567ffffffffffffffff81111561390c5761390b61306c565b5b61391887828801613873565b91505092959194509250565b6000806040838503121561393b5761393a613067565b5b6000613949858286016132bd565b925050602061395a858286016132bd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139ab57607f821691505b6020821081036139be576139bd613964565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613a20602c83613137565b9150613a2b826139c4565b604082019050919050565b60006020820190508181036000830152613a4f81613a13565b9050919050565b6000604082019050613a6b600083018561327c565b613a78602083018461327c565b9392505050565b600081519050613a8e816136e7565b92915050565b600060208284031215613aaa57613aa9613067565b5b6000613ab884828501613a7f565b91505092915050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000613b1d602f83613137565b9150613b2882613ac1565b604082019050919050565b60006020820190508181036000830152613b4c81613b10565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bbc826131e7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613bee57613bed613b82565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613c55602983613137565b9150613c6082613bf9565b604082019050919050565b60006020820190508181036000830152613c8481613c48565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613ce7602a83613137565b9150613cf282613c8b565b604082019050919050565b60006020820190508181036000830152613d1681613cda565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613d53601f83613137565b9150613d5e82613d1d565b602082019050919050565b60006020820190508181036000830152613d8281613d46565b9050919050565b60008160601b9050919050565b6000613da182613d89565b9050919050565b6000613db382613d96565b9050919050565b613dcb613dc68261326a565b613da8565b82525050565b6000613ddd8284613dba565b60148201915081905092915050565b7f444543414c3a2055524920717565727920666f72206e6f6e6578697374656e7460008201527f20746f6b656e0000000000000000000000000000000000000000000000000000602082015250565b6000613e48602683613137565b9150613e5382613dec565b604082019050919050565b60006020820190508181036000830152613e7781613e3b565b9050919050565b7f62617365555249206e6f74207365740000000000000000000000000000000000600082015250565b6000613eb4600f83613137565b9150613ebf82613e7e565b602082019050919050565b60006020820190508181036000830152613ee381613ea7565b9050919050565b600081905092915050565b6000613f008261312c565b613f0a8185613eea565b9350613f1a818560208601613148565b80840191505092915050565b6000613f328285613ef5565b9150613f3e8284613ef5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fa6602683613137565b9150613fb182613f4a565b604082019050919050565b60006020820190508181036000830152613fd581613f99565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614038602183613137565b915061404382613fdc565b604082019050919050565b600060208201905081810360008301526140678161402b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006140ca603883613137565b91506140d58261406e565b604082019050919050565b600060208201905081810360008301526140f9816140bd565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061415c603183613137565b915061416782614100565b604082019050919050565b6000602082019050818103600083015261418b8161414f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141c8602083613137565b91506141d382614192565b602082019050919050565b600060208201905081810360008301526141f7816141bb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614238826131e7565b9150614243836131e7565b925082614253576142526141fe565b5b828204905092915050565b6000614269826131e7565b9150614274836131e7565b92508282101561428757614286613b82565b5b828203905092915050565b600061429d826131e7565b91506142a8836131e7565b9250826142b8576142b76141fe565b5b828206905092915050565b60006142ce826131e7565b91506142d9836131e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561430e5761430d613b82565b5b828201905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614375602c83613137565b915061438082614319565b604082019050919050565b600060208201905081810360008301526143a481614368565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614407602583613137565b9150614412826143ab565b604082019050919050565b60006020820190508181036000830152614436816143fa565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614499602483613137565b91506144a48261443d565b604082019050919050565b600060208201905081810360008301526144c88161448c565b9050919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000614505601783613eea565b9150614510826144cf565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000614551601183613eea565b915061455c8261451b565b601182019050919050565b6000614572826144f8565b915061457e8285613ef5565b915061458982614544565b91506145958284613ef5565b91508190509392505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006145d7601983613137565b91506145e2826145a1565b602082019050919050565b60006020820190508181036000830152614606816145ca565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614669603283613137565b91506146748261460d565b604082019050919050565b600060208201905081810360008301526146988161465c565b9050919050565b60006146aa826131e7565b91506146b5836131e7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146ee576146ed613b82565b5b828202905092915050565b6000614704826131e7565b91506000820361471757614716613b82565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000614758602083613137565b915061476382614722565b602082019050919050565b600060208201905081810360008301526147878161474b565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006147c4602083613137565b91506147cf8261478e565b602082019050919050565b600060208201905081810360008301526147f3816147b7565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614830601c83613137565b915061483b826147fa565b602082019050919050565b6000602082019050818103600083015261485f81614823565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061488d82614866565b6148978185614871565b93506148a7818560208601613148565b6148b08161317b565b840191505092915050565b60006080820190506148d0600083018761327c565b6148dd602083018661327c565b6148ea6040830185613312565b81810360608301526148fc8184614882565b905095945050505050565b6000815190506149168161309d565b92915050565b60006020828403121561493257614931613067565b5b600061494084828501614907565b9150509291505056fea264697066735822122025d6d46d5cdbf25c19b0a379d97ef1495e4dd7ff4c77ed01a5f1ce22bf9338d464736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f636c69656e742d6170692e646563612e73797374656d732f646563616c2f6d657461646174612f392f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000d523545b49076807094c0718f5eba00c0ae72fd600000000000000000000000070feeec90d37dc73d9ded8cfafd7ede3f697b70b

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c806370a082311161011a578063a217fddf116100ad578063c87b56dd1161007c578063c87b56dd146105b0578063d547741f146105e0578063e985e9c5146105fc578063ecba222a1461062c578063f2fde38b1461064a576101fb565b8063a217fddf1461052a578063a22cb46514610548578063b77a147b14610564578063b88d4fde14610594576101fb565b806391d14854116100e957806391d14854146104a257806395d89b41146104d25780639abc8320146104f0578063a0bcfc7f1461050e576101fb565b806370a082311461042e578063715018a61461045e5780637cb64759146104685780638da5cb5b14610484576101fb565b80632eb4a7ab1161019257806342842e0e1161016157806342842e0e146103a85780635de6dc55146103c45780635ef9432a146103f45780636352211e146103fe576101fb565b80632eb4a7ab146103345780632f2ff15d1461035257806332cb6b0c1461036e57806336568abe1461038c576101fb565b806318160ddd116101ce57806318160ddd1461029a5780631e7269c5146102b857806323b872dd146102e8578063248a9ca314610304576101fb565b806301ffc9a71461020057806306fdde0314610230578063081812fc1461024e578063095ea7b31461027e575b600080fd5b61021a600480360381019061021591906130c9565b610666565b6040516102279190613111565b60405180910390f35b610238610678565b60405161024591906131c5565b60405180910390f35b6102686004803603810190610263919061321d565b61070a565b604051610275919061328b565b60405180910390f35b610298600480360381019061029391906132d2565b61078f565b005b6102a26108b2565b6040516102af9190613321565b60405180910390f35b6102d260048036038101906102cd919061333c565b6108b8565b6040516102df9190613111565b60405180910390f35b61030260048036038101906102fd9190613369565b6108d8565b005b61031e600480360381019061031991906133f2565b610a41565b60405161032b919061342e565b60405180910390f35b61033c610a61565b604051610349919061342e565b60405180910390f35b61036c60048036038101906103679190613449565b610a67565b005b610376610a88565b6040516103839190613321565b60405180910390f35b6103a660048036038101906103a19190613449565b610a8d565b005b6103c260048036038101906103bd9190613369565b610b10565b005b6103de60048036038101906103d9919061333c565b610c79565b6040516103eb9190613547565b60405180910390f35b6103fc610d74565b005b6104186004803603810190610413919061321d565b610e44565b604051610425919061328b565b60405180910390f35b6104486004803603810190610443919061333c565b610ef5565b6040516104559190613321565b60405180910390f35b610466610fac565b005b610482600480360381019061047d91906133f2565b610fc0565b005b61048c610fd8565b604051610499919061328b565b60405180910390f35b6104bc60048036038101906104b79190613449565b610fe7565b6040516104c99190613111565b60405180910390f35b6104da611052565b6040516104e791906131c5565b60405180910390f35b6104f86110e4565b60405161050591906131c5565b60405180910390f35b6105286004803603810190610523919061369e565b611172565b005b61053261119a565b60405161053f919061342e565b60405180910390f35b610562600480360381019061055d9190613713565b6111a1565b005b61057e600480360381019061057991906137b3565b6112c4565b60405161058b9190613321565b60405180910390f35b6105ae60048036038101906105a991906138a1565b61156c565b005b6105ca60048036038101906105c5919061321d565b6116d8565b6040516105d791906131c5565b60405180910390f35b6105fa60048036038101906105f59190613449565b6117a4565b005b61061660048036038101906106119190613924565b6117c5565b6040516106239190613111565b60405180910390f35b610634611859565b6040516106419190613111565b60405180910390f35b610664600480360381019061065f919061333c565b611870565b005b6000610671826118f3565b9050919050565b60606000805461068790613993565b80601f01602080910402602001604051908101604052809291908181526020018280546106b390613993565b80156107005780601f106106d557610100808354040283529160200191610700565b820191906000526020600020905b8154815290600101906020018083116106e357829003601f168201915b5050505050905090565b60006107158261196d565b610754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074b90613a36565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81600860009054906101000a900460ff161580156107d2575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b156108a3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610820929190613a56565b602060405180830381865afa15801561083d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108619190613a94565b6108a257806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610899919061328b565b60405180910390fd5b5b6108ad83836119d9565b505050565b600a5481565b60096020528060005260406000206000915054906101000a900460ff1681565b82600860009054906101000a900460ff1615801561091b575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15610a2f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109635761095e848484611af0565b610a3b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016109ac929190613a56565b602060405180830381865afa1580156109c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ed9190613a94565b610a2e57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a25919061328b565b60405180910390fd5b5b610a3a848484611af0565b5b50505050565b600060076000838152602001908152602001600020600101549050919050565b600b5481565b610a7082610a41565b610a7981611b50565b610a838383611b64565b505050565b606481565b610a95611c45565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af990613b33565b60405180910390fd5b610b0c8282611c4d565b5050565b82600860009054906101000a900460ff16158015610b53575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15610c67573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b9b57610b96848484611d2f565b610c73565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610be4929190613a56565b602060405180830381865afa158015610c01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c259190613a94565b610c6657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c5d919061328b565b60405180910390fd5b5b610c72848484611d2f565b5b50505050565b60606000610c8683610ef5565b905060008167ffffffffffffffff811115610ca457610ca3613573565b5b604051908082528060200260200182016040528015610cd25781602001602082028036833780820191505090505b5090506000805b600a54811015610d68578573ffffffffffffffffffffffffffffffffffffffff16610d0382610e44565b73ffffffffffffffffffffffffffffffffffffffff1603610d4d5780838381518110610d3257610d31613b53565b5b6020026020010181815250508180610d4990613bb1565b9250505b83820315610d68578080610d6090613bb1565b915050610cd9565b50819350505050919050565b610d7c610fd8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610de0576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600860009054906101000a900460ff1615610e27576040517f905e710700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600860006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee390613c6b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90613cfd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fb4611d4f565b610fbe6000611dcd565b565b6000801b610fcd81611b50565b81600b819055505050565b6000610fe2611e93565b905090565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606001805461106190613993565b80601f016020809104026020016040519081016040528092919081815260200182805461108d90613993565b80156110da5780601f106110af576101008083540402835291602001916110da565b820191906000526020600020905b8154815290600101906020018083116110bd57829003601f168201915b5050505050905090565b600c80546110f190613993565b80601f016020809104026020016040519081016040528092919081815260200182805461111d90613993565b801561116a5780601f1061113f5761010080835404028352916020019161116a565b820191906000526020600020905b81548152906001019060200180831161114d57829003601f168201915b505050505081565b6000801b61117f81611b50565b81600c9080519060200190611195929190612fba565b505050565b6000801b81565b81600860009054906101000a900460ff161580156111e4575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b156112b5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611232929190613a56565b602060405180830381865afa15801561124f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112739190613a94565b6112b457806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112ab919061328b565b60405180910390fd5b5b6112bf8383611ebd565b505050565b600060026006540361130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613d69565b60405180910390fd5b60026006819055506064600a541061134f576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113d3576040517fddefae2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113f23373ffffffffffffffffffffffffffffffffffffffff16611ed3565b15611429576040517f2dd5679600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60003360405160200161143c9190613dd1565b6040516020818303038152906040528051906020012090506114a2848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b5483611ef6565b6114d8576040517f0ed6f64500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600a549050600a60008154809291906114f290613bb1565b91905055506001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506115593382611f0d565b8092505050600160068190555092915050565b83600860009054906101000a900460ff161580156115af575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b156116c4573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115f8576115f385858585611f2b565b6116d1565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611641929190613a56565b602060405180830381865afa15801561165e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116829190613a94565b6116c357336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016116ba919061328b565b60405180910390fd5b5b6116d085858585611f2b565b5b5050505050565b60606116e38261196d565b611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990613e5e565b60405180910390fd5b600061172c611f8d565b90506000815111611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990613eca565b60405180910390fd5b8061177c8461201f565b60405160200161178d929190613f26565b604051602081830303815290604052915050919050565b6117ad82610a41565b6117b681611b50565b6117c08383611c4d565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600860009054906101000a900460ff16905090565b611878611d4f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613fbc565b60405180910390fd5b6118f081611dcd565b50565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061196657506119658261217f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60006119e482610e44565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b9061404e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611a73611c45565b73ffffffffffffffffffffffffffffffffffffffff161480611aa25750611aa181611a9c611c45565b6117c5565b5b611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad8906140e0565b60405180910390fd5b611aeb8383612261565b505050565b611b01611afb611c45565b8261231a565b611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3790614172565b60405180910390fd5b611b4b8383836123f8565b505050565b611b6181611b5c611c45565b61265e565b50565b611b6e8282610fe7565b611c415760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611be6611c45565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600033905090565b611c578282610fe7565b15611d2b5760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611cd0611c45565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611d4a8383836040518060200160405280600081525061156c565b505050565b611d57611c45565b73ffffffffffffffffffffffffffffffffffffffff16611d75610fd8565b73ffffffffffffffffffffffffffffffffffffffff1614611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc2906141de565b60405180910390fd5b565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ecf611ec8611c45565b83836126fb565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082611f038584612867565b1490509392505050565b611f278282604051806020016040528060008152506128dc565b5050565b611f3c611f36611c45565b8361231a565b611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7290614172565b60405180910390fd5b611f8784848484612937565b50505050565b6060600c8054611f9c90613993565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc890613993565b80156120155780601f10611fea57610100808354040283529160200191612015565b820191906000526020600020905b815481529060010190602001808311611ff857829003601f168201915b5050505050905090565b606060008203612066576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061217a565b600082905060005b6000821461209857808061208190613bb1565b915050600a82612091919061422d565b915061206e565b60008167ffffffffffffffff8111156120b4576120b3613573565b5b6040519080825280601f01601f1916602001820160405280156120e65781602001600182028036833780820191505090505b5090505b60008514612173576001826120ff919061425e565b9150600a8561210e9190614292565b603061211a91906142c3565b60f81b8183815181106121305761212f613b53565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561216c919061422d565b94506120ea565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061224a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061225a575061225982612993565b5b9050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122d483610e44565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123258261196d565b612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b9061438b565b60405180910390fd5b600061236f83610e44565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123b157506123b081856117c5565b5b806123ef57508373ffffffffffffffffffffffffffffffffffffffff166123d78461070a565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661241882610e44565b73ffffffffffffffffffffffffffffffffffffffff161461246e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124659061441d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d4906144af565b60405180910390fd5b6124e88383836129fd565b6124f3600082612261565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612543919061425e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461259a91906142c3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612659838383612a02565b505050565b6126688282610fe7565b6126f75761268d8173ffffffffffffffffffffffffffffffffffffffff166014612a07565b61269b8360001c6020612a07565b6040516020016126ac929190614567565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee91906131c5565b60405180910390fd5b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612769576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612760906145ed565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161285a9190613111565b60405180910390a3505050565b60008082905060005b84518110156128d157600085828151811061288e5761288d613b53565b5b602002602001015190508083116128b0576128a98382612c43565b92506128bd565b6128ba8184612c43565b92505b5080806128c990613bb1565b915050612870565b508091505092915050565b6128e68383612c5a565b6128f36000848484612e33565b612932576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129299061467f565b60405180910390fd5b505050565b6129428484846123f8565b61294e84848484612e33565b61298d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129849061467f565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b505050565b606060006002836002612a1a919061469f565b612a2491906142c3565b67ffffffffffffffff811115612a3d57612a3c613573565b5b6040519080825280601f01601f191660200182016040528015612a6f5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612aa757612aa6613b53565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612b0b57612b0a613b53565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612b4b919061469f565b612b5591906142c3565b90505b6001811115612bf5577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612b9757612b96613b53565b5b1a60f81b828281518110612bae57612bad613b53565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612bee906146f9565b9050612b58565b5060008414612c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c309061476e565b60405180910390fd5b8091505092915050565b600082600052816020526040600020905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc0906147da565b60405180910390fd5b612cd28161196d565b15612d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0990614846565b60405180910390fd5b612d1e600083836129fd565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d6e91906142c3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e2f60008383612a02565b5050565b6000612e548473ffffffffffffffffffffffffffffffffffffffff16611ed3565b15612fad578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e7d611c45565b8786866040518563ffffffff1660e01b8152600401612e9f94939291906148bb565b6020604051808303816000875af1925050508015612edb57506040513d601f19601f82011682018060405250810190612ed8919061491c565b60015b612f5d573d8060008114612f0b576040519150601f19603f3d011682016040523d82523d6000602084013e612f10565b606091505b506000815103612f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4c9061467f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612fb2565b600190505b949350505050565b828054612fc690613993565b90600052602060002090601f016020900481019282612fe8576000855561302f565b82601f1061300157805160ff191683800117855561302f565b8280016001018555821561302f579182015b8281111561302e578251825591602001919060010190613013565b5b50905061303c9190613040565b5090565b5b80821115613059576000816000905550600101613041565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130a681613071565b81146130b157600080fd5b50565b6000813590506130c38161309d565b92915050565b6000602082840312156130df576130de613067565b5b60006130ed848285016130b4565b91505092915050565b60008115159050919050565b61310b816130f6565b82525050565b60006020820190506131266000830184613102565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561316657808201518184015260208101905061314b565b83811115613175576000848401525b50505050565b6000601f19601f8301169050919050565b60006131978261312c565b6131a18185613137565b93506131b1818560208601613148565b6131ba8161317b565b840191505092915050565b600060208201905081810360008301526131df818461318c565b905092915050565b6000819050919050565b6131fa816131e7565b811461320557600080fd5b50565b600081359050613217816131f1565b92915050565b60006020828403121561323357613232613067565b5b600061324184828501613208565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132758261324a565b9050919050565b6132858161326a565b82525050565b60006020820190506132a0600083018461327c565b92915050565b6132af8161326a565b81146132ba57600080fd5b50565b6000813590506132cc816132a6565b92915050565b600080604083850312156132e9576132e8613067565b5b60006132f7858286016132bd565b925050602061330885828601613208565b9150509250929050565b61331b816131e7565b82525050565b60006020820190506133366000830184613312565b92915050565b60006020828403121561335257613351613067565b5b6000613360848285016132bd565b91505092915050565b60008060006060848603121561338257613381613067565b5b6000613390868287016132bd565b93505060206133a1868287016132bd565b92505060406133b286828701613208565b9150509250925092565b6000819050919050565b6133cf816133bc565b81146133da57600080fd5b50565b6000813590506133ec816133c6565b92915050565b60006020828403121561340857613407613067565b5b6000613416848285016133dd565b91505092915050565b613428816133bc565b82525050565b6000602082019050613443600083018461341f565b92915050565b600080604083850312156134605761345f613067565b5b600061346e858286016133dd565b925050602061347f858286016132bd565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134be816131e7565b82525050565b60006134d083836134b5565b60208301905092915050565b6000602082019050919050565b60006134f482613489565b6134fe8185613494565b9350613509836134a5565b8060005b8381101561353a57815161352188826134c4565b975061352c836134dc565b92505060018101905061350d565b5085935050505092915050565b6000602082019050818103600083015261356181846134e9565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135ab8261317b565b810181811067ffffffffffffffff821117156135ca576135c9613573565b5b80604052505050565b60006135dd61305d565b90506135e982826135a2565b919050565b600067ffffffffffffffff82111561360957613608613573565b5b6136128261317b565b9050602081019050919050565b82818337600083830152505050565b600061364161363c846135ee565b6135d3565b90508281526020810184848401111561365d5761365c61356e565b5b61366884828561361f565b509392505050565b600082601f83011261368557613684613569565b5b813561369584826020860161362e565b91505092915050565b6000602082840312156136b4576136b3613067565b5b600082013567ffffffffffffffff8111156136d2576136d161306c565b5b6136de84828501613670565b91505092915050565b6136f0816130f6565b81146136fb57600080fd5b50565b60008135905061370d816136e7565b92915050565b6000806040838503121561372a57613729613067565b5b6000613738858286016132bd565b9250506020613749858286016136fe565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261377357613772613569565b5b8235905067ffffffffffffffff8111156137905761378f613753565b5b6020830191508360208202830111156137ac576137ab613758565b5b9250929050565b600080602083850312156137ca576137c9613067565b5b600083013567ffffffffffffffff8111156137e8576137e761306c565b5b6137f48582860161375d565b92509250509250929050565b600067ffffffffffffffff82111561381b5761381a613573565b5b6138248261317b565b9050602081019050919050565b600061384461383f84613800565b6135d3565b9050828152602081018484840111156138605761385f61356e565b5b61386b84828561361f565b509392505050565b600082601f83011261388857613887613569565b5b8135613898848260208601613831565b91505092915050565b600080600080608085870312156138bb576138ba613067565b5b60006138c9878288016132bd565b94505060206138da878288016132bd565b93505060406138eb87828801613208565b925050606085013567ffffffffffffffff81111561390c5761390b61306c565b5b61391887828801613873565b91505092959194509250565b6000806040838503121561393b5761393a613067565b5b6000613949858286016132bd565b925050602061395a858286016132bd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139ab57607f821691505b6020821081036139be576139bd613964565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613a20602c83613137565b9150613a2b826139c4565b604082019050919050565b60006020820190508181036000830152613a4f81613a13565b9050919050565b6000604082019050613a6b600083018561327c565b613a78602083018461327c565b9392505050565b600081519050613a8e816136e7565b92915050565b600060208284031215613aaa57613aa9613067565b5b6000613ab884828501613a7f565b91505092915050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000613b1d602f83613137565b9150613b2882613ac1565b604082019050919050565b60006020820190508181036000830152613b4c81613b10565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bbc826131e7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613bee57613bed613b82565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613c55602983613137565b9150613c6082613bf9565b604082019050919050565b60006020820190508181036000830152613c8481613c48565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613ce7602a83613137565b9150613cf282613c8b565b604082019050919050565b60006020820190508181036000830152613d1681613cda565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613d53601f83613137565b9150613d5e82613d1d565b602082019050919050565b60006020820190508181036000830152613d8281613d46565b9050919050565b60008160601b9050919050565b6000613da182613d89565b9050919050565b6000613db382613d96565b9050919050565b613dcb613dc68261326a565b613da8565b82525050565b6000613ddd8284613dba565b60148201915081905092915050565b7f444543414c3a2055524920717565727920666f72206e6f6e6578697374656e7460008201527f20746f6b656e0000000000000000000000000000000000000000000000000000602082015250565b6000613e48602683613137565b9150613e5382613dec565b604082019050919050565b60006020820190508181036000830152613e7781613e3b565b9050919050565b7f62617365555249206e6f74207365740000000000000000000000000000000000600082015250565b6000613eb4600f83613137565b9150613ebf82613e7e565b602082019050919050565b60006020820190508181036000830152613ee381613ea7565b9050919050565b600081905092915050565b6000613f008261312c565b613f0a8185613eea565b9350613f1a818560208601613148565b80840191505092915050565b6000613f328285613ef5565b9150613f3e8284613ef5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fa6602683613137565b9150613fb182613f4a565b604082019050919050565b60006020820190508181036000830152613fd581613f99565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614038602183613137565b915061404382613fdc565b604082019050919050565b600060208201905081810360008301526140678161402b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006140ca603883613137565b91506140d58261406e565b604082019050919050565b600060208201905081810360008301526140f9816140bd565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061415c603183613137565b915061416782614100565b604082019050919050565b6000602082019050818103600083015261418b8161414f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141c8602083613137565b91506141d382614192565b602082019050919050565b600060208201905081810360008301526141f7816141bb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614238826131e7565b9150614243836131e7565b925082614253576142526141fe565b5b828204905092915050565b6000614269826131e7565b9150614274836131e7565b92508282101561428757614286613b82565b5b828203905092915050565b600061429d826131e7565b91506142a8836131e7565b9250826142b8576142b76141fe565b5b828206905092915050565b60006142ce826131e7565b91506142d9836131e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561430e5761430d613b82565b5b828201905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614375602c83613137565b915061438082614319565b604082019050919050565b600060208201905081810360008301526143a481614368565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614407602583613137565b9150614412826143ab565b604082019050919050565b60006020820190508181036000830152614436816143fa565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614499602483613137565b91506144a48261443d565b604082019050919050565b600060208201905081810360008301526144c88161448c565b9050919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000614505601783613eea565b9150614510826144cf565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000614551601183613eea565b915061455c8261451b565b601182019050919050565b6000614572826144f8565b915061457e8285613ef5565b915061458982614544565b91506145958284613ef5565b91508190509392505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006145d7601983613137565b91506145e2826145a1565b602082019050919050565b60006020820190508181036000830152614606816145ca565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614669603283613137565b91506146748261460d565b604082019050919050565b600060208201905081810360008301526146988161465c565b9050919050565b60006146aa826131e7565b91506146b5836131e7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146ee576146ed613b82565b5b828202905092915050565b6000614704826131e7565b91506000820361471757614716613b82565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000614758602083613137565b915061476382614722565b602082019050919050565b600060208201905081810360008301526147878161474b565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006147c4602083613137565b91506147cf8261478e565b602082019050919050565b600060208201905081810360008301526147f3816147b7565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614830601c83613137565b915061483b826147fa565b602082019050919050565b6000602082019050818103600083015261485f81614823565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061488d82614866565b6148978185614871565b93506148a7818560208601613148565b6148b08161317b565b840191505092915050565b60006080820190506148d0600083018761327c565b6148dd602083018661327c565b6148ea6040830185613312565b81810360608301526148fc8184614882565b905095945050505050565b6000815190506149168161309d565b92915050565b60006020828403121561493257614931613067565b5b600061494084828501614907565b9150509291505056fea264697066735822122025d6d46d5cdbf25c19b0a379d97ef1495e4dd7ff4c77ed01a5f1ce22bf9338d464736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f636c69656e742d6170692e646563612e73797374656d732f646563616c2f6d657461646174612f392f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000d523545b49076807094c0718f5eba00c0ae72fd600000000000000000000000070feeec90d37dc73d9ded8cfafd7ede3f697b70b

-----Decoded View---------------
Arg [0] : _baseUri (string): https://client-api.deca.systems/decal/metadata/9/
Arg [1] : _admins (address[]): 0xd523545B49076807094C0718F5eBa00C0aE72fD6,0x70FEEEC90D37dc73D9deD8cfAfd7edE3F697b70B

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000031
Arg [3] : 68747470733a2f2f636c69656e742d6170692e646563612e73797374656d732f
Arg [4] : 646563616c2f6d657461646174612f392f000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 000000000000000000000000d523545b49076807094c0718f5eba00c0ae72fd6
Arg [7] : 00000000000000000000000070feeec90d37dc73d9ded8cfafd7ede3f697b70b


Deployed Bytecode Sourcemap

62230:3905:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64693:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41718:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43278:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65199:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62485:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62440:38;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65374:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30118:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62569:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30511:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62522:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31559:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65557:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64194:435;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60809:253;;;:::i;:::-;;41412:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41142:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13385:103;;;:::i;:::-;;62933:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65969:163;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28578:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41887:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62601:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63071:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27683:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65005:188;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63209:611;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65748:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63826:362;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30903:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43797:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61068:122;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13643:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64693:198;64826:4;64849:36;64873:11;64849:23;:36::i;:::-;64842:43;;64693:198;;;:::o;41718:100::-;41772:13;41805:5;41798:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41718:100;:::o;43278:221::-;43354:7;43382:16;43390:7;43382;:16::i;:::-;43374:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43467:15;:24;43483:7;43467:24;;;;;;;;;;;;;;;;;;;;;43460:31;;43278:221;;;:::o;65199:169::-;65310:8;60437:32;;;;;;;;;;;60436:33;:93;;;;;60528:1;56739:42;60480:45;;;:49;60436:93;60424:277;;;56739:42;60561;;;60612:4;60619:8;60561:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60546:148;;60675:8;60656:28;;;;;;;;;;;:::i;:::-;;;;;;;;60546:148;60424:277;65330:32:::1;65344:8;65354:7;65330:13;:32::i;:::-;65199:169:::0;;;:::o;62485:30::-;;;;:::o;62440:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;65374:177::-;65495:4;59700:32;;;;;;;;;;;59699:33;:93;;;;;59791:1;56739:42;59743:45;;;:49;59699:93;59687:545;;;60014:10;60006:18;;:4;:18;;;60002:63;;65508:37:::1;65527:4;65533:2;65537:7;65508:18;:37::i;:::-;60049:7:::0;;60002:63;56739:42;60088;;;60139:4;60146:10;60088:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60073:152;;60204:10;60185:30;;;;;;;;;;;:::i;:::-;;;;;;;;60073:152;59687:545;65508:37:::1;65527:4;65533:2;65537:7;65508:18;:37::i;:::-;65374:177:::0;;;;;:::o;30118:131::-;30192:7;30219:6;:12;30226:4;30219:12;;;;;;;;;;;:22;;;30212:29;;30118:131;;;:::o;62569:25::-;;;;:::o;30511:147::-;30594:18;30607:4;30594:12;:18::i;:::-;28174:16;28185:4;28174:10;:16::i;:::-;30625:25:::1;30636:4;30642:7;30625:10;:25::i;:::-;30511:147:::0;;;:::o;62522:40::-;62559:3;62522:40;:::o;31559:218::-;31666:12;:10;:12::i;:::-;31655:23;;:7;:23;;;31647:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;31743:26;31755:4;31761:7;31743:11;:26::i;:::-;31559:218;;:::o;65557:185::-;65682:4;59700:32;;;;;;;;;;;59699:33;:93;;;;;59791:1;56739:42;59743:45;;;:49;59699:93;59687:545;;;60014:10;60006:18;;:4;:18;;;60002:63;;65695:41:::1;65718:4;65724:2;65728:7;65695:22;:41::i;:::-;60049:7:::0;;60002:63;56739:42;60088;;;60139:4;60146:10;60088:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60073:152;;60204:10;60185:30;;;;;;;;;;;:::i;:::-;;;;;;;;60073:152;59687:545;65695:41:::1;65718:4;65724:2;65728:7;65695:22;:41::i;:::-;65557:185:::0;;;;;:::o;64194:435::-;64272:16;64300:18;64321:17;64331:6;64321:9;:17::i;:::-;64300:38;;64345:25;64387:10;64373:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64345:53;;64405:12;64433:9;64428:174;64448:11;;64444:1;:15;64428:174;;;64493:6;64479:20;;:10;64487:1;64479:7;:10::i;:::-;:20;;;64475:82;;64529:1;64512:8;64521:4;64512:14;;;;;;;;:::i;:::-;;;;;;;:18;;;;;64541:6;;;;;:::i;:::-;;;;64475:82;64577:10;64569:4;:18;64565:29;64589:5;64565:29;64461:3;;;;;:::i;:::-;;;;64428:174;;;;64615:8;64608:15;;;;;64194:435;;;:::o;60809:253::-;60883:7;:5;:7::i;:::-;60869:21;;:10;:21;;;60865:62;;60908:11;;;;;;;;;;;;;;60865:62;60937:32;;;;;;;;;;;60933:78;;;60987:16;;;;;;;;;;;;;;60933:78;61052:4;61017:32;;:39;;;;;;;;;;;;;;;;;;60809:253::o;41412:239::-;41484:7;41504:13;41520:7;:16;41528:7;41520:16;;;;;;;;;;;;;;;;;;;;;41504:32;;41572:1;41555:19;;:5;:19;;;41547:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41638:5;41631:12;;;41412:239;;;:::o;41142:208::-;41214:7;41259:1;41242:19;;:5;:19;;;41234:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41326:9;:16;41336:5;41326:16;;;;;;;;;;;;;;;;41319:23;;41142:208;;;:::o;13385:103::-;12623:13;:11;:13::i;:::-;13450:30:::1;13477:1;13450:18;:30::i;:::-;13385:103::o:0;62933:132::-;27728:4;63005:18;;28174:16;28185:4;28174:10;:16::i;:::-;63048:11:::1;63035:10;:24;;;;62933:132:::0;;:::o;65969:163::-;66085:7;66111:15;:13;:15::i;:::-;66104:22;;65969:163;:::o;28578:147::-;28664:4;28688:6;:12;28695:4;28688:12;;;;;;;;;;;:20;;:29;28709:7;28688:29;;;;;;;;;;;;;;;;;;;;;;;;;28681:36;;28578:147;;;;:::o;41887:104::-;41943:13;41976:7;41969:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41887:104;:::o;62601:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63071:132::-;27728:4;63146:18;;28174:16;28185:4;28174:10;:16::i;:::-;63186:11:::1;63176:7;:21;;;;;;;;;;;;:::i;:::-;;63071:132:::0;;:::o;27683:49::-;27728:4;27683:49;;;:::o;65005:188::-;65124:8;60437:32;;;;;;;;;;;60436:33;:93;;;;;60528:1;56739:42;60480:45;;;:49;60436:93;60424:277;;;56739:42;60561;;;60612:4;60619:8;60561:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60546:148;;60675:8;60656:28;;;;;;;;;;;:::i;:::-;;;;;;;;60546:148;60424:277;65144:43:::1;65168:8;65178;65144:23;:43::i;:::-;65005:188:::0;;;:::o;63209:611::-;63302:7;7538:1;8136:7;;:19;8128:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7538:1;8269:7;:18;;;;62559:3:::1;63325:11;;:25;63321:56;;63359:18;;;;;;;;;;;;;;63321:56;63388:6;:18;63395:10;63388:18;;;;;;;;;;;;;;;;;;;;;;;;;63384:46;;;63415:15;;;;;;;;;;;;;;63384:46;63441:23;:10;:21;;;:23::i;:::-;63437:60;;;63473:24;;;;;;;;;;;;;;63437:60;63504:12;63546:10;63529:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;63519:39;;;;;;63504:54;;63570:50;63589:12;;63570:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63603:10;;63615:4;63570:18;:50::i;:::-;63565:101;;63636:30;;;;;;;;;;;;;;63565:101;63675:15;63693:11;;63675:29;;63711:11;;:13;;;;;;;;;:::i;:::-;;;;;;63752:4;63731:6;:18;63738:10;63731:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;63763:30;63773:10;63785:7;63763:9;:30::i;:::-;63807:7;63800:14;;;;7494:1:::0;8448:7;:22;;;;63209:611;;;;:::o;65748:215::-;65897:4;59700:32;;;;;;;;;;;59699:33;:93;;;;;59791:1;56739:42;59743:45;;;:49;59699:93;59687:545;;;60014:10;60006:18;;:4;:18;;;60002:63;;65910:47:::1;65933:4;65939:2;65943:7;65952:4;65910:22;:47::i;:::-;60049:7:::0;;60002:63;56739:42;60088;;;60139:4;60146:10;60088:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60073:152;;60204:10;60185:30;;;;;;;;;;;:::i;:::-;;;;;;;;60073:152;59687:545;65910:47:::1;65933:4;65939:2;65943:7;65952:4;65910:22;:47::i;:::-;65748:215:::0;;;;;;:::o;63826:362::-;63920:13;63953:17;63961:8;63953:7;:17::i;:::-;63945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64020:21;64044:10;:8;:10::i;:::-;64020:34;;64093:1;64075:7;64069:21;:25;64061:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;64152:7;64161:19;:8;:17;:19::i;:::-;64135:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64121:61;;;63826:362;;;:::o;30903:149::-;30987:18;31000:4;30987:12;:18::i;:::-;28174:16;28185:4;28174:10;:16::i;:::-;31018:26:::1;31030:4;31036:7;31018:11;:26::i;:::-;30903:149:::0;;;:::o;43797:164::-;43894:4;43918:18;:25;43937:5;43918:25;;;;;;;;;;;;;;;:35;43944:8;43918:35;;;;;;;;;;;;;;;;;;;;;;;;;43911:42;;43797:164;;;;:::o;61068:122::-;61132:4;61152:32;;;;;;;;;;;61145:39;;61068:122;:::o;13643:201::-;12623:13;:11;:13::i;:::-;13752:1:::1;13732:22;;:8;:22;;::::0;13724:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;13808:28;13827:8;13808:18;:28::i;:::-;13643:201:::0;:::o;28282:204::-;28367:4;28406:32;28391:47;;;:11;:47;;;;:87;;;;28442:36;28466:11;28442:23;:36::i;:::-;28391:87;28384:94;;28282:204;;;:::o;46532:127::-;46597:4;46649:1;46621:30;;:7;:16;46629:7;46621:16;;;;;;;;;;;;;;;;;;;;;:30;;;;46614:37;;46532:127;;;:::o;42801:411::-;42882:13;42898:23;42913:7;42898:14;:23::i;:::-;42882:39;;42946:5;42940:11;;:2;:11;;;42932:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;43040:5;43024:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;43049:37;43066:5;43073:12;:10;:12::i;:::-;43049:16;:37::i;:::-;43024:62;43002:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;43183:21;43192:2;43196:7;43183:8;:21::i;:::-;42871:341;42801:411;;:::o;44028:339::-;44223:41;44242:12;:10;:12::i;:::-;44256:7;44223:18;:41::i;:::-;44215:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;44331:28;44341:4;44347:2;44351:7;44331:9;:28::i;:::-;44028:339;;;:::o;29029:105::-;29096:30;29107:4;29113:12;:10;:12::i;:::-;29096:10;:30::i;:::-;29029:105;:::o;33060:238::-;33144:22;33152:4;33158:7;33144;:22::i;:::-;33139:152;;33215:4;33183:6;:12;33190:4;33183:12;;;;;;;;;;;:20;;:29;33204:7;33183:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;33266:12;:10;:12::i;:::-;33239:40;;33257:7;33239:40;;33251:4;33239:40;;;;;;;;;;33139:152;33060:238;;:::o;11288:98::-;11341:7;11368:10;11361:17;;11288:98;:::o;33430:239::-;33514:22;33522:4;33528:7;33514;:22::i;:::-;33510:152;;;33585:5;33553:6;:12;33560:4;33553:12;;;;;;;;;;;:20;;:29;33574:7;33553:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;33637:12;:10;:12::i;:::-;33610:40;;33628:7;33610:40;;33622:4;33610:40;;;;;;;;;;33510:152;33430:239;;:::o;44438:185::-;44576:39;44593:4;44599:2;44603:7;44576:39;;;;;;;;;;;;:16;:39::i;:::-;44438:185;;;:::o;12902:132::-;12977:12;:10;:12::i;:::-;12966:23;;:7;:5;:7::i;:::-;:23;;;12958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12902:132::o;14004:191::-;14078:16;14097:6;;;;;;;;;;;14078:25;;14123:8;14114:6;;:17;;;;;;;;;;;;;;;;;;14178:8;14147:40;;14168:8;14147:40;;;;;;;;;;;;14067:128;14004:191;:::o;12737:87::-;12783:7;12810:6;;;;;;;;;;;12803:13;;12737:87;:::o;43571:155::-;43666:52;43685:12;:10;:12::i;:::-;43699:8;43709;43666:18;:52::i;:::-;43571:155;;:::o;15435:326::-;15495:4;15752:1;15730:7;:19;;;:23;15723:30;;15435:326;;;:::o;4261:190::-;4386:4;4439;4410:25;4423:5;4430:4;4410:12;:25::i;:::-;:33;4403:40;;4261:190;;;;;:::o;47516:110::-;47592:26;47602:2;47606:7;47592:26;;;;;;;;;;;;:9;:26::i;:::-;47516:110;;:::o;44694:328::-;44869:41;44888:12;:10;:12::i;:::-;44902:7;44869:18;:41::i;:::-;44861:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;44975:39;44989:4;44995:2;44999:7;45008:5;44975:13;:39::i;:::-;44694:328;;;;:::o;64897:102::-;64957:13;64986:7;64979:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64897:102;:::o;8850:723::-;8906:13;9136:1;9127:5;:10;9123:53;;9154:10;;;;;;;;;;;;;;;;;;;;;9123:53;9186:12;9201:5;9186:20;;9217:14;9242:78;9257:1;9249:4;:9;9242:78;;9275:8;;;;;:::i;:::-;;;;9306:2;9298:10;;;;;:::i;:::-;;;9242:78;;;9330:19;9362:6;9352:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9330:39;;9380:154;9396:1;9387:5;:10;9380:154;;9424:1;9414:11;;;;;:::i;:::-;;;9491:2;9483:5;:10;;;;:::i;:::-;9470:2;:24;;;;:::i;:::-;9457:39;;9440:6;9447;9440:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9520:2;9511:11;;;;;:::i;:::-;;;9380:154;;;9558:6;9544:21;;;;;8850:723;;;;:::o;40773:305::-;40875:4;40927:25;40912:40;;;:11;:40;;;;:105;;;;40984:33;40969:48;;;:11;:48;;;;40912:105;:158;;;;41034:36;41058:11;41034:23;:36::i;:::-;40912:158;40892:178;;40773:305;;;:::o;50678:174::-;50780:2;50753:15;:24;50769:7;50753:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;50836:7;50832:2;50798:46;;50807:23;50822:7;50807:14;:23::i;:::-;50798:46;;;;;;;;;;;;50678:174;;:::o;46826:348::-;46919:4;46944:16;46952:7;46944;:16::i;:::-;46936:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;47020:13;47036:23;47051:7;47036:14;:23::i;:::-;47020:39;;47089:5;47078:16;;:7;:16;;;:52;;;;47098:32;47115:5;47122:7;47098:16;:32::i;:::-;47078:52;:87;;;;47158:7;47134:31;;:20;47146:7;47134:11;:20::i;:::-;:31;;;47078:87;47070:96;;;46826:348;;;;:::o;49935:625::-;50094:4;50067:31;;:23;50082:7;50067:14;:23::i;:::-;:31;;;50059:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;50173:1;50159:16;;:2;:16;;;50151:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50229:39;50250:4;50256:2;50260:7;50229:20;:39::i;:::-;50333:29;50350:1;50354:7;50333:8;:29::i;:::-;50394:1;50375:9;:15;50385:4;50375:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;50423:1;50406:9;:13;50416:2;50406:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;50454:2;50435:7;:16;50443:7;50435:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;50493:7;50489:2;50474:27;;50483:4;50474:27;;;;;;;;;;;;50514:38;50534:4;50540:2;50544:7;50514:19;:38::i;:::-;49935:625;;;:::o;29424:505::-;29513:22;29521:4;29527:7;29513;:22::i;:::-;29508:414;;29701:41;29729:7;29701:41;;29739:2;29701:19;:41::i;:::-;29815:38;29843:4;29835:13;;29850:2;29815:19;:38::i;:::-;29606:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29552:358;;;;;;;;;;;:::i;:::-;;;;;;;;29508:414;29424:505;;:::o;50994:315::-;51149:8;51140:17;;:5;:17;;;51132:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;51236:8;51198:18;:25;51217:5;51198:25;;;;;;;;;;;;;;;:35;51224:8;51198:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;51282:8;51260:41;;51275:5;51260:41;;;51292:8;51260:41;;;;;;:::i;:::-;;;;;;;;50994:315;;;:::o;4812:675::-;4895:7;4915:20;4938:4;4915:27;;4958:9;4953:497;4977:5;:12;4973:1;:16;4953:497;;;5011:20;5034:5;5040:1;5034:8;;;;;;;;:::i;:::-;;;;;;;;5011:31;;5077:12;5061;:28;5057:382;;5204:42;5219:12;5233;5204:14;:42::i;:::-;5189:57;;5057:382;;;5381:42;5396:12;5410;5381:14;:42::i;:::-;5366:57;;5057:382;4996:454;4991:3;;;;;:::i;:::-;;;;4953:497;;;;5467:12;5460:19;;;4812:675;;;;:::o;47853:321::-;47983:18;47989:2;47993:7;47983:5;:18::i;:::-;48034:54;48065:1;48069:2;48073:7;48082:5;48034:22;:54::i;:::-;48012:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;47853:321;;;:::o;45904:315::-;46061:28;46071:4;46077:2;46081:7;46061:9;:28::i;:::-;46108:48;46131:4;46137:2;46141:7;46150:5;46108:22;:48::i;:::-;46100:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;45904:315;;;;:::o;25541:157::-;25626:4;25665:25;25650:40;;;:11;:40;;;;25643:47;;25541:157;;;:::o;53245:126::-;;;;:::o;53756:125::-;;;;:::o;10151:451::-;10226:13;10252:19;10297:1;10288:6;10284:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;10274:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10252:47;;10310:15;:6;10317:1;10310:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;10336;:6;10343:1;10336:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;10367:9;10392:1;10383:6;10379:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;10367:26;;10362:135;10399:1;10395;:5;10362:135;;;10434:12;10455:3;10447:5;:11;10434:25;;;;;;;:::i;:::-;;;;;10422:6;10429:1;10422:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;10484:1;10474:11;;;;;10402:3;;;;:::i;:::-;;;10362:135;;;;10524:1;10515:5;:10;10507:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;10587:6;10573:21;;;10151:451;;;;:::o;5495:224::-;5563:13;5626:1;5620:4;5613:15;5655:1;5649:4;5642:15;5696:4;5690;5680:21;5671:30;;5495:224;;;;:::o;48510:439::-;48604:1;48590:16;;:2;:16;;;48582:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48663:16;48671:7;48663;:16::i;:::-;48662:17;48654:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;48725:45;48754:1;48758:2;48762:7;48725:20;:45::i;:::-;48800:1;48783:9;:13;48793:2;48783:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;48831:2;48812:7;:16;48820:7;48812:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;48876:7;48872:2;48851:33;;48868:1;48851:33;;;;;;;;;;;;48897:44;48925:1;48929:2;48933:7;48897:19;:44::i;:::-;48510:439;;:::o;51874:799::-;52029:4;52050:15;:2;:13;;;:15::i;:::-;52046:620;;;52102:2;52086:36;;;52123:12;:10;:12::i;:::-;52137:4;52143:7;52152:5;52086:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52082:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52345:1;52328:6;:13;:18;52324:272;;52371:60;;;;;;;;;;:::i;:::-;;;;;;;;52324:272;52546:6;52540:13;52531:6;52527:2;52523:15;52516:38;52082:529;52219:41;;;52209:51;;;:6;:51;;;;52202:58;;;;;52046:620;52650:4;52643:11;;51874:799;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:329::-;5349:6;5398:2;5386:9;5377:7;5373:23;5369:32;5366:119;;;5404:79;;:::i;:::-;5366:119;5524:1;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5495:117;5290:329;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:77::-;6287:7;6316:5;6305:16;;6250:77;;;:::o;6333:122::-;6406:24;6424:5;6406:24;:::i;:::-;6399:5;6396:35;6386:63;;6445:1;6442;6435:12;6386:63;6333:122;:::o;6461:139::-;6507:5;6545:6;6532:20;6523:29;;6561:33;6588:5;6561:33;:::i;:::-;6461:139;;;;:::o;6606:329::-;6665:6;6714:2;6702:9;6693:7;6689:23;6685:32;6682:119;;;6720:79;;:::i;:::-;6682:119;6840:1;6865:53;6910:7;6901:6;6890:9;6886:22;6865:53;:::i;:::-;6855:63;;6811:117;6606:329;;;;:::o;6941:118::-;7028:24;7046:5;7028:24;:::i;:::-;7023:3;7016:37;6941:118;;:::o;7065:222::-;7158:4;7196:2;7185:9;7181:18;7173:26;;7209:71;7277:1;7266:9;7262:17;7253:6;7209:71;:::i;:::-;7065:222;;;;:::o;7293:474::-;7361:6;7369;7418:2;7406:9;7397:7;7393:23;7389:32;7386:119;;;7424:79;;:::i;:::-;7386:119;7544:1;7569:53;7614:7;7605:6;7594:9;7590:22;7569:53;:::i;:::-;7559:63;;7515:117;7671:2;7697:53;7742:7;7733:6;7722:9;7718:22;7697:53;:::i;:::-;7687:63;;7642:118;7293:474;;;;;:::o;7773:114::-;7840:6;7874:5;7868:12;7858:22;;7773:114;;;:::o;7893:184::-;7992:11;8026:6;8021:3;8014:19;8066:4;8061:3;8057:14;8042:29;;7893:184;;;;:::o;8083:132::-;8150:4;8173:3;8165:11;;8203:4;8198:3;8194:14;8186:22;;8083:132;;;:::o;8221:108::-;8298:24;8316:5;8298:24;:::i;:::-;8293:3;8286:37;8221:108;;:::o;8335:179::-;8404:10;8425:46;8467:3;8459:6;8425:46;:::i;:::-;8503:4;8498:3;8494:14;8480:28;;8335:179;;;;:::o;8520:113::-;8590:4;8622;8617:3;8613:14;8605:22;;8520:113;;;:::o;8669:732::-;8788:3;8817:54;8865:5;8817:54;:::i;:::-;8887:86;8966:6;8961:3;8887:86;:::i;:::-;8880:93;;8997:56;9047:5;8997:56;:::i;:::-;9076:7;9107:1;9092:284;9117:6;9114:1;9111:13;9092:284;;;9193:6;9187:13;9220:63;9279:3;9264:13;9220:63;:::i;:::-;9213:70;;9306:60;9359:6;9306:60;:::i;:::-;9296:70;;9152:224;9139:1;9136;9132:9;9127:14;;9092:284;;;9096:14;9392:3;9385:10;;8793:608;;;8669:732;;;;:::o;9407:373::-;9550:4;9588:2;9577:9;9573:18;9565:26;;9637:9;9631:4;9627:20;9623:1;9612:9;9608:17;9601:47;9665:108;9768:4;9759:6;9665:108;:::i;:::-;9657:116;;9407:373;;;;:::o;9786:117::-;9895:1;9892;9885:12;9909:117;10018:1;10015;10008:12;10032:180;10080:77;10077:1;10070:88;10177:4;10174:1;10167:15;10201:4;10198:1;10191:15;10218:281;10301:27;10323:4;10301:27;:::i;:::-;10293:6;10289:40;10431:6;10419:10;10416:22;10395:18;10383:10;10380:34;10377:62;10374:88;;;10442:18;;:::i;:::-;10374:88;10482:10;10478:2;10471:22;10261:238;10218:281;;:::o;10505:129::-;10539:6;10566:20;;:::i;:::-;10556:30;;10595:33;10623:4;10615:6;10595:33;:::i;:::-;10505:129;;;:::o;10640:308::-;10702:4;10792:18;10784:6;10781:30;10778:56;;;10814:18;;:::i;:::-;10778:56;10852:29;10874:6;10852:29;:::i;:::-;10844:37;;10936:4;10930;10926:15;10918:23;;10640:308;;;:::o;10954:154::-;11038:6;11033:3;11028;11015:30;11100:1;11091:6;11086:3;11082:16;11075:27;10954:154;;;:::o;11114:412::-;11192:5;11217:66;11233:49;11275:6;11233:49;:::i;:::-;11217:66;:::i;:::-;11208:75;;11306:6;11299:5;11292:21;11344:4;11337:5;11333:16;11382:3;11373:6;11368:3;11364:16;11361:25;11358:112;;;11389:79;;:::i;:::-;11358:112;11479:41;11513:6;11508:3;11503;11479:41;:::i;:::-;11198:328;11114:412;;;;;:::o;11546:340::-;11602:5;11651:3;11644:4;11636:6;11632:17;11628:27;11618:122;;11659:79;;:::i;:::-;11618:122;11776:6;11763:20;11801:79;11876:3;11868:6;11861:4;11853:6;11849:17;11801:79;:::i;:::-;11792:88;;11608:278;11546:340;;;;:::o;11892:509::-;11961:6;12010:2;11998:9;11989:7;11985:23;11981:32;11978:119;;;12016:79;;:::i;:::-;11978:119;12164:1;12153:9;12149:17;12136:31;12194:18;12186:6;12183:30;12180:117;;;12216:79;;:::i;:::-;12180:117;12321:63;12376:7;12367:6;12356:9;12352:22;12321:63;:::i;:::-;12311:73;;12107:287;11892:509;;;;:::o;12407:116::-;12477:21;12492:5;12477:21;:::i;:::-;12470:5;12467:32;12457:60;;12513:1;12510;12503:12;12457:60;12407:116;:::o;12529:133::-;12572:5;12610:6;12597:20;12588:29;;12626:30;12650:5;12626:30;:::i;:::-;12529:133;;;;:::o;12668:468::-;12733:6;12741;12790:2;12778:9;12769:7;12765:23;12761:32;12758:119;;;12796:79;;:::i;:::-;12758:119;12916:1;12941:53;12986:7;12977:6;12966:9;12962:22;12941:53;:::i;:::-;12931:63;;12887:117;13043:2;13069:50;13111:7;13102:6;13091:9;13087:22;13069:50;:::i;:::-;13059:60;;13014:115;12668:468;;;;;:::o;13142:117::-;13251:1;13248;13241:12;13265:117;13374:1;13371;13364:12;13405:568;13478:8;13488:6;13538:3;13531:4;13523:6;13519:17;13515:27;13505:122;;13546:79;;:::i;:::-;13505:122;13659:6;13646:20;13636:30;;13689:18;13681:6;13678:30;13675:117;;;13711:79;;:::i;:::-;13675:117;13825:4;13817:6;13813:17;13801:29;;13879:3;13871:4;13863:6;13859:17;13849:8;13845:32;13842:41;13839:128;;;13886:79;;:::i;:::-;13839:128;13405:568;;;;;:::o;13979:559::-;14065:6;14073;14122:2;14110:9;14101:7;14097:23;14093:32;14090:119;;;14128:79;;:::i;:::-;14090:119;14276:1;14265:9;14261:17;14248:31;14306:18;14298:6;14295:30;14292:117;;;14328:79;;:::i;:::-;14292:117;14441:80;14513:7;14504:6;14493:9;14489:22;14441:80;:::i;:::-;14423:98;;;;14219:312;13979:559;;;;;:::o;14544:307::-;14605:4;14695:18;14687:6;14684:30;14681:56;;;14717:18;;:::i;:::-;14681:56;14755:29;14777:6;14755:29;:::i;:::-;14747:37;;14839:4;14833;14829:15;14821:23;;14544:307;;;:::o;14857:410::-;14934:5;14959:65;14975:48;15016:6;14975:48;:::i;:::-;14959:65;:::i;:::-;14950:74;;15047:6;15040:5;15033:21;15085:4;15078:5;15074:16;15123:3;15114:6;15109:3;15105:16;15102:25;15099:112;;;15130:79;;:::i;:::-;15099:112;15220:41;15254:6;15249:3;15244;15220:41;:::i;:::-;14940:327;14857:410;;;;;:::o;15286:338::-;15341:5;15390:3;15383:4;15375:6;15371:17;15367:27;15357:122;;15398:79;;:::i;:::-;15357:122;15515:6;15502:20;15540:78;15614:3;15606:6;15599:4;15591:6;15587:17;15540:78;:::i;:::-;15531:87;;15347:277;15286:338;;;;:::o;15630:943::-;15725:6;15733;15741;15749;15798:3;15786:9;15777:7;15773:23;15769:33;15766:120;;;15805:79;;:::i;:::-;15766:120;15925:1;15950:53;15995:7;15986:6;15975:9;15971:22;15950:53;:::i;:::-;15940:63;;15896:117;16052:2;16078:53;16123:7;16114:6;16103:9;16099:22;16078:53;:::i;:::-;16068:63;;16023:118;16180:2;16206:53;16251:7;16242:6;16231:9;16227:22;16206:53;:::i;:::-;16196:63;;16151:118;16336:2;16325:9;16321:18;16308:32;16367:18;16359:6;16356:30;16353:117;;;16389:79;;:::i;:::-;16353:117;16494:62;16548:7;16539:6;16528:9;16524:22;16494:62;:::i;:::-;16484:72;;16279:287;15630:943;;;;;;;:::o;16579:474::-;16647:6;16655;16704:2;16692:9;16683:7;16679:23;16675:32;16672:119;;;16710:79;;:::i;:::-;16672:119;16830:1;16855:53;16900:7;16891:6;16880:9;16876:22;16855:53;:::i;:::-;16845:63;;16801:117;16957:2;16983:53;17028:7;17019:6;17008:9;17004:22;16983:53;:::i;:::-;16973:63;;16928:118;16579:474;;;;;:::o;17059:180::-;17107:77;17104:1;17097:88;17204:4;17201:1;17194:15;17228:4;17225:1;17218:15;17245:320;17289:6;17326:1;17320:4;17316:12;17306:22;;17373:1;17367:4;17363:12;17394:18;17384:81;;17450:4;17442:6;17438:17;17428:27;;17384:81;17512:2;17504:6;17501:14;17481:18;17478:38;17475:84;;17531:18;;:::i;:::-;17475:84;17296:269;17245:320;;;:::o;17571:231::-;17711:34;17707:1;17699:6;17695:14;17688:58;17780:14;17775:2;17767:6;17763:15;17756:39;17571:231;:::o;17808:366::-;17950:3;17971:67;18035:2;18030:3;17971:67;:::i;:::-;17964:74;;18047:93;18136:3;18047:93;:::i;:::-;18165:2;18160:3;18156:12;18149:19;;17808:366;;;:::o;18180:419::-;18346:4;18384:2;18373:9;18369:18;18361:26;;18433:9;18427:4;18423:20;18419:1;18408:9;18404:17;18397:47;18461:131;18587:4;18461:131;:::i;:::-;18453:139;;18180:419;;;:::o;18605:332::-;18726:4;18764:2;18753:9;18749:18;18741:26;;18777:71;18845:1;18834:9;18830:17;18821:6;18777:71;:::i;:::-;18858:72;18926:2;18915:9;18911:18;18902:6;18858:72;:::i;:::-;18605:332;;;;;:::o;18943:137::-;18997:5;19028:6;19022:13;19013:22;;19044:30;19068:5;19044:30;:::i;:::-;18943:137;;;;:::o;19086:345::-;19153:6;19202:2;19190:9;19181:7;19177:23;19173:32;19170:119;;;19208:79;;:::i;:::-;19170:119;19328:1;19353:61;19406:7;19397:6;19386:9;19382:22;19353:61;:::i;:::-;19343:71;;19299:125;19086:345;;;;:::o;19437:234::-;19577:34;19573:1;19565:6;19561:14;19554:58;19646:17;19641:2;19633:6;19629:15;19622:42;19437:234;:::o;19677:366::-;19819:3;19840:67;19904:2;19899:3;19840:67;:::i;:::-;19833:74;;19916:93;20005:3;19916:93;:::i;:::-;20034:2;20029:3;20025:12;20018:19;;19677:366;;;:::o;20049:419::-;20215:4;20253:2;20242:9;20238:18;20230:26;;20302:9;20296:4;20292:20;20288:1;20277:9;20273:17;20266:47;20330:131;20456:4;20330:131;:::i;:::-;20322:139;;20049:419;;;:::o;20474:180::-;20522:77;20519:1;20512:88;20619:4;20616:1;20609:15;20643:4;20640:1;20633:15;20660:180;20708:77;20705:1;20698:88;20805:4;20802:1;20795:15;20829:4;20826:1;20819:15;20846:233;20885:3;20908:24;20926:5;20908:24;:::i;:::-;20899:33;;20954:66;20947:5;20944:77;20941:103;;21024:18;;:::i;:::-;20941:103;21071:1;21064:5;21060:13;21053:20;;20846:233;;;:::o;21085:228::-;21225:34;21221:1;21213:6;21209:14;21202:58;21294:11;21289:2;21281:6;21277:15;21270:36;21085:228;:::o;21319:366::-;21461:3;21482:67;21546:2;21541:3;21482:67;:::i;:::-;21475:74;;21558:93;21647:3;21558:93;:::i;:::-;21676:2;21671:3;21667:12;21660:19;;21319:366;;;:::o;21691:419::-;21857:4;21895:2;21884:9;21880:18;21872:26;;21944:9;21938:4;21934:20;21930:1;21919:9;21915:17;21908:47;21972:131;22098:4;21972:131;:::i;:::-;21964:139;;21691:419;;;:::o;22116:229::-;22256:34;22252:1;22244:6;22240:14;22233:58;22325:12;22320:2;22312:6;22308:15;22301:37;22116:229;:::o;22351:366::-;22493:3;22514:67;22578:2;22573:3;22514:67;:::i;:::-;22507:74;;22590:93;22679:3;22590:93;:::i;:::-;22708:2;22703:3;22699:12;22692:19;;22351:366;;;:::o;22723:419::-;22889:4;22927:2;22916:9;22912:18;22904:26;;22976:9;22970:4;22966:20;22962:1;22951:9;22947:17;22940:47;23004:131;23130:4;23004:131;:::i;:::-;22996:139;;22723:419;;;:::o;23148:181::-;23288:33;23284:1;23276:6;23272:14;23265:57;23148:181;:::o;23335:366::-;23477:3;23498:67;23562:2;23557:3;23498:67;:::i;:::-;23491:74;;23574:93;23663:3;23574:93;:::i;:::-;23692:2;23687:3;23683:12;23676:19;;23335:366;;;:::o;23707:419::-;23873:4;23911:2;23900:9;23896:18;23888:26;;23960:9;23954:4;23950:20;23946:1;23935:9;23931:17;23924:47;23988:131;24114:4;23988:131;:::i;:::-;23980:139;;23707:419;;;:::o;24132:94::-;24165:8;24213:5;24209:2;24205:14;24184:35;;24132:94;;;:::o;24232:::-;24271:7;24300:20;24314:5;24300:20;:::i;:::-;24289:31;;24232:94;;;:::o;24332:100::-;24371:7;24400:26;24420:5;24400:26;:::i;:::-;24389:37;;24332:100;;;:::o;24438:157::-;24543:45;24563:24;24581:5;24563:24;:::i;:::-;24543:45;:::i;:::-;24538:3;24531:58;24438:157;;:::o;24601:256::-;24713:3;24728:75;24799:3;24790:6;24728:75;:::i;:::-;24828:2;24823:3;24819:12;24812:19;;24848:3;24841:10;;24601:256;;;;:::o;24863:225::-;25003:34;24999:1;24991:6;24987:14;24980:58;25072:8;25067:2;25059:6;25055:15;25048:33;24863:225;:::o;25094:366::-;25236:3;25257:67;25321:2;25316:3;25257:67;:::i;:::-;25250:74;;25333:93;25422:3;25333:93;:::i;:::-;25451:2;25446:3;25442:12;25435:19;;25094:366;;;:::o;25466:419::-;25632:4;25670:2;25659:9;25655:18;25647:26;;25719:9;25713:4;25709:20;25705:1;25694:9;25690:17;25683:47;25747:131;25873:4;25747:131;:::i;:::-;25739:139;;25466:419;;;:::o;25891:165::-;26031:17;26027:1;26019:6;26015:14;26008:41;25891:165;:::o;26062:366::-;26204:3;26225:67;26289:2;26284:3;26225:67;:::i;:::-;26218:74;;26301:93;26390:3;26301:93;:::i;:::-;26419:2;26414:3;26410:12;26403:19;;26062:366;;;:::o;26434:419::-;26600:4;26638:2;26627:9;26623:18;26615:26;;26687:9;26681:4;26677:20;26673:1;26662:9;26658:17;26651:47;26715:131;26841:4;26715:131;:::i;:::-;26707:139;;26434:419;;;:::o;26859:148::-;26961:11;26998:3;26983:18;;26859:148;;;;:::o;27013:377::-;27119:3;27147:39;27180:5;27147:39;:::i;:::-;27202:89;27284:6;27279:3;27202:89;:::i;:::-;27195:96;;27300:52;27345:6;27340:3;27333:4;27326:5;27322:16;27300:52;:::i;:::-;27377:6;27372:3;27368:16;27361:23;;27123:267;27013:377;;;;:::o;27396:435::-;27576:3;27598:95;27689:3;27680:6;27598:95;:::i;:::-;27591:102;;27710:95;27801:3;27792:6;27710:95;:::i;:::-;27703:102;;27822:3;27815:10;;27396:435;;;;;:::o;27837:225::-;27977:34;27973:1;27965:6;27961:14;27954:58;28046:8;28041:2;28033:6;28029:15;28022:33;27837:225;:::o;28068:366::-;28210:3;28231:67;28295:2;28290:3;28231:67;:::i;:::-;28224:74;;28307:93;28396:3;28307:93;:::i;:::-;28425:2;28420:3;28416:12;28409:19;;28068:366;;;:::o;28440:419::-;28606:4;28644:2;28633:9;28629:18;28621:26;;28693:9;28687:4;28683:20;28679:1;28668:9;28664:17;28657:47;28721:131;28847:4;28721:131;:::i;:::-;28713:139;;28440:419;;;:::o;28865:220::-;29005:34;29001:1;28993:6;28989:14;28982:58;29074:3;29069:2;29061:6;29057:15;29050:28;28865:220;:::o;29091:366::-;29233:3;29254:67;29318:2;29313:3;29254:67;:::i;:::-;29247:74;;29330:93;29419:3;29330:93;:::i;:::-;29448:2;29443:3;29439:12;29432:19;;29091:366;;;:::o;29463:419::-;29629:4;29667:2;29656:9;29652:18;29644:26;;29716:9;29710:4;29706:20;29702:1;29691:9;29687:17;29680:47;29744:131;29870:4;29744:131;:::i;:::-;29736:139;;29463:419;;;:::o;29888:243::-;30028:34;30024:1;30016:6;30012:14;30005:58;30097:26;30092:2;30084:6;30080:15;30073:51;29888:243;:::o;30137:366::-;30279:3;30300:67;30364:2;30359:3;30300:67;:::i;:::-;30293:74;;30376:93;30465:3;30376:93;:::i;:::-;30494:2;30489:3;30485:12;30478:19;;30137:366;;;:::o;30509:419::-;30675:4;30713:2;30702:9;30698:18;30690:26;;30762:9;30756:4;30752:20;30748:1;30737:9;30733:17;30726:47;30790:131;30916:4;30790:131;:::i;:::-;30782:139;;30509:419;;;:::o;30934:236::-;31074:34;31070:1;31062:6;31058:14;31051:58;31143:19;31138:2;31130:6;31126:15;31119:44;30934:236;:::o;31176:366::-;31318:3;31339:67;31403:2;31398:3;31339:67;:::i;:::-;31332:74;;31415:93;31504:3;31415:93;:::i;:::-;31533:2;31528:3;31524:12;31517:19;;31176:366;;;:::o;31548:419::-;31714:4;31752:2;31741:9;31737:18;31729:26;;31801:9;31795:4;31791:20;31787:1;31776:9;31772:17;31765:47;31829:131;31955:4;31829:131;:::i;:::-;31821:139;;31548:419;;;:::o;31973:182::-;32113:34;32109:1;32101:6;32097:14;32090:58;31973:182;:::o;32161:366::-;32303:3;32324:67;32388:2;32383:3;32324:67;:::i;:::-;32317:74;;32400:93;32489:3;32400:93;:::i;:::-;32518:2;32513:3;32509:12;32502:19;;32161:366;;;:::o;32533:419::-;32699:4;32737:2;32726:9;32722:18;32714:26;;32786:9;32780:4;32776:20;32772:1;32761:9;32757:17;32750:47;32814:131;32940:4;32814:131;:::i;:::-;32806:139;;32533:419;;;:::o;32958:180::-;33006:77;33003:1;32996:88;33103:4;33100:1;33093:15;33127:4;33124:1;33117:15;33144:185;33184:1;33201:20;33219:1;33201:20;:::i;:::-;33196:25;;33235:20;33253:1;33235:20;:::i;:::-;33230:25;;33274:1;33264:35;;33279:18;;:::i;:::-;33264:35;33321:1;33318;33314:9;33309:14;;33144:185;;;;:::o;33335:191::-;33375:4;33395:20;33413:1;33395:20;:::i;:::-;33390:25;;33429:20;33447:1;33429:20;:::i;:::-;33424:25;;33468:1;33465;33462:8;33459:34;;;33473:18;;:::i;:::-;33459:34;33518:1;33515;33511:9;33503:17;;33335:191;;;;:::o;33532:176::-;33564:1;33581:20;33599:1;33581:20;:::i;:::-;33576:25;;33615:20;33633:1;33615:20;:::i;:::-;33610:25;;33654:1;33644:35;;33659:18;;:::i;:::-;33644:35;33700:1;33697;33693:9;33688:14;;33532:176;;;;:::o;33714:305::-;33754:3;33773:20;33791:1;33773:20;:::i;:::-;33768:25;;33807:20;33825:1;33807:20;:::i;:::-;33802:25;;33961:1;33893:66;33889:74;33886:1;33883:81;33880:107;;;33967:18;;:::i;:::-;33880:107;34011:1;34008;34004:9;33997:16;;33714:305;;;;:::o;34025:231::-;34165:34;34161:1;34153:6;34149:14;34142:58;34234:14;34229:2;34221:6;34217:15;34210:39;34025:231;:::o;34262:366::-;34404:3;34425:67;34489:2;34484:3;34425:67;:::i;:::-;34418:74;;34501:93;34590:3;34501:93;:::i;:::-;34619:2;34614:3;34610:12;34603:19;;34262:366;;;:::o;34634:419::-;34800:4;34838:2;34827:9;34823:18;34815:26;;34887:9;34881:4;34877:20;34873:1;34862:9;34858:17;34851:47;34915:131;35041:4;34915:131;:::i;:::-;34907:139;;34634:419;;;:::o;35059:224::-;35199:34;35195:1;35187:6;35183:14;35176:58;35268:7;35263:2;35255:6;35251:15;35244:32;35059:224;:::o;35289:366::-;35431:3;35452:67;35516:2;35511:3;35452:67;:::i;:::-;35445:74;;35528:93;35617:3;35528:93;:::i;:::-;35646:2;35641:3;35637:12;35630:19;;35289:366;;;:::o;35661:419::-;35827:4;35865:2;35854:9;35850:18;35842:26;;35914:9;35908:4;35904:20;35900:1;35889:9;35885:17;35878:47;35942:131;36068:4;35942:131;:::i;:::-;35934:139;;35661:419;;;:::o;36086:223::-;36226:34;36222:1;36214:6;36210:14;36203:58;36295:6;36290:2;36282:6;36278:15;36271:31;36086:223;:::o;36315:366::-;36457:3;36478:67;36542:2;36537:3;36478:67;:::i;:::-;36471:74;;36554:93;36643:3;36554:93;:::i;:::-;36672:2;36667:3;36663:12;36656:19;;36315:366;;;:::o;36687:419::-;36853:4;36891:2;36880:9;36876:18;36868:26;;36940:9;36934:4;36930:20;36926:1;36915:9;36911:17;36904:47;36968:131;37094:4;36968:131;:::i;:::-;36960:139;;36687:419;;;:::o;37112:173::-;37252:25;37248:1;37240:6;37236:14;37229:49;37112:173;:::o;37291:402::-;37451:3;37472:85;37554:2;37549:3;37472:85;:::i;:::-;37465:92;;37566:93;37655:3;37566:93;:::i;:::-;37684:2;37679:3;37675:12;37668:19;;37291:402;;;:::o;37699:167::-;37839:19;37835:1;37827:6;37823:14;37816:43;37699:167;:::o;37872:402::-;38032:3;38053:85;38135:2;38130:3;38053:85;:::i;:::-;38046:92;;38147:93;38236:3;38147:93;:::i;:::-;38265:2;38260:3;38256:12;38249:19;;37872:402;;;:::o;38280:967::-;38662:3;38684:148;38828:3;38684:148;:::i;:::-;38677:155;;38849:95;38940:3;38931:6;38849:95;:::i;:::-;38842:102;;38961:148;39105:3;38961:148;:::i;:::-;38954:155;;39126:95;39217:3;39208:6;39126:95;:::i;:::-;39119:102;;39238:3;39231:10;;38280:967;;;;;:::o;39253:175::-;39393:27;39389:1;39381:6;39377:14;39370:51;39253:175;:::o;39434:366::-;39576:3;39597:67;39661:2;39656:3;39597:67;:::i;:::-;39590:74;;39673:93;39762:3;39673:93;:::i;:::-;39791:2;39786:3;39782:12;39775:19;;39434:366;;;:::o;39806:419::-;39972:4;40010:2;39999:9;39995:18;39987:26;;40059:9;40053:4;40049:20;40045:1;40034:9;40030:17;40023:47;40087:131;40213:4;40087:131;:::i;:::-;40079:139;;39806:419;;;:::o;40231:237::-;40371:34;40367:1;40359:6;40355:14;40348:58;40440:20;40435:2;40427:6;40423:15;40416:45;40231:237;:::o;40474:366::-;40616:3;40637:67;40701:2;40696:3;40637:67;:::i;:::-;40630:74;;40713:93;40802:3;40713:93;:::i;:::-;40831:2;40826:3;40822:12;40815:19;;40474:366;;;:::o;40846:419::-;41012:4;41050:2;41039:9;41035:18;41027:26;;41099:9;41093:4;41089:20;41085:1;41074:9;41070:17;41063:47;41127:131;41253:4;41127:131;:::i;:::-;41119:139;;40846:419;;;:::o;41271:348::-;41311:7;41334:20;41352:1;41334:20;:::i;:::-;41329:25;;41368:20;41386:1;41368:20;:::i;:::-;41363:25;;41556:1;41488:66;41484:74;41481:1;41478:81;41473:1;41466:9;41459:17;41455:105;41452:131;;;41563:18;;:::i;:::-;41452:131;41611:1;41608;41604:9;41593:20;;41271:348;;;;:::o;41625:171::-;41664:3;41687:24;41705:5;41687:24;:::i;:::-;41678:33;;41733:4;41726:5;41723:15;41720:41;;41741:18;;:::i;:::-;41720:41;41788:1;41781:5;41777:13;41770:20;;41625:171;;;:::o;41802:182::-;41942:34;41938:1;41930:6;41926:14;41919:58;41802:182;:::o;41990:366::-;42132:3;42153:67;42217:2;42212:3;42153:67;:::i;:::-;42146:74;;42229:93;42318:3;42229:93;:::i;:::-;42347:2;42342:3;42338:12;42331:19;;41990:366;;;:::o;42362:419::-;42528:4;42566:2;42555:9;42551:18;42543:26;;42615:9;42609:4;42605:20;42601:1;42590:9;42586:17;42579:47;42643:131;42769:4;42643:131;:::i;:::-;42635:139;;42362:419;;;:::o;42787:182::-;42927:34;42923:1;42915:6;42911:14;42904:58;42787:182;:::o;42975:366::-;43117:3;43138:67;43202:2;43197:3;43138:67;:::i;:::-;43131:74;;43214:93;43303:3;43214:93;:::i;:::-;43332:2;43327:3;43323:12;43316:19;;42975:366;;;:::o;43347:419::-;43513:4;43551:2;43540:9;43536:18;43528:26;;43600:9;43594:4;43590:20;43586:1;43575:9;43571:17;43564:47;43628:131;43754:4;43628:131;:::i;:::-;43620:139;;43347:419;;;:::o;43772:178::-;43912:30;43908:1;43900:6;43896:14;43889:54;43772:178;:::o;43956:366::-;44098:3;44119:67;44183:2;44178:3;44119:67;:::i;:::-;44112:74;;44195:93;44284:3;44195:93;:::i;:::-;44313:2;44308:3;44304:12;44297:19;;43956:366;;;:::o;44328:419::-;44494:4;44532:2;44521:9;44517:18;44509:26;;44581:9;44575:4;44571:20;44567:1;44556:9;44552:17;44545:47;44609:131;44735:4;44609:131;:::i;:::-;44601:139;;44328:419;;;:::o;44753:98::-;44804:6;44838:5;44832:12;44822:22;;44753:98;;;:::o;44857:168::-;44940:11;44974:6;44969:3;44962:19;45014:4;45009:3;45005:14;44990:29;;44857:168;;;;:::o;45031:360::-;45117:3;45145:38;45177:5;45145:38;:::i;:::-;45199:70;45262:6;45257:3;45199:70;:::i;:::-;45192:77;;45278:52;45323:6;45318:3;45311:4;45304:5;45300:16;45278:52;:::i;:::-;45355:29;45377:6;45355:29;:::i;:::-;45350:3;45346:39;45339:46;;45121:270;45031:360;;;;:::o;45397:640::-;45592:4;45630:3;45619:9;45615:19;45607:27;;45644:71;45712:1;45701:9;45697:17;45688:6;45644:71;:::i;:::-;45725:72;45793:2;45782:9;45778:18;45769:6;45725:72;:::i;:::-;45807;45875:2;45864:9;45860:18;45851:6;45807:72;:::i;:::-;45926:9;45920:4;45916:20;45911:2;45900:9;45896:18;45889:48;45954:76;46025:4;46016:6;45954:76;:::i;:::-;45946:84;;45397:640;;;;;;;:::o;46043:141::-;46099:5;46130:6;46124:13;46115:22;;46146:32;46172:5;46146:32;:::i;:::-;46043:141;;;;:::o;46190:349::-;46259:6;46308:2;46296:9;46287:7;46283:23;46279:32;46276:119;;;46314:79;;:::i;:::-;46276:119;46434:1;46459:63;46514:7;46505:6;46494:9;46490:22;46459:63;:::i;:::-;46449:73;;46405:127;46190:349;;;;:::o

Swarm Source

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