ETH Price: $1,855.26 (+0.76%)
    /

    Token

    FinalBosuBadges (FBB)

    Overview

    Max Total Supply

    0 FBB

    Holders

    3,251

    Market

    Volume (24H)

    N/A

    Min Price (24H)

    N/A

    Max Price (24H)

    N/A
    0x38c007437AAd9c49775A18291A0162095935FA59
    Loading...
    Loading
    Loading...
    Loading
    Loading...
    Loading

    Click here to update the token information / general information
    This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

    Contract Source Code Verified (Exact Match)

    Contract Name:
    FinalBosuBadges

    Compiler Version
    v0.8.28+commit.7893614a

    ZkSolc Version
    v1.5.11

    Optimization Enabled:
    Yes with Mode 3

    Other Settings:
    paris EvmVersion
    File 1 of 12 : FinalBosuBadges.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.28;
    import {ERC1155} from "solady/src/tokens/ext/zksync/ERC1155.sol";
    import {Ownable} from "solady/src/auth/Ownable.sol";
    import {Base64} from "solady/src/utils/Base64.sol";
    import {LibString} from "solady/src/utils/LibString.sol";
    import {ECDSA} from "solady/src/utils/ECDSA.sol";
    import {IERC1155} from "@openzeppelin/contracts/interfaces/IERC1155.sol";
    import {IERC1155MetadataURI} from "@openzeppelin/contracts/interfaces/IERC1155MetadataURI.sol";
    /**
    * @title FinalBosuBadges
    * @author @finalbosuX
    * @notice Soulbound ERC1155 contract
    */
    contract FinalBosuBadges is ERC1155, Ownable {
    using LibString for uint256;
    /**
    * @dev Thrown on user-to-user transfer if the token is soulbound.
    */
    error Soulbound();
    /**
    * @dev Thrown if `msg.sender` is neither owner nor manager.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 12 : IERC1155.sol
    1
    2
    3
    4
    5
    6
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC1155.sol)
    pragma solidity ^0.8.20;
    import {IERC1155} from "../token/ERC1155/IERC1155.sol";
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 3 of 12 : IERC1155MetadataURI.sol
    1
    2
    3
    4
    5
    6
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC1155MetadataURI.sol)
    pragma solidity ^0.8.20;
    import {IERC1155MetadataURI} from "../token/ERC1155/extensions/IERC1155MetadataURI.sol";
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 4 of 12 : LibString.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    import {LibBytes} from "./LibBytes.sol";
    /// @notice Library for converting numbers into strings and other string operations.
    /// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/LibString.sol)
    /// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/LibString.sol)
    ///
    /// @dev Note:
    /// For performance and bytecode compactness, most of the string operations are restricted to
    /// byte strings (7-bit ASCII), except where otherwise specified.
    /// Usage of byte string operations on charsets with runes spanning two or more bytes
    /// can lead to undefined behavior.
    library LibString {
    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /* STRUCTS */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/
    /// @dev Goated string storage struct that totally MOGs, no cap, fr.
    /// Uses less gas and bytecode than Solidity's native string storage. It's meta af.
    /// Packs length with the first 31 bytes if <255 bytes, so it’s mad tight.
    struct StringStorage {
    bytes32 _spacer;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 5 of 12 : Ownable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    /// @notice Simple single owner authorization mixin.
    /// @author Solady (https://github.com/vectorized/solady/blob/main/src/auth/Ownable.sol)
    ///
    /// @dev Note:
    /// This implementation does NOT auto-initialize the owner to `msg.sender`.
    /// You MUST call the `_initializeOwner` in the constructor / initializer.
    ///
    /// While the ownable portion follows
    /// [EIP-173](https://eips.ethereum.org/EIPS/eip-173) for compatibility,
    /// the nomenclature for the 2-step ownership handover may be unique to this codebase.
    abstract contract Ownable {
    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /* CUSTOM ERRORS */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/
    /// @dev The caller is not authorized to call the function.
    error Unauthorized();
    /// @dev The `newOwner` cannot be the zero address.
    error NewOwnerIsZeroAddress();
    /// @dev The `pendingOwner` does not have a valid handover request.
    error NoHandoverRequest();
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 6 of 12 : ECDSA.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    /// @notice Gas optimized ECDSA wrapper.
    /// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/ECDSA.sol)
    /// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/ECDSA.sol)
    /// @author Modified from OpenZeppelin (https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/cryptography/ECDSA.sol)
    ///
    /// @dev Note:
    /// - The recovery functions use the ecrecover precompile (0x1).
    /// - As of Solady version 0.0.68, the `recover` variants will revert upon recovery failure.
    /// This is for more safety by default.
    /// Use the `tryRecover` variants if you need to get the zero address back
    /// upon recovery failure instead.
    /// - As of Solady version 0.0.134, all `bytes signature` variants accept both
    /// regular 65-byte `(r, s, v)` and EIP-2098 `(r, vs)` short form signatures.
    /// See: https://eips.ethereum.org/EIPS/eip-2098
    /// This is for calldata efficiency on smart accounts prevalent on L2s.
    ///
    /// WARNING! Do NOT directly use signatures as unique identifiers:
    /// - The recovery operations do NOT check if a signature is non-malleable.
    /// - Use a nonce in the digest to prevent replay attacks on the same contract.
    /// - Use EIP-712 for the digest to prevent replay attacks across different chains and contracts.
    /// EIP-712 also enables readable signing of typed data for better user safety.
    /// - If you need a unique hash from a signature, please use the `canonicalHash` functions.
    library ECDSA {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 7 of 12 : Base64.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    /// @notice Library to encode strings in Base64.
    /// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/Base64.sol)
    /// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/Base64.sol)
    /// @author Modified from (https://github.com/Brechtpd/base64/blob/main/base64.sol) by Brecht Devos - <brecht@loopring.org>.
    library Base64 {
    /// @dev Encodes `data` using the base64 encoding described in RFC 4648.
    /// See: https://datatracker.ietf.org/doc/html/rfc4648
    /// @param fileSafe Whether to replace '+' with '-' and '/' with '_'.
    /// @param noPadding Whether to strip away the padding.
    function encode(bytes memory data, bool fileSafe, bool noPadding)
    internal
    pure
    returns (string memory result)
    {
    /// @solidity memory-safe-assembly
    assembly {
    let dataLength := mload(data)
    if dataLength {
    // Multiply by 4/3 rounded up.
    // The `shl(2, ...)` is equivalent to multiplying by 4.
    let encodedLength := shl(2, div(add(dataLength, 2), 3))
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 8 of 12 : ERC1155.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    /// @notice Simple ERC1155 implementation.
    /// @author Solady (https://github.com/vectorized/solady/blob/main/src/tokens/ext/zksync/ERC1155.sol)
    /// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC1155.sol)
    /// @author Modified from OpenZeppelin (https://github.com/OpenZeppelin/openzeppelin-contracts/tree/master/contracts/token/ERC1155/ERC1155.sol)
    ///
    /// @dev Note:
    /// - The ERC1155 standard allows for self-approvals.
    /// For performance, this implementation WILL NOT revert for such actions.
    /// Please add any checks with overrides if desired.
    ///
    /// If you are overriding:
    /// - Make sure all variables written to storage are properly cleaned
    // (e.g. the bool value for `isApprovedForAll` MUST be either 1 or 0 under the hood).
    /// - Check that the overridden function is actually used in the function you want to
    /// change the behavior of. Much of the code has been manually inlined for performance.
    abstract contract ERC1155 {
    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /* CUSTOM ERRORS */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/
    /// @dev The lengths of the input arrays are not the same.
    error ArrayLengthsMismatch();
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 9 of 12 : LibBytes.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    /// @notice Library for byte related operations.
    /// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/LibBytes.sol)
    library LibBytes {
    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /* STRUCTS */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/
    /// @dev Goated bytes storage struct that totally MOGs, no cap, fr.
    /// Uses less gas and bytecode than Solidity's native bytes storage. It's meta af.
    /// Packs length with the first 31 bytes if <255 bytes, so it’s mad tight.
    struct BytesStorage {
    bytes32 _spacer;
    }
    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /* CONSTANTS */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/
    /// @dev The constant returned when the `search` is not found in the bytes.
    uint256 internal constant NOT_FOUND = type(uint256).max;
    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /* BYTE STORAGE OPERATIONS */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 10 of 12 : IERC1155.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC1155/IERC1155.sol)
    pragma solidity ^0.8.20;
    import {IERC165} from "../../utils/introspection/IERC165.sol";
    /**
    * @dev Required interface of an ERC-1155 compliant contract, as defined in the
    * https://eips.ethereum.org/EIPS/eip-1155[ERC].
    */
    interface IERC1155 is IERC165 {
    /**
    * @dev Emitted when `value` amount of tokens of type `id` are transferred from `from` to `to` by `operator`.
    */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);
    /**
    * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
    * transfers.
    */
    event TransferBatch(
    address indexed operator,
    address indexed from,
    address indexed to,
    uint256[] ids,
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 11 of 12 : IERC1155MetadataURI.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC1155/extensions/IERC1155MetadataURI.sol)
    pragma solidity ^0.8.20;
    import {IERC1155} from "../IERC1155.sol";
    /**
    * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
    * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[ERC].
    */
    interface IERC1155MetadataURI is IERC1155 {
    /**
    * @dev Returns the URI for token type `id`.
    *
    * If the `\{id\}` substring is present in the URI, it must be replaced by
    * clients with the actual token type ID.
    */
    function uri(uint256 id) external view returns (string memory);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 12 of 12 : IERC165.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Interface of the ERC-165 standard, as defined in the
    * https://eips.ethereum.org/EIPS/eip-165[ERC].
    *
    * 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[ERC 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);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Settings
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    {
    "evmVersion": "paris",
    "optimizer": {
    "enabled": true,
    "mode": "3",
    "runs": 10000
    },
    "outputSelection": {
    "*": {
    "*": [
    "abi"
    ]
    }
    },
    "detectMissingLibraries": false,
    "forceEVMLA": false,
    "enableEraVMExtensions": false,
    "libraries": {}
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Contract Security Audit

    Contract ABI

    API
    [{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccountBalanceOverflow","type":"error"},{"inputs":[],"name":"AlreadyInitialized","type":"error"},{"inputs":[],"name":"ArrayLengthsMismatch","type":"error"},{"inputs":[],"name":"InsufficientBalance","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[],"name":"NewOwnerIsZeroAddress","type":"error"},{"inputs":[],"name":"NoHandoverRequest","type":"error"},{"inputs":[],"name":"NonceUsed","type":"error"},{"inputs":[],"name":"NotManager","type":"error"},{"inputs":[],"name":"NotOwnerNorApproved","type":"error"},{"inputs":[],"name":"Soulbound","type":"error"},{"inputs":[],"name":"TokenNotCreated","type":"error"},{"inputs":[],"name":"TransferToNonERC1155ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"isApproved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pendingOwner","type":"address"}],"name":"OwnershipHandoverCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pendingOwner","type":"address"}],"name":"OwnershipHandoverRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"owners","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"balances","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cancelOwnershipHandover","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"pendingOwner","type":"address"}],"name":"completeOwnershipHandover","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"result","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"managers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"result","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pendingOwner","type":"address"}],"name":"ownershipHandoverExpiresAt","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"requestOwnershipHandover","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"isApproved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_manager","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_description","type":"string"},{"internalType":"string","name":"_imageUri","type":"string"},{"internalType":"bool","name":"_soulbound","type":"bool"}],"name":"setTokenMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

    9c4d535b0000000000000000000000000000000000000000000000000000000000000000010004a525adef6426862912199e7d6ffaa1785f85101c20f37211c19461e53700000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

    Deployed Bytecode

    0x0002000000000002000d00000000000200010000000103550000006003100270000004240030019d0000008005000039000000400050043f00000001002001900000002b0000c13d0000042402300197000000040020008c00000fa70000413d000000000301043b000000e0033002700000042f0030009c000000640000a13d000004300030009c000000f70000a13d000004310030009c000003420000a13d000004320030009c000003770000213d000004350030009c0000064c0000613d000004360030009c00000fa70000c13d000000240020008c00000fa70000413d0000000401100370000000000101043b000004500010009c00000fa70000213d0000042502000041000000000202041a0000000003000411000000000023004b000008040000c13d000000000001004b000008b40000c13d0000045301000041000000000010043f00000454010000410000108f000104300000000001000416000000000001004b00000fa70000c13d00000000060004110000042501000041000000000061041b0000000001000414000004240010009c0000042401008041000000c00110021000000426011001c70000800d02000039000000030300003900000427040000410000000005000019108d10830000040f000000010020019000000fa70000613d0000000201000039000000000201041a000000010320019000000001022002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000043004b0000005e0000c13d000000200020008c000000510000413d00000428030000410000001f022000390000000502200270000004290220009a000000000003041b0000000103300039000000000023004b0000004d0000413d0000042a02000041000000000021041b0000000301000039000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000001150000613d0000049a01000041000000000010043f0000002201000039000000040010043f0000049b010000410000108f00010430000004410030009c0000008c0000213d000004490030009c000001310000213d0000044d0030009c0000053b0000613d0000044e0030009c0000038e0000613d0000044f0030009c00000fa70000c13d0000000001000416000000000001004b00000fa70000c13d0000000203000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f00000001005001900000005e0000c13d000000800010043f000000000004004b000008080000613d000000000030043f000000000001004b000001130000613d00000428030000410000000004000019000000000503041a000000a002400039000000000052043500000001033000390000002004400039000000000014004b000000840000413d0000080d0000013d000004420030009c000002f20000213d000004460030009c0000054f0000613d000004470030009c000003ae0000613d000004480030009c00000fa70000c13d000000440020008c00000fa70000413d0000000003000416000000000003004b00000fa70000c13d0000000403100370000000000403043b000004550040009c00000fa70000213d0000002303400039000000000023004b00000fa70000813d000c00040040003d0000000c03100360000000000303043b000004550030009c00000fa70000213d000000050530021000000000045400190000002404400039000000000024004b00000fa70000213d0000002404100370000000000504043b000004550050009c00000fa70000213d0000002304500039000000000024004b00000fa70000813d000b00040050003d0000000b01100360000000000401043b000004550040009c00000fa70000213d000000050640021000000000016500190000002401100039000000000021004b00000fa70000213d000000000034004b00000a800000c13d0000000002060019000000800040043f000000a001600039000000400010043f000000000004004b000000e00000613d0000000003020019000d00000003001d0000000c013000290000000101100367000000000101043b000000600110021000000457011001c7000000200010043f0000000b013000290000000101100367000000000101043b000000000010043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b000000000101041a0000000d0300002900000080023000390000000000120435000000200330008c000000c40000c13d000000400100043d00000020020000390000000002210436000000800300043d00000000003204350000004002100039000000000003004b000000ee0000613d000000a0040000390000000005000019000000004604043400000000026204360000000105500039000000000035004b000000e90000413d0000000002120049000004240020009c00000424020080410000006002200210000004240010009c00000424010080410000004001100210000000000112019f0000108e0001042e0000043a0030009c0000030d0000213d0000043e0030009c000005dd0000613d0000043f0030009c000005b10000613d000004400030009c00000fa70000c13d0000000001000416000000000001004b00000fa70000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f00000001005001900000005e0000c13d000000800010043f000000000004004b000008080000613d000000000030043f000000000001004b000008650000c13d00000080020000390000080d0000013d0000001f0010008c0000011f0000a13d0000042b020000410000001f0110003900000005011002700000042c0110009a000000000002041b0000000102200039000000000012004b0000011b0000413d0000042d010000410000000302000039000000000012041b0000000001000411000000000010043f000000200000043f00000040020000390000000001000019108d106e0000040f000000000301041a000004a10230019700000001022001bf000000000021041b0000002001000039000001000010044300000120000004430000042e010000410000108e0001042e0000044a0030009c000005760000613d0000044b0030009c000004e70000613d0000044c0030009c00000fa70000c13d000000840020008c00000fa70000413d0000000003000416000000000003004b00000fa70000c13d0000000403100370000000000303043b000d00000003001d000004500030009c00000fa70000213d0000002403100370000000000303043b000004550030009c00000fa70000213d0000002304300039000000000024004b00000fa70000813d0000000404300039000000000441034f000000000404043b000c00000004001d000004550040009c00000fa70000213d00000024043000390000000c030000290000000503300210000800000004001d000a00000003001d000900000043001d000000090020006b00000fa70000213d0000004403100370000000000303043b000004550030009c00000fa70000213d0000002304300039000000000024004b00000fa70000813d0000000404300039000000000441034f000000000404043b000700000004001d000004550040009c00000fa70000213d000000240330003900000007040000290000000504400210000400000003001d000600000004001d000500000034001d000000050020006b00000fa70000213d0000006403100370000000000303043b000004550030009c00000fa70000213d0000002304300039000000000024004b00000fa70000813d000200040030003d0000000201100360000000000101043b000300000001001d000004550010009c00000fa70000213d0000000301300029000100240010003d000000010020006b00000fa70000213d0000042501000041000000000101041a00000450011001970000000002000411000000000012004b000001920000613d0000000001000411000000000010043f000000200000043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b000000000101041a000000ff001001900000082d0000613d0000000d0000006b000006150000613d000000400100043d000b00000001001d00000007020000290000000c0020006b00000a9a0000c13d0000000a010000290000003f011000390000046d011001970000000b021000290000000b0020006c00000000010000390000000101004039000004550020009c0000058e0000213d00000001001001900000058e0000c13d0000000001000031000000400020043f0000000b020000290000000c030000290000000000320435000000090010006b00000fa70000213d0000000c0000006b00000008050000290000000906000029000001b80000613d00000001020003670000000b03000029000000000452034f000000000404043b000000200330003900000000004304350000002005500039000000000065004b000001b10000413d00000006020000290000003f022000390000046d02200197000000400300043d0000000002230019000900000003001d000000000032004b00000000030000390000000103004039000004550020009c0000058e0000213d00000001003001900000058e0000c13d000000400020043f00000009020000290000000c030000290000000000320435000000050010006b00000fa70000213d0000000c0000006b00000004050000290000000506000029000001d80000613d00000001020003670000000903000029000000000452034f000000000404043b000000200330003900000000004304350000002005500039000000000065004b000001d10000413d00000003020000290000001f02200039000004a2022001970000003f02200039000004a202200197000000400400043d0000000002240019000800000004001d000000000042004b00000000040000390000000104004039000004550020009c0000058e0000213d00000001004001900000058e0000c13d000000400020043f000000080200002900000003040000290000000002420436000000010010006b00000fa70000213d0000000301000029000004a2031001980000001f0410018f0000000001320019000000020500002900000020055000390000000105500367000001fb0000613d000000000605034f0000000007020019000000006806043c0000000007870436000000000017004b000001f70000c13d000000000004004b000002080000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000031043500000003012000290000000000010435000000090100002900000000010104330000000b020000290000000002020433000000000012004b00000a800000c13d0000000d010000290000006001100212000009c70000613d00000457011001c7000000200010043f0000000b0900002900000000010904330000000503100212000002340000613d0000000001930019000c00000003001d00000009023000290000000002020433000a00000002001d0000000001010433000000000010043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b000000000201041a0000000a03000029000000000032001a00000fb50000413d0000000002320019000000000021041b0000000c03000029000000200330008c0000000b09000029000002190000c13d000000400100043d0000004002000039000000000321043600000000020904330000000502200210000000200420003a000002440000613d0000004005100039000000000600001900000000076500190000000008960019000000000808043300000000008704350000002006600039000000000046004b0000023d0000413d00000060052000390000000000530435000000090900002900000000030904330000000503300210000000200430003a000002540000613d0000000005150019000000000600001900000000076500190000000008960019000000000808043300000000008704350000002006600039000000000046004b0000024d0000413d0000000002320019000000800220003900000060032002100000046e0020009c0000046f03008041000004240010009c00000424010080410000004001100210000000000113019f0000000002000414000004240020009c0000042402008041000000c0022002100000000001210019000004700110009a0000800d0200003900000004030000390000047104000041000000000500041100000000060000190000000d07000029108d10830000040f000000010020019000000fa70000613d0000045b0100004100000000001004430000000d0100002900000004001004430000000001000414000004240010009c0000042401008041000000c0011002100000045c011001c70000800202000039108d10880000040f000000010020019000000bc70000613d000000000101043b000000000001004b000005af0000613d000000400300043d0000006001300039000000a002000039000000000021043500000020013000390000000002000411000000000021043500000478010000410000000000130435000c00000003001d000000400130003900000000000104350000000b0700002900000000010704330000000501100210000000200210003a000002970000613d0000000c03000029000000c003300039000000000400001900000000054300190000000006740019000000000606043300000000006504350000002004400039000000000024004b000002900000413d000000c0021000390000000c04000029000000800340003900000000002304350000000002410019000000090900002900000000030904330000000503300210000000200430003a000002aa0000613d000000e005200039000000000600001900000000076500190000000008960019000000000808043300000000008704350000002006600039000000000046004b000002a30000413d0000000001310019000000e0011000390000000c04000029000000a0044000390000000000140435000000000123001900000008080000290000000002080433000000200320003a000002bd0000613d0000010004100039000000000500001900000000065400190000000007850019000000000707043300000000007604350000002005500039000000000035004b000002b60000413d0000000c03000029000000000131004900000000012100190000010401100039000004240010009c000004240100804100000060011002100000001c02300039000004240020009c00000424020080410000004002200210000000000121019f0000000002000414000004240020009c0000042402008041000000c002200210000000000112019f0000000d02000029108d10830000040f00000060031002700000042403300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000000c04600029000002df0000613d000000000701034f0000000c08000029000000007907043c0000000008980436000000000048004b000002db0000c13d000000000005004b000002ec0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003004b00000001022061bf000000010020019000000f280000613d0000000c01000029000004e30000013d000004430030009c000005940000613d000004440030009c000004ff0000613d000004450030009c00000fa70000c13d0000042501000041000000000101041a0000000005000411000000000015004b000008040000c13d0000000001000414000004240010009c0000042401008041000000c00110021000000426011001c70000800d02000039000000030300003900000427040000410000000006000019108d10830000040f000000010020019000000fa70000613d0000042501000041000000000001041b00000000010000190000108e0001042e0000043b0030009c000006190000613d0000043c0030009c000005ba0000613d0000043d0030009c00000fa70000c13d000000440020008c00000fa70000413d0000000002000416000000000002004b00000fa70000c13d0000002402100370000000000202043b000d00000002001d0000000401100370000000000201043b0000045701000041000000200010043f0000000001000411000000140010043f000c00000002001d000000000020043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b000000000101041a0000000d03000029000000000031004b000008600000813d000000400100043d00000044021000390000046803000041000000000032043500000024021000390000001203000039000000000032043500000469020000410000000000210435000000040210003900000020030000390000000000320435000004240010009c000004240100804100000040011002100000046a011001c70000108f00010430000004370030009c000006b80000613d000004380030009c0000069d0000613d000004390030009c00000fa70000c13d000000240020008c00000fa70000413d0000000401100370000000000101043b000d00000001001d000004500010009c00000fa70000213d0000042501000041000000000101041a0000000002000411000000000012004b000008040000c13d00000451010000410000000c0010043f0000000d01000029000000000010043f0000000001000414000004240010009c0000042401008041000000c00110021000000462011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b000b00000001001d000000000101041a000c00000001001d000004630100004100000000001004430000000001000414000004240010009c0000042401008041000000c00110021000000464011001c70000800b02000039108d10880000040f000000010020019000000bc70000613d000000000101043b0000000c0010006c000008b10000a13d0000046501000041000000000010043f00000454010000410000108f00010430000004330030009c0000068c0000613d000004340030009c00000fa70000c13d000000240020008c00000fa70000413d0000000002000416000000000002004b00000fa70000c13d0000000401100370000000000101043b000004500010009c00000fa70000213d00000451020000410000000c0020043f000000000010043f0000000c010000390000002002000039108d106e0000040f000000000101041a000000800010043f00000452010000410000108e0001042e000000240020008c00000fa70000413d0000000002000416000000000002004b00000fa70000c13d0000000401100370000000000101043b0000049c0010019800000fa70000c13d000000e0031002700000049d0030009c000000000200003900000001020060390000044e0030009c00000001022061bf0000044a0030009c00000001022061bf0000044e0030009c000003a80000613d0000044a0030009c000003a80000613d0000049d0030009c000003a80000613d0000049e0010009c000000000200003900000001020060390000049f0010009c00000001022061bf000000010120018f000000800010043f00000452010000410000108e0001042e000000a40020008c00000fa70000413d0000000003000416000000000003004b00000fa70000c13d0000000403100370000000000303043b000700000003001d000004500030009c00000fa70000213d0000002403100370000000000303043b000600000003001d000004500030009c00000fa70000213d0000004403100370000000000303043b000004550030009c00000fa70000213d0000002304300039000000000024004b00000fa70000813d000a00040030003d0000000a04100360000000000404043b000c00000004001d000004550040009c00000fa70000213d00000024043000390000000c030000290000000503300210000500000003001d000b00000004001d0000000003430019000000000023004b00000fa70000213d0000006403100370000000000303043b000004550030009c00000fa70000213d0000002304300039000000000024004b00000fa70000813d000900040030003d0000000904100360000000000404043b000800000004001d000004550040009c00000fa70000213d0000000804000029000000050440021000000000034300190000002403300039000000000023004b00000fa70000213d0000008403100370000000000303043b000004550030009c00000fa70000213d0000002304300039000000000024004b00000fa70000813d0000000404300039000000000141034f000000000101043b000400000001001d000004550010009c00000fa70000213d0000002403300039000300000003001d0000000401300029000000000021004b00000fa70000213d0000000c0000006b00000beb0000c13d00000008020000290000000c0020006b00000a800000c13d0000000701000029000000600110021000000457011001c7000800000001001d000000200010043f0000000601000029000204500010019c000009c70000613d0000000701000029000104500010019b0000000001000411000000010010006c00000dda0000c13d0000000c0000006b00000e410000c13d000000400100043d00000040021000390000000c030000290000000000320435000000400200003900000000032104360000000504000029000d001f004001930000000a02000029000b00200020003d0000000102000367000000000004004b0000041f0000613d000000600410003900000005054000290000000b06200360000000006706043c0000000004740436000000000054004b0000041b0000c13d0000000d0000006b000000050500002900000060045000390000000000430435000000000351001900000060043000390000000c0600002900000000006404350000000904000029000a00200040003d000000000005004b000004320000613d0000000a0220036000000080033000390000000504300029000000002502043c0000000003530436000000000043004b0000042e0000c13d0000000d0000006b0000000c020000290000000602200210000900000002001d00000080022000390000006003200210000004700330009a0000046e0020009c0000047703008041000004240010009c00000424010080410000004001100210000000000131019f0000000002000414000004240020009c0000042402008041000000c00220021000000000012100190000800d0200003900000004030000390000047104000041000000000500041100000001060000290000000207000029108d10830000040f000000010020019000000fa70000613d0000045b010000410000000000100443000000020100002900000004001004430000000001000414000004240010009c0000042401008041000000c0011002100000045c011001c70000800202000039108d10880000040f000000010020019000000bc70000613d000000000101043b000000000001004b000005af0000613d0000000201000029000000000010043f000000400300043d000000c0013000390000000c0200002900000000002104350000006001300039000000a00200003900000000002104350000004001300039000000010200002900000000002104350000002001300039000000000200041100000000002104350000047801000041000800000003001d00000000001304350000000101000367000000050000006b0000047a0000613d0000000802000029000000e00220003900000005032000290000000b04100360000000004504043c0000000002520436000000000032004b000004760000c13d0000000d0000006b0000000504000029000000c0024000390000000805000029000000800350003900000000002304350000000002450019000000e0032000390000000c050000290000000000530435000000000004004b0000048d0000613d0000000a0310036000000100042000390000000505400029000000003603043c0000000004640436000000000054004b000004890000c13d0000000d0000006b0000000903000029000000e0033000390000000804000029000000a004400039000000000034043500000005052000290000010002500039000000040400002900000000004204350000000302100360000004a2034001980000001f0440018f00000120055000390000000001350019000004a20000613d000000000602034f000000006706043c0000000005750436000000000015004b0000049e0000c13d000000000004004b000004af0000613d000000000232034f0000000303400210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000000090200002900000004012000290000010401100039000004240010009c00000424010080410000006001100210000000400200043d0000001c02200039000004240020009c00000424020080410000004002200210000000000112019f000000000200043d0000000003000414000004240030009c0000042403008041000000c003300210000000000131019f108d10830000040f00000060031002700000042403300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000000804600029000004d10000613d000000000701034f0000000808000029000000007907043c0000000008980436000000000048004b000004cd0000c13d000000000005004b000004de0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003004b00000001022061bf000000010020019000000e8e0000613d00000008010000290000000001010433000004790010009c000005af0000613d000009780000013d000000640020008c00000fa70000413d0000000002000416000000000002004b00000fa70000c13d0000000402100370000000000202043b000d00000002001d000004500020009c00000fa70000213d0000042502000041000000000202041a00000450032001970000000002000411000000000032004b0000081e0000c13d0000002402100370000000000202043b0000004401100370000000000301043b0000000d01000029108d102a0000040f00000000010000190000108e0001042e000000640020008c00000fa70000413d0000000003000416000000000003004b00000fa70000c13d0000000403100370000000000303043b000900000003001d000004500030009c00000fa70000213d0000002403100370000000000303043b000004550030009c00000fa70000213d0000002304300039000000000024004b00000fa70000813d0000000404300039000000000441034f000000000404043b000d00000004001d000004550040009c00000fa70000213d00000024043000390000000d030000290000000503300210000800000004001d000c00000003001d000a00000043001d0000000a0020006b00000fa70000213d0000004403100370000000000303043b000004550030009c00000fa70000213d0000002304300039000000000024004b00000fa70000813d0000000404300039000000000141034f000000000101043b000700000001001d000004550010009c00000fa70000213d000000240130003900000007030000290000000503300210000400000001001d000600000003001d000500000013001d000000050020006b00000fa70000213d0000042501000041000000000101041a00000450011001970000000002000411000000000012004b000009cb0000c13d0000008001000039000009dc0000013d000000440020008c00000fa70000413d0000000002000416000000000002004b00000fa70000c13d0000000402100370000000000302043b000004500030009c00000fa70000213d0000002401100370000000000201043b0000000001030019108d10180000040f000000400200043d0000000000120435000004240020009c00000424020080410000004001200210000004a0011001c70000108e0001042e00000451010000410000000c0010043f0000000001000411000000000010043f000004630100004100000000001004430000000001000414000004240010009c0000042401008041000000c00110021000000464011001c70000800b02000039108d10880000040f000000010020019000000bc70000613d000000000101043b000d00000001001d0000000001000414000004240010009c0000042401008041000000c00110021000000462011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b0000000d020000290000047a0220009a000000000021041b0000000001000414000004240010009c0000042401008041000000c00110021000000426011001c70000800d0200003900000002030000390000047b04000041000005ab0000013d000000240020008c00000fa70000413d0000000002000416000000000002004b00000fa70000c13d0000000401100370000000000101043b000d00000001001d000000000010043f0000000101000039000000200010043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000701043b000000400600043d000004830060009c000008310000413d0000049a01000041000000000010043f0000004101000039000000040010043f0000049b010000410000108f0001043000000451010000410000000c0010043f0000000001000411000000000010043f0000000001000414000004240010009c0000042401008041000000c00110021000000462011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b000000000001041b0000000001000414000004240010009c0000042401008041000000c00110021000000426011001c70000800d02000039000000020300003900000472040000410000000005000411108d10830000040f000000010020019000000fa70000613d00000000010000190000108e0001042e0000000001000416000000000001004b00000fa70000c13d0000042501000041000000000101041a0000045001100197000000800010043f00000452010000410000108e0001042e000000440020008c00000fa70000413d0000000002000416000000000002004b00000fa70000c13d0000000402100370000000000202043b000004500020009c00000fa70000213d0000002401100370000000000301043b000000000003004b0000000001000039000000010100c039000d00000003001d000000000013004b00000fa70000c13d0000042501000041000000000101041a0000000003000411000000000013004b000008040000c13d000000000002004b000006150000613d000000000020043f000000200000043f00000040020000390000000001000019108d106e0000040f000000000201041a000004a1022001970000000d022001af000000000021041b00000000010000190000108e0001042e000000840020008c00000fa70000413d0000000003000416000000000003004b00000fa70000c13d0000000403100370000000000303043b000d00000003001d000004500030009c00000fa70000213d0000004403100370000000000303043b000b00000003001d0000002403100370000000000303043b000c00000003001d0000006403100370000000000303043b000004550030009c00000fa70000213d0000002304300039000000000024004b00000fa70000813d000900040030003d0000000901100360000000000101043b000a00000001001d000004550010009c00000fa70000213d0000000a01300029000800240010003d000000080020006b00000fa70000213d0000042501000041000000000101041a00000450011001970000000002000411000000000012004b000006130000613d000000000020043f000000200000043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b000000000101041a000000ff001001900000082d0000613d0000000d0000006b000008b70000c13d0000048101000041000000000010043f00000474010000410000108f00010430000000440020008c00000fa70000413d0000000002000416000000000002004b00000fa70000c13d0000000402100370000000000202043b000d00000002001d000004500020009c00000fa70000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000c00000002001d000000000012004b00000fa70000c13d0000045701000041000000200010043f0000000001000411000000140010043f0000000d01000029000000000010043f0000000001000414000004240010009c0000042401008041000000c00110021000000459011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b0000000c02000029000000000021041b000000000020043f0000000001000414000004240010009c0000042401008041000000c00110021000000467011001c70000800d0200003900000003030000390000046b0400004100000000050004110000000d06000029108d10830000040f000000010020019000000fa70000613d000005af0000013d000000a40020008c00000fa70000413d0000000003000416000000000003004b00000fa70000c13d0000000403100370000000000303043b000d00000003001d000004500030009c00000fa70000213d0000002403100370000000000303043b000c00000003001d000004500030009c00000fa70000213d0000006403100370000000000303043b000a00000003001d0000004403100370000000000303043b000b00000003001d0000008403100370000000000303043b000004550030009c00000fa70000213d0000002304300039000000000024004b00000fa70000813d000800040030003d0000000801100360000000000101043b000900000001001d000004550010009c00000fa70000213d00000009013000290000002401100039000000000021004b00000fa70000213d0000000b01000029000000000010043f0000000101000039000000200010043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b0000000c0000006b000009bd0000613d0000000d0000006b000009bd0000613d0000000301100039000000000101041a000000ff00100190000009bd0000613d0000047301000041000000000010043f00000474010000410000108f00010430000000240020008c00000fa70000413d0000000002000416000000000002004b00000fa70000c13d0000000401100370000000000101043b000004500010009c00000fa70000213d000000000010043f000000200000043f00000040020000390000000001000019108d106e0000040f000000000101041a000000ff00100190000006b30000013d000000440020008c00000fa70000413d0000000002000416000000000002004b00000fa70000c13d0000000402100370000000000202043b000004500020009c00000fa70000213d0000002401100370000000000101043b000004500010009c00000fa70000213d0000045703000041000000200030043f000000140020043f000000000010043f0000000c010000390000003402000039108d106e0000040f000000000101041a000000000001004b0000000001000039000000010100c039000000800010043f00000452010000410000108e0001042e000000a40020008c00000fa70000413d0000000003000416000000000003004b00000fa70000c13d0000002403100370000000000303043b000004550030009c00000fa70000213d0000002304300039000000000024004b00000fa70000813d000c00040030003d0000000c04100360000000000404043b000d00000004001d000004550040009c00000fa70000213d0000000d03300029000b00240030003d0000000b0020006b00000fa70000213d0000004403100370000000000303043b000004550030009c00000fa70000213d0000002304300039000000000024004b00000fa70000813d0000000404300039000000000441034f000000000404043b000a00000004001d000004550040009c00000fa70000213d0000002404300039000800000004001d0009000a0040002d000000090020006b00000fa70000213d0000006403100370000000000303043b000004550030009c00000fa70000213d0000002304300039000000000024004b00000fa70000813d0000000404300039000000000441034f000000000404043b000700000004001d000004550040009c00000fa70000213d0000002404300039000500000004001d000600070040002d000000060020006b00000fa70000213d0000008401100370000000000301043b000000000003004b0000000001000039000000010100c039000300000003001d000000000013004b00000fa70000c13d000400000005001d0000042501000041000000000101041a00000450031001970000000001000411000000000031004b00000bc80000c13d0000000d010000290000001f01100039000004a2011001970000003f01100039000004a2011001970000000403000029000000a003300039000000400030043f0000000001130019000004550010009c0000058e0000213d000000400010043f0000000d0100002900000000001304350000000b0020006b000000040500002900000fa70000213d0000000c0100002900000020041000390000000101000367000000000641034f0000000d08000029000004a2078001980000001f0880018f000000c0045000390000000005740019000007220000613d000000000906034f000000000a040019000000009b09043c000000000aba043600000000005a004b0000071e0000c13d000000000008004b0000072f0000613d000000000676034f0000000307800210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f00000000006504350000000d04400029000000000004043500000004040000290000000003340436000d00000003001d0000000a030000290000001f03300039000004a2033001970000003f03300039000004a204300197000000400300043d0000000004430019000000000034004b00000000050000390000000105004039000004550040009c0000058e0000213d00000001005001900000058e0000c13d000000400040043f0000000a040000290000000004430436000000090020006b00000fa70000213d00000008061003600000000a08000029000004a2078001980000001f0880018f0000000005740019000007530000613d000000000906034f000000000a040019000000009b09043c000000000aba043600000000005a004b0000074f0000c13d000000000008004b000007600000613d000000000676034f0000000307800210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f00000000006504350000000a0440002900000000000404350000000d04000029000000000034043500000007030000290000001f03300039000004a2033001970000003f03300039000004a204300197000000400300043d0000000004430019000000000034004b00000000050000390000000105004039000004550040009c0000058e0000213d00000001005001900000058e0000c13d000000400040043f00000007040000290000000004430436000000060020006b00000fa70000213d00000005021003600000000706000029000004a2056001980000001f0660018f0000000001540019000007830000613d000000000702034f0000000008040019000000007907043c0000000008980436000000000018004b0000077f0000c13d000000000006004b000007900000613d000000000252034f0000000305600210000000000601043300000000065601cf000000000656022f000000000202043b0000010005500089000000000252022f00000000025201cf000000000262019f00000000002104350000000701400029000000000001043500000004020000290000006001200039000b00000001001d000000030400002900000000004104350000004001200039000c00000001001d0000000000310435000004630100004100000000001004430000000001000414000004240010009c0000042401008041000000c00110021000000464011001c70000800b02000039108d10880000040f000000010020019000000bc70000613d000000000101043b0000000402000029000400000002001d0000008002200039000900000002001d000000000012043500000004010000390000000101100367000000000101043b000000000010043f0000000101000039000a00000001001d000000200010043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f0000000403000029000000010020019000000fa70000613d000000000101043b000800000001001d0000000001030433000500000001001d0000000021010434000600000002001d000700000001001d000004550010009c0000058e0000213d0000000801000029000000000101041a000000010010019000000001021002700000007f0220618f000400000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000005e0000c13d0000000401000029000000200010008c000007f00000413d0000000801000029000000000010043f0000000001000414000004240010009c0000042401008041000000c00110021000000467011001c70000801002000039108d10880000040f000000010020019000000fa70000613d00000007030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000004010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000007f00000813d000000000002041b0000000102200039000000000012004b000007ec0000413d00000007010000290000001f0010008c00000ea80000a13d0000000801000029000000000010043f0000000001000414000004240010009c0000042401008041000000c00110021000000467011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000200200008a0000000702200180000000000101043b00000eb50000c13d000000200300003900000ec20000013d0000046c01000041000000000010043f00000454010000410000108f00010430000004a102200197000000a00020043f000000000001004b000000a0020000390000008002006039000000600220008a0000008001000039108d0fe40000040f000000400100043d000d00000001001d0000008002000039108d10030000040f0000000d020000290000000001210049000004240010009c00000424010080410000006001100210000004240020009c00000424020080410000004002200210000000000121019f0000108e0001042e000000000020043f000000200000043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b000000000101041a000000ff001001900000086f0000c13d0000048201000041000000000010043f00000474010000410000108f00010430000000a008600039000000400080043f000000000107041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f00000001003001900000005e0000c13d0000000000480435000000000002004b000008710000613d000900000004001d000a00000008001d000b00000006001d000c00000007001d000000000070043f0000000001000414000004240010009c0000042401008041000000c00110021000000467011001c70000801002000039108d10880000040f000000010020019000000fa70000613d0000000909000029000000000009004b00000000020000190000000b060000290000000c070000290000000a08000029000008770000613d000000c003600039000000000101043b00000000020000190000000004230019000000000501041a000000000054043500000001011000390000002002200039000000000092004b000008580000413d000008770000013d00000000010004110000000c02000029108d102a0000040f00000000010000190000108e0001042e0000042b030000410000000004000019000000000503041a000000a002400039000000000052043500000001033000390000002004400039000000000014004b000008670000413d0000080d0000013d0000000101000367000004f70000013d000004a101100197000000c0026000390000000000120435000000000004004b000000200200003900000000020060390000003f01200039000004a2021001970000000001820019000000000021004b00000000020000390000000102004039000004550010009c0000058e0000213d00000001002001900000058e0000c13d000000400010043f00000000058604360000000101700039000000000201041a000000010320019000000001082002700000007f0880618f0000001f0080008c00000000040000390000000104002039000000000442013f00000001004001900000005e0000c13d000700000005001d000c00000007001d000b00000006001d000000400400043d000800000004001d000a00000008001d0000000004840436000900000004001d000000000003004b0000097c0000613d000000000010043f0000000001000414000004240010009c0000042401008041000000c00110021000000467011001c70000801002000039108d10880000040f000000010020019000000fa70000613d0000000a05000029000000000005004b00000000020000190000000906000029000009820000613d000000000101043b00000000020000190000000003260019000000000401041a000000000043043500000001011000390000002002200039000000000052004b000008a90000413d000009820000013d0000000b01000029000000000001041b0000000d01000029108d10570000040f00000000010000190000108e0001042e0000000a010000290000001f02100039000004a2022001970000003f02200039000004a202200197000000400400043d0000000002240019000000000042004b00000000030000390000000103004039000004550020009c0000058e0000213d00000001003001900000058e0000c13d000000400020043f000600000004001d0000000a020000290000000002240436000700000002001d0000000802000029000000000020007c00000fa70000213d0000000a03000029000004a2023001980000001f0330018f0000000701200029000000090400002900000020044000390000000104400367000008db0000613d000000000504034f0000000706000029000000005705043c0000000006760436000000000016004b000008d70000c13d000000000003004b000008e80000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f00000000002104350000000a02000029000000070120002900000000000104350000045701000041000000200010043f0000000d01000029000000140010043f0000000c01000029000000000010043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b000000000201041a0000000b0020002a00000fb50000413d0000000b030000290000000002320019000000000021041b000000200030043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000800d0200003900000004030000390000045a04000041000000000500041100000000060000190000000d07000029108d10830000040f000000010020019000000fa70000613d0000045b0100004100000000001004430000000d0100002900000004001004430000000001000414000004240010009c0000042401008041000000c0011002100000045c011001c70000800202000039108d10880000040f000000010020019000000bc70000613d000000000101043b000000000001004b000005af0000613d000000400300043d000000a001300039000000a002000039000000000021043500000080013000390000000b02000029000000000021043500000060013000390000000c0200002900000000002104350000002001300039000000000200041100000000002104350000045d0100004100000000001304350000004001300039000000000001043500000006010000290000000001010433000a00000003001d000000c0023000390000000000120435000000000001004b0000000706000029000009430000613d0000000a02000029000000e002200039000000000300001900000000043200190000000005630019000000000505043300000000005404350000002003300039000000000013004b0000093c0000413d0000000a020000290000001c02200039000004240020009c00000424020080410000004002200210000000c401100039000004240010009c00000424010080410000006001100210000000000121019f0000000002000414000004240020009c0000042402008041000000c002200210000000000112019f0000000d02000029108d10830000040f00000060031002700000042403300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000000a04600029000009630000613d000000000701034f0000000a08000029000000007907043c0000000008980436000000000048004b0000095f0000c13d000000000005004b000009700000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003004b00000001022061bf000000010020019000000ce80000613d0000000a010000290000000001010433000004610010009c000005af0000613d0000047f01000041000000000010043f00000454010000410000108f00010430000004a101200197000000090200002900000000001204350000000a0000006b000000200200003900000000020060390000003f01200039000004a20210019700000008040000290000000001420019000000000021004b00000000020000390000000102004039000004550010009c0000000c030000290000058e0000213d00000001002001900000058e0000c13d000000400010043f000000070100002900000000004104350000000201300039000000000201041a000000010320019000000001042002700000007f0440618f000a00000004001d0000001f0040008c00000000040000390000000104002039000000000442013f00000001004001900000005e0000c13d000000400400043d000900000004001d0000000a050000290000000004540436000800000004001d000000000003004b00000abe0000613d000000000010043f0000000001000414000004240010009c0000042401008041000000c00110021000000467011001c70000801002000039108d10880000040f000000010020019000000fa70000613d0000000a05000029000000000005004b0000000002000019000000080600002900000ac40000613d000000000101043b00000000020000190000000003260019000000000401041a000000000043043500000001011000390000002002200039000000000052004b000009b50000413d00000ac40000013d0000000d01000029000000600110021000000457011001c7000000200010043f0000000c01000029000000600110021000000457011001c7000700000001001d000004580010009c00000a840000813d0000048001000041000000000010043f00000454010000410000108f000104300000000001000411000000000010043f000000200000043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b000000000101041a000000ff001001900000082d0000613d000000400100043d000b00000001001d00000007020000290000000d0020006b00000a9a0000c13d0000000c010000290000003f011000390000046d011001970000000b021000290000000b0020006c00000000010000390000000101004039000004550020009c0000058e0000213d00000001001001900000058e0000c13d0000000001000031000000400020043f0000000b020000290000000d0300002900000000003204350000000a0010006b00000fa70000213d0000000d0000006b00000008050000290000000a06000029000009ff0000613d00000001020003670000000b03000029000000000452034f000000000404043b000000200330003900000000004304350000002005500039000000000065004b000009f80000413d00000006020000290000003f022000390000046d02200197000000400300043d0000000002230019000a00000003001d000000000032004b00000000030000390000000103004039000004550020009c0000058e0000213d00000001003001900000058e0000c13d000000400020043f0000000a020000290000000d030000290000000000320435000000050010006b00000fa70000213d0000000d0000006b000000000100001900000a210000613d000000040400002900000001014003670000000a0200002900000005050000290000002002200039000000001301043c00000000003204350000002004400039000000000054004b00000a190000413d0000000a0100002900000000010104330000000b020000290000000002020433000000000012004b00000a800000c13d0000000901000029000000600110021000000457011001c7000000200010043f0000000b090000290000000001090433000000050310021200000a460000613d0000000001930019000c00000003001d0000000a023000290000000002020433000d00000002001d0000000001010433000000000010043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b000000000201041a0000000d0220006c00000aba0000413d000000000021041b0000000c03000029000000200330008c0000000b0900002900000a2d0000c13d000000400100043d0000004002000039000000000321043600000000020904330000000502200210000000200420003a00000a560000613d0000004005100039000000000600001900000000076500190000000008960019000000000808043300000000008704350000002006600039000000000046004b00000a4f0000413d000000600520003900000000005304350000000a0900002900000000030904330000000503300210000000200430003a00000a660000613d0000000005150019000000000600001900000000076500190000000008960019000000000808043300000000008704350000002006600039000000000046004b00000a5f0000413d0000000002320019000000800220003900000060032002100000046e0020009c0000046f03008041000004240010009c00000424010080410000004001100210000000000113019f0000000002000414000004240020009c0000042402008041000000c0022002100000000001210019000004700110009a000000090200002900000450062001970000800d020000390000000403000039000004710400004100000000050004110000000007000019108d10830000040f0000000100200190000005af0000c13d00000fa70000013d0000047d01000041000000000010043f00000454010000410000108f0001043000000000020004110000000d0020006c00000aab0000613d0000000001000411000000000010043f0000000001000414000004240010009c0000042401008041000000c00110021000000459011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b000000000101041a000000000001004b00000aab0000c13d0000047501000041000000000010043f00000454010000410000108f000104300000000b0300002900000044013000390000047c02000041000000000021043500000024013000390000000802000039000000000021043500000469010000410000000000130435000000040130003900000020020000390000000000210435000004240030009c000004240300804100000040013002100000046a011001c70000108f000104300000000b01000029000000000010043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b000000000201041a0000000a0220006c00000b2e0000813d0000047601000041000000000010043f00000454010000410000108f00010430000004a101200197000000080200002900000000001204350000000a0000006b000000200200003900000000020060390000003f01200039000004a2021001970000000901200029000000000021004b00000000020000390000000102004039000004550010009c0000000b030000290000000c050000290000058e0000213d00000001002001900000058e0000c13d000000400010043f0000004004300039000000090100002900000000001404350000000301500039000000000101041a000000ff001001900000000002000039000000010200c0390000006001300039000000000021043500000080023000390000000403500039000000000303041a0000000000320435000000000003004b00000ae50000c13d0000049901000041000000000010043f00000474010000410000108f00010430000000400300043d0000000b0200002900000000060204330000000002060433000000000002004b00000b1e0000c13d000000a002300039000000400020043f000000800230003900000000000204350000000d060000290000000005020019000000090060008c0000000a2660011a000000f807200210000000010250008a00000000080204330000048408800197000000000787019f00000485077001c7000000000072043500000af00000213d00000000035300490000008103300039000000210750008a0000000000370435000000400600043d00000020036000390000048605000041000000000053043500000027056000390000000003070433000000000003004b00000b0f0000613d000000000700001900000000085700190000000009270019000000000909043300000000009804350000002007700039000000000037004b00000b080000413d00000000025300190000000000020435000000070230003900000000002604350000004602300039000004a2022001970000000003620019000000000023004b00000000020000390000000102004039000004550030009c0000058e0000213d00000001002001900000058e0000c13d000000400030043f000000070200002900000000050204330000000002050433000000000002004b00000bdd0000c13d000004870030009c0000058e0000213d0000004002300039000000400020043f0000002002300039000004880500004100000000005204350000000f020000390000000000230435000000400200043d00000bdf0000013d000000000021041b0000000701000029000000200010043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b000000000201041a0000000a0020002a00000fb50000413d0000000a030000290000000002320019000000000021041b000000200030043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000800d0200003900000004030000390000045a0400004100000000050004110000000d060000290000000c07000029108d10830000040f000000010020019000000fa70000613d0000045b0100004100000000001004430000000c0100002900000004001004430000000001000414000004240010009c0000042401008041000000c0011002100000045c011001c70000800202000039108d10880000040f000000010020019000000bc70000613d000000000101043b000000000001004b000005af0000613d000000400400043d000000a001400039000000a002000039000000000021043500000080014000390000000a02000029000000000021043500000060014000390000000b02000029000000000021043500000040014000390000000d0200002900000000002104350000002001400039000000000200041100000000002104350000045d010000410000000000140435000000c00140003900000009030000290000000000310435000004a2023001980000001f0330018f000700000004001d000000e005400039000000000125001900000008040000290000002004400039000000010440036700000b830000613d000000000604034f000000006706043c0000000005750436000000000015004b00000b7f0000c13d000000000003004b00000b900000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f000000000021043500000009010000290000045e0010009c0000045e01008041000000600110021000000007020000290000001c02200039000004240020009c00000424020080410000004002200210000000000121019f0000000002000414000004240020009c0000042402008041000000c002200210000000000121019f0000045f0110009a0000000c02000029108d10830000040f00000060031002700000042403300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000070460002900000bb10000613d000000000701034f0000000708000029000000007907043c0000000008980436000000000048004b00000bad0000c13d000000000005004b00000bbe0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003004b00000001022061bf000000010020019000000e740000613d00000007010000290000000001010433000004610010009c000005af0000613d000009780000013d000000000001042f000000000010043f000000200000043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b000000000101041a000000ff001001900000082d0000613d000000400100043d000400000001001d000004660010009c0000058e0000213d0000000002000031000007010000013d0000000002030019000000000305001900000000070404330000000054070434000000000004004b00000c0b0000c13d000004890020009c0000058e0000213d0000002004200039000000400040043f0000000000020435000000400400043d000d00000004001d00000c4a0000013d000000070000006b00000d060000613d000000060000006b00000d060000613d0000000002000019000d00000002001d00000005012002100000000b011000290000000101100367000000000101043b000000000010043f0000000101000039000000200010043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b0000000301100039000000000101041a000000ff00100190000006880000c13d0000000d0200002900000001022000390000000c0020006c00000bf00000413d000003f90000013d000000a004200039000000400040043f000000800420003900000000000404350000000d0b00002900000000080400190000000900b0008c0000000a4bb0011a000000f809400210000000010480008a000000000a040433000004840aa001970000000009a9019f00000485099001c7000000000094043500000c100000213d00000000028200490000008102200039000000210880008a0000000000280435000000400200043d00000020092000390000000007070433000000000007004b00000c2c0000613d000000000a000019000000000b9a0019000000000ca50019000000000c0c04330000000000cb0435000000200aa0003900000000007a004b00000c250000413d000000000597001900000000000504350000000008080433000000000008004b00000c390000613d0000000009000019000000000a590019000000000b490019000000000b0b04330000000000ba04350000002009900039000000000089004b00000c320000413d00000000045800190000000000040435000000000478001900000000004204350000003f04400039000004a2044001970000000005240019000000000045004b00000000040000390000000104004039000d00000005001d000004550050009c0000058e0000213d00000001004001900000058e0000c13d0000000d04000029000000400040043f0000048a08000041000000150080043f0000000d0400002900000020054000390000000004060433000000000004004b000000000905001900000d1d0000c13d00000000070904360000000d060000290000000004690049000000200440008a0000000000460435000c00000007001d000000400070043f000000150080043f00000040069000390000000004030433000000000004004b000000000806001900000d5c0000c13d000000000a0804360000000003980049000000400330008a0000000c0400002900000000003404350000004000a0043f0000048a03000041000000150030043f00000040038000390000000004020433000000000004004b000000000b03001900000d9b0000c13d00000000090b043600000000028b0049000000400220008a00000000002a0435000000400090043f0000006002b00039000004550020009c0000058e0000213d000000000092004b0000058e0000413d0000000001010433000000400020043f000000000001004b0000000301000039000000020100603900000000001904350000004008b000390000048e010000410000048d010060410000000000180435000000400200043d00000020012000390000048f040000410000000000410435000000210420003900000490070000410000000000740435000000290b2000390000000d040000290000000004040433000000000004004b00000c940000613d0000000007000019000000000cb70019000000000d570019000000000d0d04330000000000dc04350000002007700039000000000047004b00000c8d0000413d0000000005b40019000000000005043500000000042400190000002905400039000004910700004100000000007504350000003a0b4000390000000c050000290000000005050433000000000005004b00000ca70000613d0000000007000019000000000cb70019000000000d670019000000000d0d04330000000000dc04350000002007700039000000000057004b00000ca00000413d0000000006b50019000000000006043500000000044500190000003a05400039000004920600004100000000006504350000004506400039000000290440003900000000050a0433000000000005004b00000cba0000613d0000000007000019000000000a670019000000000b370019000000000b0b04330000000000ba04350000002007700039000000000057004b00000cb30000413d0000000003650019000000000003043500000000035400190000001c04300039000004930500004100000000005404350000002b0530003900000011033000390000000004090433000000000004004b00000ccd0000613d000000000600001900000000075600190000000009860019000000000909043300000000009704350000002006600039000000000046004b00000cc60000413d0000000005540019000000000005043500000000034300190000001a04300039000004940500004100000000005404350000000003230049000000040430008a00000000004204350000003b03300039000004a2043001970000000003240019000000000043004b00000000040000390000000104004039000004550030009c0000058e0000213d00000001004001900000058e0000c13d000000400030043f0000000005020433000000000005004b00000de90000c13d00000060020000390000008001000039000000000403001900000e2c0000013d0000001f0430018f00000460053001980000000a0250002900000cf20000613d000000000601034f0000000a07000029000000006806043c0000000007870436000000000027004b00000cee0000c13d000000000004004b00000cff0000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000012043500000060013002100000000a02000029000004240020009c00000424020080410000004002200210000000000121019f0000108f000104300000000002000019000d00000002001d00000005012002100000000b011000290000000101100367000000000101043b000000000010043f0000000101000039000000200010043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f000000010020019000000fa70000613d0000000d0200002900000001022000390000000c0020006c00000d070000413d000003f90000013d0000000007640019000000000905001900000d320000013d0000370000e0019000000d450000613d000000000409043300000484044001970000048b044001c700000000004904350000000804d000390000000004040433000000f804400210000000010c900039000000000d0c0433000004840dd0019700000000044d019f00000000004c0435000000020c00003900000000099c0019000000000076004b00000c520000613d0000000106600039000000000c060433000000ff0dc0018f000000010ed0020f0000001f00d0008c00000d200000a13d000000f80cd00210000000000409043300000484044001970000048c00e0019800000d580000613d0000048b044001c700000000004904350000000104900039000000000d040433000004840dd00197000000000ccd019f0000000000c4043500000d2e0000013d0000001d0400043d0000048404400197000000040dc002700000000f0dd0018f000000000d0d0433000000f80dd002100000000004d4019f0000001d0040043f0000000f04c0018f0000000004040433000000f8044002100000001e0c00043d000004840cc0019700000000044c019f0000001e0040043f000000190400043d0000000000490435000000060c00003900000d2f0000013d0000000004c4019f0000000000490435000000010c00003900000d2f0000013d000000000a340019000000000806001900000d710000013d000037000040019000000d840000613d000000000408043300000484044001970000048b044001c700000000004804350000000804f000390000000004040433000000f8044002100000000107800039000000000e070433000004840ee0019700000000044e019f0000000000470435000000020700003900000000088700190000000000a3004b00000c5f0000613d0000000103300039000000000e030433000000ff0fe0018f0000000104f0020f0000001f00f0008c00000d5f0000a13d000000f807f00210000000000e080433000004840ee001970000048c0040019800000d970000613d0000048b04e001c700000000004804350000000104800039000000000e040433000004840ee0019700000000077e019f000000000074043500000d6d0000013d0000001d0400043d00000484044001970000000407e002700000000f0770018f0000000007070433000000f807700210000000000474019f0000001d0040043f0000000f04e0018f0000000004040433000000f8044002100000001e0700043d0000048407700197000000000447019f0000001e0040043f000000190400043d0000000000480435000000060700003900000d6e0000013d00000000047e019f0000000000480435000000010700003900000d6e0000013d0000000009240019000000000b03001900000db00000013d000037000040019000000dc30000613d00000000040b043300000484044001970000048b044001c700000000004b043500000008047000390000000004040433000000f8044002100000000107b00039000000000f070433000004840ff0019700000000044f019f00000000004704350000000207000039000000000bb70019000000000092004b00000c6c0000613d0000000102200039000000000f020433000000ff07f0018f000000010470020f0000001f0070008c00000d9e0000a13d000000f807700210000000000f0b0433000004840ff001970000048c0040019800000dd60000613d0000048b04f001c700000000004b04350000000104b00039000000000f040433000004840ff0019700000000077f019f000000000074043500000dac0000013d0000001d0400043d00000484044001970000000407f002700000000f0770018f0000000007070433000000f807700210000000000474019f0000001d0040043f0000000f04f0018f0000000004040433000000f8044002100000001e0700043d0000048407700197000000000447019f0000001e0040043f000000190400043d00000000004b0435000000060700003900000dad0000013d00000000047f019f00000000004b0435000000010700003900000dad0000013d000000000010043f0000000001000414000004240010009c0000042401008041000000c00110021000000459011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b000000000101041a000000000001004b000004090000c13d00000a960000013d00000495040000410000001f0040043f00000496040000410000003f0040043f00000000071500190000000008070433000000000007043500000020013000390000000204500039000000030440011a00000002044002100000000009340019000000200a9000390000000006010019000000000b00043d000004840bb001970000000302200039000000000c020433000000120dc002700000003f0dd0018f000000000d0d0433000000f80dd00210000000000bdb019f0000000000b0043f0000000c0bc002700000003f0bb0018f000000000b0b0433000000f80bb00210000000010d00043d000004840dd00197000000000bbd019f0000000100b0043f000000060bc002700000003f0bb0018f000000000b0b0433000000f80bb00210000000020d00043d000004840dd00197000000000bbd019f0000000200b0043f0000003f0bc0018f000000000b0b0433000000f80bb00210000000030c00043d000004840cc00197000000000bbc019f0000000300b0043f000000000b00043d0000000000b6043500000004066000390000000000a6004b00000df70000413d00000000008704350000004002900039000000400020043f000000032050011a000000000002004b0000000005000019000000ff0220c18f000000020520c11900000000025600490000049705000041000000000052043500000000000604350000000000430435000000400400043d00000000020300190000000005040019000d00000004001d0000002003400039000004980400004100000000004304350000000003020433000c00000003001d0000003d02500039108d0ff60000040f0000000c030000290000001d023000390000000d0100002900000000002104350000003d02300039108d0fe40000040f000000400100043d000c00000001001d0000000d02000029108d10030000040f0000000c02000029000008150000013d0000000601000029000000600110021000070457001001cb000000050300002900000009013000290000000101100367000000000101043b000d00000001001d0000000801000029000000200010043f000b00000003001d0000000a013000290000000101100367000000000101043b000000000010043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b000000000201041a0000000d0220006c00000aba0000413d000000000021041b0000000701000029000000200010043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000000101043b000000000201041a0000000d04000029000000000042001a00000fb50000413d0000000b03000029000000200330008c0000000002420019000000000021041b00000e450000c13d0000040b0000013d0000001f0430018f0000046005300198000000070250002900000e7e0000613d000000000601034f0000000707000029000000006806043c0000000007870436000000000027004b00000e7a0000c13d000000000004004b00000e8b0000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000006001300210000000070200002900000d010000013d0000001f0430018f0000046005300198000000080250002900000e980000613d000000000601034f0000000807000029000000006806043c0000000007870436000000000027004b00000e940000c13d000000000004004b00000ea50000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000006001300210000000080200002900000d010000013d000000070000006b000000000100001900000ead0000613d0000000601000029000000000101043300000007040000290000000302400210000004a30220027f000004a302200167000000000121016f0000000102400210000000000121019f00000ed00000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000050600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000ebb0000c13d000000070020006c00000ecd0000813d00000007020000290000000302200210000000f80220018f000004a30220027f000004a30220016700000005033000290000000003030433000000000223016f000000000021041b0000000701000029000000010110021000000001011001bf0000000802000029000000000012041b0000000d010000290000000001010433000d00000001001d0000000021010434000600000002001d000700000001001d000004550010009c0000058e0000213d00000008010000290000000101100039000500000001001d000000000101041a000000010010019000000001021002700000007f0220618f000400000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000005e0000c13d0000000401000029000000200010008c00000f070000413d0000000501000029000000000010043f0000000001000414000004240010009c0000042401008041000000c00110021000000467011001c70000801002000039108d10880000040f000000010020019000000fa70000613d00000007030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000004010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000f070000813d000000000002041b0000000102200039000000000012004b00000f030000413d00000007010000290000001f0010008c00000f1b0000a13d0000000501000029000000000010043f0000000001000414000004240010009c0000042401008041000000c00110021000000467011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000200200008a0000000702200180000000000101043b00000f420000c13d000000200300003900000f4e0000013d000000070000006b000000000100001900000f200000613d0000000601000029000000000101043300000007040000290000000302400210000004a30220027f000004a302200167000000000121016f0000000102400210000000000121019f00000f5c0000013d0000001f0430018f00000460053001980000000c0250002900000f320000613d000000000601034f0000000c07000029000000006806043c0000000007870436000000000027004b00000f2e0000c13d000000000004004b00000f3f0000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000012043500000060013002100000000c0200002900000d010000013d000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000d053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000f470000c13d000000070020006c00000f590000813d00000007020000290000000302200210000000f80220018f000004a30220027f000004a3022001670000000d033000290000000003030433000000000223016f000000000021041b0000000701000029000000010110021000000001011001bf0000000502000029000000000012041b0000000c010000290000000001010433000d00000001001d0000000021010434000700000002001d000c00000001001d000004550010009c0000058e0000213d00000008010000290000000201100039000600000001001d000000000101041a000000010010019000000001021002700000007f0220618f000500000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000005e0000c13d0000000501000029000000200010008c00000f930000413d0000000601000029000000000010043f0000000001000414000004240010009c0000042401008041000000c00110021000000467011001c70000801002000039108d10880000040f000000010020019000000fa70000613d0000000c030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000005010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000f930000813d000000000002041b0000000102200039000000000012004b00000f8f0000413d0000000c010000290000001f0010008c00000fa90000a13d0000000601000029000000000010043f0000000001000414000004240010009c0000042401008041000000c00110021000000467011001c70000801002000039108d10880000040f000000010020019000000fa70000613d000000200200008a0000000c02200180000000000101043b00000fb90000c13d000000200300003900000fc50000013d00000000010000190000108f000104300000000c0000006b000000000100001900000fae0000613d000000070100002900000000010104330000000c040000290000000302400210000004a30220027f000004a302200167000000000121016f000a00010040021800000fd20000013d0000047e01000041000000000010043f00000454010000410000108f00010430000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000d053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000fbe0000c13d0000000c0020006c00000fd00000813d0000000c020000290000000302200210000000f80220018f000004a30220027f000004a3022001670000000d033000290000000003030433000000000223016f000000000021041b0000000c0100002900000001011002100000000a011001af0000000602000029000000000012041b00000008040000290000000301400039000000000201041a000004a1022001970000000b030000290000000003030433000000000003004b000000010220c1bf000000000021041b000000040140003900000009020000290000000002020433000000000021041b00000000010000190000108e0001042e0000001f02200039000004a2022001970000000001120019000000000021004b00000000020000390000000102004039000004550010009c00000ff00000213d000000010020019000000ff00000c13d000000400010043f000000000001042d0000049a01000041000000000010043f0000004101000039000000040010043f0000049b010000410000108f00010430000000000003004b000010000000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000034004b00000ff90000413d00000000012300190000000000010435000000000001042d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000010120000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000100b0000413d000000000312001900000000000304350000001f02200039000004a2022001970000000001210019000000000001042d0000045703000041000000200030043f000000140010043f000000000020043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f0000000100200190000010280000613d000000000101043b000000000101041a000000000001042d00000000010000190000108f000104300002000000000002000200000003001d000100000001001d000000600110021000000457011001c7000000200010043f000000000020043f0000000001000414000004240010009c0000042401008041000000c00110021000000456011001c70000801002000039108d10880000040f0000000100200190000010510000613d000000000101043b000000000201041a0000000203000029000000000232004b000010530000413d000000000021041b000000200030043f0000000001000414000004240010009c000004240100804100000001020000290000045006200197000000c00110021000000456011001c70000800d02000039000000040300003900000000050004110000045a040000410000000007000019108d10830000040f0000000100200190000010510000613d000000000001042d00000000010000190000108f000104300000047601000041000000000010043f00000454010000410000108f0001043000010000000000020000042502000041000000000502041a00000000020004140000045006100197000004240020009c0000042402008041000000c00120021000000426011001c70000800d0200003900000003030000390000042704000041000100000006001d108d10830000040f00000001002001900000106b0000613d00000425010000410000000102000029000000000021041b000000000001042d00000000010000190000108f00010430000000000001042f000004240010009c00000424010080410000004001100210000004240020009c00000424020080410000006002200210000000000112019f0000000002000414000004240020009c0000042402008041000000c002200210000000000112019f00000426011001c70000801002000039108d10880000040f0000000100200190000010810000613d000000000101043b000000000001042d00000000010000190000108f0001043000001086002104210000000102000039000000000001042d0000000002000019000000000001042d0000108b002104230000000102000039000000000001042d0000000002000019000000000001042d0000108d000004320000108e0001042e0000108f0001043000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7487392702000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acebfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a53246696e616c426f7375426164676573000000000000000000000000000000001ec2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a54642420000000000000000000000000000000000000000000000000000000006000000020000000000000000000000000000004000000100000000000000000000000000000000000000000000000000000000000000000000000000731133e800000000000000000000000000000000000000000000000000000000be1a7c8200000000000000000000000000000000000000000000000000000000f242432900000000000000000000000000000000000000000000000000000000fdff9b4c00000000000000000000000000000000000000000000000000000000fdff9b4d00000000000000000000000000000000000000000000000000000000fee81cf400000000000000000000000000000000000000000000000000000000f242432a00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000be1a7c8300000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000f04e283e00000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000a5e90eee00000000000000000000000000000000000000000000000000000000b390c0ab00000000000000000000000000000000000000000000000000000000731133e9000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000256929610000000000000000000000000000000000000000000000000000000054d1f13c0000000000000000000000000000000000000000000000000000000054d1f13d000000000000000000000000000000000000000000000000000000006b20c45400000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000025692962000000000000000000000000000000000000000000000000000000002eb2c2d6000000000000000000000000000000000000000000000000000000004e1273f4000000000000000000000000000000000000000000000000000000000e89341b000000000000000000000000000000000000000000000000000000000e89341c00000000000000000000000000000000000000000000000000000000124d91e5000000000000000000000000000000000000000000000000000000001f7fdffa0000000000000000000000000000000000000000000000000000000000fdd58e0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000389a75e10000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000000000000000000000007448fbae00000000000000000000000000000000000000040000001c0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff02000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000009a31110384e0b0c9000000000000000000000000000000000000000100000000000000000000000002000000000000000000000000000000000000340000000c0000000000000000c3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f621806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000000000000f23a6e6100000000000000000000000000000000000000000000000000000000ffffff3bffffffffffffffffffffffffffffffffffffff3c00000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffe0f23a6e610000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000200000000c0000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320200000200000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000006f5e8818000000000000000000000000000000000000000000000000ffffffffffffff5f02000000000000000000000000000000000000200000000000000000000000004e6f7420656e6f7567682062616c616e6365000000000000000000000000000008c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c310000000000000000000000000000000000000000000000000000000082b429007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000ffffffff000000000000000000000000fe000000000000000000000000000000000000000000000000000000000000004a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fbfa7b8eab7da67f412cc9575ed43464468f9bfbae89d1675917346ca6d8fe3c92a4420a95000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000004b6e7f1800000000000000000000000000000000000000000000000000000000f4d678b802000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000bc197c81bc197c8100000000000000000000000000000000000000000000000000000000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd5d00dbf36a107da19e49527a7176a1babf963b4b0ff8cde35ee35d6cd8f1f9ac7e1d4d69736d61746368000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003b800a460000000000000000000000000000000000000000000000000000000001336cea000000000000000000000000000000000000000000000000000000009c05499b00000000000000000000000000000000000000000000000000000000ea553b34d92e233d00000000000000000000000000000000000000000000000000000000c0fc8a8a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff6000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3000000000000000000000000000000000000000000000000000000000000000546f6b656e202300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf4e6f206465736372697074696f6e2e0000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf000000005c75303030303031323334353637383961626364656662746e0066725c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000004000000004e4f00000000000000000000000000000000000000000000000000000000000059455300000000000000000000000000000000000000000000000000000000007b00000000000000000000000000000000000000000000000000000000000000226e616d65223a22000000000000000000000000000000000000000000000000222c226465736372697074696f6e223a22000000000000000000000000000000222c22696d616765223a22000000000000000000000000000000000000000000222c22736f756c626f756e64223a220000000000000000000000000000000000227d0000000000000000000000000000000000000000000000000000000000004142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3d3d000000000000000000000000000000000000000000000000000000000000646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000002ce0136b000000000000000000000000000000000000000000000000000000004e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000d9b67a26d9b67a26000000000000000000000000000000000000000000000000000000000e89341c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa88ed35471781292f3c1a810bb564571907d64ea592d591e827dcf87a79f64c4

    [ 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.