ETH Price: $2,988.79 (-2.18%)
Gas: 1 Gwei

Token

RetroRaccoons (RR80s)
 

Overview

Max Total Supply

3,074 RR80s

Holders

1,535

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 RR80s
0xedba7d6EbB025aaEF44e5a99c00e0fd67Ae17641
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RetroRaccoons

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-20
*/

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


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

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

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

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

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

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

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

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

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: RRtest.sol


 /*
      :::::::::       ::::::::::   :::::::::::       :::::::::       ::::::::       :::::::::           :::        ::::::::       ::::::::       ::::::::       ::::    :::       :::::::: 
     :+:    :+:      :+:              :+:           :+:    :+:     :+:    :+:      :+:    :+:        :+: :+:     :+:    :+:     :+:    :+:     :+:    :+:      :+:+:   :+:      :+:    :+: 
    +:+    +:+      +:+              +:+           +:+    +:+     +:+    +:+      +:+    +:+       +:+   +:+    +:+            +:+    +:+     +:+    +:+      :+:+:+  +:+      +:+         
   +#++:++#:       +#++:++#         +#+           +#++:++#:      +#+    +:+      +#++:++#:       +#++:++#++:   +#+            +#+    +:+     +#+    +:+      +#+ +:+ +#+      +#++:++#++   
  +#+    +#+      +#+              +#+           +#+    +#+     +#+    +#+      +#+    +#+      +#+     +#+   +#+            +#+    +#+     +#+    +#+      +#+  +#+#+#             +#+    
 #+#    #+#      #+#              #+#           #+#    #+#     #+#    #+#      #+#    #+#      #+#     #+#   #+#    #+#     #+#    #+#     #+#    #+#      #+#   #+#+#      #+#    #+#     
###    ###      ##########       ###           ###    ###      ########       ###    ###      ###     ###    ########       ########       ########       ###    ####       ########       

Developer: crankydev.eth
*/

pragma solidity >=0.7.0 <0.9.0;



contract RetroRaccoons is ERC721A, Ownable {
    string public constant SYMBOL = "RR80s"; 
    uint256 public COST = 0.008 ether;
    uint256 public MAX_SUPPLY = 8080;
    uint256 public MAX_PER_WALLET = 100;
    uint256 public MAX_FREE_MINTS_PER_WALLET = 2;
    uint256 public FREE_MINT_COST = 0; 
    bool public SALE = false;
    bool public isRevealed = false;
    string public baseURI;
    string public previewURI;

    error SaleNotActive();
    error MaxSupplyReached();
    error MaxPerWalletReached();
    error MaxFreeMintsReached();
    error MaxPerTxReached();
    error NotEnoughETH();
    error NoContractMint();

    mapping(address => uint256) public freeMints;

    address[] public owners; 

    modifier onlyOwners() {
        require(isOwner(msg.sender), "Caller is not an owner");
        _;
    }

    function isOwner(address addr) public view returns (bool) {
        for (uint i = 0; i < owners.length; i++) {
            if (owners[i] == addr) {
                return true;
            }
        }
        return false;
    }

    function setOwners(address[] calldata _owners) external onlyOwners {
        owners = _owners;
    }

    constructor(
        string memory _name,
        string memory _symbol,
        address initialOwner
    ) ERC721A(_name, _symbol) Ownable(initialOwner) {
        owners.push(0xecfA56308257a8cAe860c6Aa4b6a5B153Edb7250);
    }

    function setCost(uint256 _cost) external onlyOwners {
        COST = _cost;
    }
  
    function setSupply(uint256 _newSupply) external onlyOwners {
        MAX_SUPPLY = _newSupply;
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function mintRR(uint256 _amount) external payable {
        if (!SALE) revert SaleNotActive();
        if (_totalMinted() + _amount > MAX_SUPPLY) revert MaxSupplyReached();
        if (_numberMinted(msg.sender) + _amount > MAX_PER_WALLET) revert MaxPerWalletReached();
        if (msg.value < COST * _amount) revert NotEnoughETH();

        _mint(msg.sender, _amount);
    }

    function FreeMintRR(uint256 _amount) external {
        require(_totalMinted() + _amount <= MAX_SUPPLY, "MaxSupplyReached");
        require(freeMints[msg.sender] + _amount <= MAX_FREE_MINTS_PER_WALLET, "MaxFreeMintsReached");
        require(SALE, "SaleNotActive");
        if (tx.origin != msg.sender) revert NoContractMint(); 

        freeMints[msg.sender] += _amount;
        _mint(msg.sender, _amount);
    }

    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }

    function setBaseURI(string calldata _newURI) external onlyOwners {
        baseURI = _newURI;
    }

    function _baseURI() internal view virtual override returns (string memory) {
    if (isRevealed) {
        return baseURI;
    } else {
        return previewURI;  
    }

    }


    function setPreviewURI(string calldata _previewURI) external onlyOwners {
        require(!isRevealed, "Collection has already been revealed");
        previewURI = _previewURI;
    }

    function setIsRevealed(bool _reveal) external onlyOwners {
        isRevealed = _reveal;
    }

    function toggleSale(bool _toggle) external onlyOwners {
        SALE = _toggle;
    }
  
    function setMaxPerWallet(uint256 _newMaxPerWallet) external onlyOwners {
        MAX_PER_WALLET = _newMaxPerWallet;
    }

    function Airdrop(uint256 _amount, address _to) external onlyOwners {
        if (_totalMinted() + _amount > MAX_SUPPLY) revert MaxSupplyReached();
        _mint(_to, _amount);
    }

    function burnFromOwner(uint256 _tokenId) external onlyOwners {
        require(_exists(_tokenId), "Token does not exist");
        _burn(_tokenId);
    }

    function withdraw() external onlyOwners {
        uint256 balance = address(this).balance;
        uint256 share = balance / owners.length;

        for (uint i = 0; i < owners.length; i++) {
            (bool success, ) = owners[i].call{value: share}("");
            require(success, "Transfer failed.");
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MaxFreeMintsReached","type":"error"},{"inputs":[],"name":"MaxPerTxReached","type":"error"},{"inputs":[],"name":"MaxPerWalletReached","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoContractMint","type":"error"},{"inputs":[],"name":"NotEnoughETH","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SaleNotActive","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"FreeMintRR","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_FREE_MINTS_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE","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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burnFromOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintRR","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"owners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"previewURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_reveal","type":"bool"}],"name":"setIsRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_owners","type":"address[]"}],"name":"setOwners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_previewURI","type":"string"}],"name":"setPreviewURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setSupply","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":"bool","name":"_toggle","type":"bool"}],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052661c6bf526340000600955611f90600a556064600b556002600c555f600d555f600e5f6101000a81548160ff0219169083151502179055505f600e60016101000a81548160ff02191690831515021790555034801562000062575f80fd5b50604051620043fb380380620043fb833981810160405281019062000088919062000479565b80838381600290816200009c919062000747565b508060039081620000ae919062000747565b50620000bf620001c860201b60201c565b5f8190555050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000139575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200013091906200083c565b60405180910390fd5b6200014a81620001d060201b60201c565b50601273ecfa56308257a8cae860c6aa4b6a5b153edb7250908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000857565b5f6001905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620002f482620002ac565b810181811067ffffffffffffffff82111715620003165762000315620002bc565b5b80604052505050565b5f6200032a62000293565b9050620003388282620002e9565b919050565b5f67ffffffffffffffff8211156200035a5762000359620002bc565b5b6200036582620002ac565b9050602081019050919050565b5f5b838110156200039157808201518184015260208101905062000374565b5f8484015250505050565b5f620003b2620003ac846200033d565b6200031f565b905082815260208101848484011115620003d157620003d0620002a8565b5b620003de84828562000372565b509392505050565b5f82601f830112620003fd57620003fc620002a4565b5b81516200040f8482602086016200039c565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620004438262000418565b9050919050565b620004558162000437565b811462000460575f80fd5b50565b5f8151905062000473816200044a565b92915050565b5f805f606084860312156200049357620004926200029c565b5b5f84015167ffffffffffffffff811115620004b357620004b2620002a0565b5b620004c186828701620003e6565b935050602084015167ffffffffffffffff811115620004e557620004e4620002a0565b5b620004f386828701620003e6565b9250506040620005068682870162000463565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200055f57607f821691505b6020821081036200057557620005746200051a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200059c565b620005e586836200059c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200062f620006296200062384620005fd565b62000606565b620005fd565b9050919050565b5f819050919050565b6200064a836200060f565b62000662620006598262000636565b848454620005a8565b825550505050565b5f90565b620006786200066a565b620006858184846200063f565b505050565b5b81811015620006ac57620006a05f826200066e565b6001810190506200068b565b5050565b601f821115620006fb57620006c5816200057b565b620006d0846200058d565b81016020851015620006e0578190505b620006f8620006ef856200058d565b8301826200068a565b50505b505050565b5f82821c905092915050565b5f6200071d5f198460080262000700565b1980831691505092915050565b5f6200073783836200070c565b9150826002028217905092915050565b620007528262000510565b67ffffffffffffffff8111156200076e576200076d620002bc565b5b6200077a825462000547565b62000787828285620006b0565b5f60209050601f831160018114620007bd575f8415620007a8578287015190505b620007b485826200072a565b86555062000823565b601f198416620007cd866200057b565b5f5b82811015620007f657848901518255600182019150602085019450602081019050620007cf565b8683101562000816578489015162000812601f8916826200070c565b8355505b6001600288020188555050505b505050505050565b620008368162000437565b82525050565b5f602082019050620008515f8301846200082b565b92915050565b613b9680620008655f395ff3fe608060405260043610610266575f3560e01c80636c0360eb11610143578063b5f07ea1116100b5578063dc33e68111610079578063dc33e681146108b4578063e268e4d3146108f0578063e985e9c514610918578063f2fde38b14610954578063f76f8d781461097c578063fa4d3698146109a657610266565b8063b5f07ea1146107e0578063b88d4fde14610808578063bf8fbbd214610824578063c87b56dd1461084e578063d3ff166c1461088a57610266565b806382b162191161010757806382b16219146106ec5780638da5cb5b1461071457806390498f931461073e57806395d89b4114610766578063a22cb46514610790578063aab402e5146107b857610266565b80636c0360eb1461060c5780636d41d4fb1461063657806370a0823114610672578063715018a6146106ae5780637871e154146106c457610266565b80633b4c4b25116101dc5780634a42bc2d116101a05780634a42bc2d1461050e5780634bad5954146105385780634db08aea1461055457806354214f691461057e57806355f804b3146105a85780636352211e146105d057610266565b80633b4c4b25146104645780633ccfd60b1461048c57806342842e0e146104a257806344a0d68a146104be57806349a5980a146104e657610266565b80630f2cdd6c1161022e5780630f2cdd6c1461036457806318160ddd1461038e57806323b872dd146103b8578063293ae5cf146103d45780632f54bf6e146103fe57806332cb6b0c1461043a57610266565b806301ffc9a71461026a578063025e7c27146102a657806306fdde03146102e2578063081812fc1461030c578063095ea7b314610348575b5f80fd5b348015610275575f80fd5b50610290600480360381019061028b9190612bda565b6109ce565b60405161029d9190612c1f565b60405180910390f35b3480156102b1575f80fd5b506102cc60048036038101906102c79190612c6b565b610a5f565b6040516102d99190612cd5565b60405180910390f35b3480156102ed575f80fd5b506102f6610a9a565b6040516103039190612d78565b60405180910390f35b348015610317575f80fd5b50610332600480360381019061032d9190612c6b565b610b2a565b60405161033f9190612cd5565b60405180910390f35b610362600480360381019061035d9190612dc2565b610ba4565b005b34801561036f575f80fd5b50610378610ce3565b6040516103859190612e0f565b60405180910390f35b348015610399575f80fd5b506103a2610ce9565b6040516103af9190612e0f565b60405180910390f35b6103d260048036038101906103cd9190612e28565b610cfe565b005b3480156103df575f80fd5b506103e861100c565b6040516103f59190612e0f565b60405180910390f35b348015610409575f80fd5b50610424600480360381019061041f9190612e78565b611012565b6040516104319190612c1f565b60405180910390f35b348015610445575f80fd5b5061044e6110ba565b60405161045b9190612e0f565b60405180910390f35b34801561046f575f80fd5b5061048a60048036038101906104859190612c6b565b6110c0565b005b348015610497575f80fd5b506104a0611112565b005b6104bc60048036038101906104b79190612e28565b61127d565b005b3480156104c9575f80fd5b506104e460048036038101906104df9190612c6b565b61129c565b005b3480156104f1575f80fd5b5061050c60048036038101906105079190612ecd565b6112ee565b005b348015610519575f80fd5b50610522611353565b60405161052f9190612e0f565b60405180910390f35b610552600480360381019061054d9190612c6b565b611359565b005b34801561055f575f80fd5b5061056861148f565b6040516105759190612c1f565b60405180910390f35b348015610589575f80fd5b506105926114a1565b60405161059f9190612c1f565b60405180910390f35b3480156105b3575f80fd5b506105ce60048036038101906105c99190612f59565b6114b4565b005b3480156105db575f80fd5b506105f660048036038101906105f19190612c6b565b611512565b6040516106039190612cd5565b60405180910390f35b348015610617575f80fd5b50610620611523565b60405161062d9190612d78565b60405180910390f35b348015610641575f80fd5b5061065c60048036038101906106579190612e78565b6115af565b6040516106699190612e0f565b60405180910390f35b34801561067d575f80fd5b5061069860048036038101906106939190612e78565b6115c4565b6040516106a59190612e0f565b60405180910390f35b3480156106b9575f80fd5b506106c2611679565b005b3480156106cf575f80fd5b506106ea60048036038101906106e59190612fa4565b61168c565b005b3480156106f7575f80fd5b50610712600480360381019061070d9190612c6b565b611730565b005b34801561071f575f80fd5b50610728611927565b6040516107359190612cd5565b60405180910390f35b348015610749575f80fd5b50610764600480360381019061075f9190612f59565b61194f565b005b348015610771575f80fd5b5061077a6119fd565b6040516107879190612d78565b60405180910390f35b34801561079b575f80fd5b506107b660048036038101906107b19190612fe2565b611a8d565b005b3480156107c3575f80fd5b506107de60048036038101906107d99190612ecd565b611b93565b005b3480156107eb575f80fd5b5061080660048036038101906108019190612c6b565b611bf7565b005b610822600480360381019061081d9190613148565b611c93565b005b34801561082f575f80fd5b50610838611d05565b6040516108459190612e0f565b60405180910390f35b348015610859575f80fd5b50610874600480360381019061086f9190612c6b565b611d0b565b6040516108819190612d78565b60405180910390f35b348015610895575f80fd5b5061089e611da6565b6040516108ab9190612d78565b60405180910390f35b3480156108bf575f80fd5b506108da60048036038101906108d59190612e78565b611e32565b6040516108e79190612e0f565b60405180910390f35b3480156108fb575f80fd5b5061091660048036038101906109119190612c6b565b611e43565b005b348015610923575f80fd5b5061093e600480360381019061093991906131c8565b611e95565b60405161094b9190612c1f565b60405180910390f35b34801561095f575f80fd5b5061097a60048036038101906109759190612e78565b611f23565b005b348015610987575f80fd5b50610990611fa7565b60405161099d9190612d78565b60405180910390f35b3480156109b1575f80fd5b506109cc60048036038101906109c7919061325b565b611fe0565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a585750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60128181548110610a6e575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060028054610aa9906132d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad5906132d3565b8015610b205780601f10610af757610100808354040283529160200191610b20565b820191905f5260205f20905b815481529060010190602001808311610b0357829003601f168201915b5050505050905090565b5f610b348261203e565b610b6a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610bae82611512565b90508073ffffffffffffffffffffffffffffffffffffffff16610bcf612098565b73ffffffffffffffffffffffffffffffffffffffff1614610c3257610bfb81610bf6612098565b611e95565b610c31576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b5f610cf261209f565b6001545f540303905090565b5f610d08826120a7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d6f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610d7a8461216a565b91509150610d908187610d8b612098565b61218d565b610ddc57610da586610da0612098565b611e95565b610ddb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610e41576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e4e86868660016121d0565b8015610e58575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610f2085610efc8888876121d6565b7c0200000000000000000000000000000000000000000000000000000000176121fd565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610f9c575f6001850190505f60045f8381526020019081526020015f205403610f9a575f548114610f99578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110048686866001612227565b505050505050565b600c5481565b5f805f90505b6012805490508110156110b0578273ffffffffffffffffffffffffffffffffffffffff16601282815481106110505761104f613303565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361109d5760019150506110b5565b80806110a89061335d565b915050611018565b505f90505b919050565b600a5481565b6110c933611012565b611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff906133ee565b60405180910390fd5b80600a8190555050565b61111b33611012565b61115a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611151906133ee565b60405180910390fd5b5f4790505f601280549050826111709190613439565b90505f5b601280549050811015611278575f6012828154811061119657611195613303565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516111e190613496565b5f6040518083038185875af1925050503d805f811461121b576040519150601f19603f3d011682016040523d82523d5f602084013e611220565b606091505b5050905080611264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125b906134f4565b60405180910390fd5b5080806112709061335d565b915050611174565b505050565b61129783838360405180602001604052805f815250611c93565b505050565b6112a533611012565b6112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db906133ee565b60405180910390fd5b8060098190555050565b6112f733611012565b611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d906133ee565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b600d5481565b600e5f9054906101000a900460ff1661139e576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54816113aa61222d565b6113b49190613512565b11156113ec576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b54816113f93361223e565b6114039190613512565b111561143b576040517fd330f98500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806009546114499190613545565b341015611482576040517f583aa02600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61148c3382612292565b50565b600e5f9054906101000a900460ff1681565b600e60019054906101000a900460ff1681565b6114bd33611012565b6114fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f3906133ee565b60405180910390fd5b8181600f918261150d92919061372d565b505050565b5f61151c826120a7565b9050919050565b600f8054611530906132d3565b80601f016020809104026020016040519081016040528092919081815260200182805461155c906132d3565b80156115a75780601f1061157e576101008083540402835291602001916115a7565b820191905f5260205f20905b81548152906001019060200180831161158a57829003601f168201915b505050505081565b6011602052805f5260405f205f915090505481565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361162a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b61168161243b565b61168a5f6124c2565b565b61169533611012565b6116d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cb906133ee565b60405180910390fd5b600a54826116e061222d565b6116ea9190613512565b1115611722576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61172c8183612292565b5050565b600a548161173c61222d565b6117469190613512565b1115611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e90613844565b60405180910390fd5b600c548160115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546117d39190613512565b1115611814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180b906138ac565b60405180910390fd5b600e5f9054906101000a900460ff16611862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185990613914565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118c7576040517fc8a2f6cd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546119139190613512565b925050819055506119243382612292565b50565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61195833611012565b611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e906133ee565b60405180910390fd5b600e60019054906101000a900460ff16156119e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119de906139a2565b60405180910390fd5b8181601091826119f892919061372d565b505050565b606060038054611a0c906132d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611a38906132d3565b8015611a835780601f10611a5a57610100808354040283529160200191611a83565b820191905f5260205f20905b815481529060010190602001808311611a6657829003601f168201915b5050505050905090565b8060075f611a99612098565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b42612098565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b879190612c1f565b60405180910390a35050565b611b9c33611012565b611bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd2906133ee565b60405180910390fd5b80600e5f6101000a81548160ff02191690831515021790555050565b611c0033611012565b611c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c36906133ee565b60405180910390fd5b611c488161203e565b611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e90613a0a565b60405180910390fd5b611c9081612585565b50565b611c9e848484610cfe565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611cff57611cc884848484612592565b611cfe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60095481565b6060611d168261203e565b611d4c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f611d556126dd565b90505f815103611d735760405180602001604052805f815250611d9e565b80611d7d84612813565b604051602001611d8e929190613a62565b6040516020818303038152906040525b915050919050565b60108054611db3906132d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611ddf906132d3565b8015611e2a5780601f10611e0157610100808354040283529160200191611e2a565b820191905f5260205f20905b815481529060010190602001808311611e0d57829003601f168201915b505050505081565b5f611e3c8261223e565b9050919050565b611e4c33611012565b611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e82906133ee565b60405180910390fd5b80600b8190555050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611f2b61243b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f9b575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611f929190612cd5565b60405180910390fd5b611fa4816124c2565b50565b6040518060400160405280600581526020017f525238307300000000000000000000000000000000000000000000000000000081525081565b611fe933611012565b612028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201f906133ee565b60405180910390fd5b818160129190612039929190612abc565b505050565b5f8161204861209f565b1115801561205657505f5482105b801561209157505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f80829050806120b561209f565b11612133575f54811015612132575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603612130575b5f81036121265760045f836001900393508381526020019081526020015f205490506120ff565b8092505050612165565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86121ec868684612862565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f61223661209f565b5f5403905090565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f805490505f82036122d0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122dc5f8483856121d0565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555061234e8361233f5f865f6121d6565b6123488561286a565b176121fd565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146123e85780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001810190506123af565b505f8203612422576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506124365f848385612227565b505050565b612443612879565b73ffffffffffffffffffffffffffffffffffffffff16612461611927565b73ffffffffffffffffffffffffffffffffffffffff16146124c057612484612879565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016124b79190612cd5565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61258f815f612880565b50565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125b7612098565b8786866040518563ffffffff1660e01b81526004016125d99493929190613ad7565b6020604051808303815f875af192505050801561261457506040513d601f19601f820116820180604052508101906126119190613b35565b60015b61268a573d805f8114612642576040519150601f19603f3d011682016040523d82523d5f602084013e612647565b606091505b505f815103612682576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e60019054906101000a900460ff161561278457600f8054612701906132d3565b80601f016020809104026020016040519081016040528092919081815260200182805461272d906132d3565b80156127785780601f1061274f57610100808354040283529160200191612778565b820191905f5260205f20905b81548152906001019060200180831161275b57829003601f168201915b50505050509050612810565b60108054612791906132d3565b80601f01602080910402602001604051908101604052809291908181526020018280546127bd906132d3565b80156128085780601f106127df57610100808354040283529160200191612808565b820191905f5260205f20905b8154815290600101906020018083116127eb57829003601f168201915b505050505090505b90565b606060a060405101806040526020810391505f825281835b60011561284d57600184039350600a81066030018453600a810490508061282b575b50828103602084039350808452505050919050565b5f9392505050565b5f6001821460e11b9050919050565b5f33905090565b5f61288a836120a7565b90505f8190505f8061289b8661216a565b915091508415612904576128b781846128b2612098565b61218d565b612903576128cc836128c7612098565b611e95565b612902576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612911835f8860016121d0565b801561291b575f82555b600160806001901b0360055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506129bf8361297c855f886121d6565b7c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000017176121fd565b60045f8881526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000851603612a3b575f6001870190505f60045f8381526020019081526020015f205403612a39575f548114612a38578460045f8381526020019081526020015f20819055505b5b505b855f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612aa3835f886001612227565b60015f8154809291906001019190505550505050505050565b828054828255905f5260205f20908101928215612b48579160200282015b82811115612b4757823573ffffffffffffffffffffffffffffffffffffffff16825f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612ada565b5b509050612b559190612b59565b5090565b5b80821115612b70575f815f905550600101612b5a565b5090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612bb981612b85565b8114612bc3575f80fd5b50565b5f81359050612bd481612bb0565b92915050565b5f60208284031215612bef57612bee612b7d565b5b5f612bfc84828501612bc6565b91505092915050565b5f8115159050919050565b612c1981612c05565b82525050565b5f602082019050612c325f830184612c10565b92915050565b5f819050919050565b612c4a81612c38565b8114612c54575f80fd5b50565b5f81359050612c6581612c41565b92915050565b5f60208284031215612c8057612c7f612b7d565b5b5f612c8d84828501612c57565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612cbf82612c96565b9050919050565b612ccf81612cb5565b82525050565b5f602082019050612ce85f830184612cc6565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612d25578082015181840152602081019050612d0a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612d4a82612cee565b612d548185612cf8565b9350612d64818560208601612d08565b612d6d81612d30565b840191505092915050565b5f6020820190508181035f830152612d908184612d40565b905092915050565b612da181612cb5565b8114612dab575f80fd5b50565b5f81359050612dbc81612d98565b92915050565b5f8060408385031215612dd857612dd7612b7d565b5b5f612de585828601612dae565b9250506020612df685828601612c57565b9150509250929050565b612e0981612c38565b82525050565b5f602082019050612e225f830184612e00565b92915050565b5f805f60608486031215612e3f57612e3e612b7d565b5b5f612e4c86828701612dae565b9350506020612e5d86828701612dae565b9250506040612e6e86828701612c57565b9150509250925092565b5f60208284031215612e8d57612e8c612b7d565b5b5f612e9a84828501612dae565b91505092915050565b612eac81612c05565b8114612eb6575f80fd5b50565b5f81359050612ec781612ea3565b92915050565b5f60208284031215612ee257612ee1612b7d565b5b5f612eef84828501612eb9565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112612f1957612f18612ef8565b5b8235905067ffffffffffffffff811115612f3657612f35612efc565b5b602083019150836001820283011115612f5257612f51612f00565b5b9250929050565b5f8060208385031215612f6f57612f6e612b7d565b5b5f83013567ffffffffffffffff811115612f8c57612f8b612b81565b5b612f9885828601612f04565b92509250509250929050565b5f8060408385031215612fba57612fb9612b7d565b5b5f612fc785828601612c57565b9250506020612fd885828601612dae565b9150509250929050565b5f8060408385031215612ff857612ff7612b7d565b5b5f61300585828601612dae565b925050602061301685828601612eb9565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61305a82612d30565b810181811067ffffffffffffffff8211171561307957613078613024565b5b80604052505050565b5f61308b612b74565b90506130978282613051565b919050565b5f67ffffffffffffffff8211156130b6576130b5613024565b5b6130bf82612d30565b9050602081019050919050565b828183375f83830152505050565b5f6130ec6130e78461309c565b613082565b90508281526020810184848401111561310857613107613020565b5b6131138482856130cc565b509392505050565b5f82601f83011261312f5761312e612ef8565b5b813561313f8482602086016130da565b91505092915050565b5f805f80608085870312156131605761315f612b7d565b5b5f61316d87828801612dae565b945050602061317e87828801612dae565b935050604061318f87828801612c57565b925050606085013567ffffffffffffffff8111156131b0576131af612b81565b5b6131bc8782880161311b565b91505092959194509250565b5f80604083850312156131de576131dd612b7d565b5b5f6131eb85828601612dae565b92505060206131fc85828601612dae565b9150509250929050565b5f8083601f84011261321b5761321a612ef8565b5b8235905067ffffffffffffffff81111561323857613237612efc565b5b60208301915083602082028301111561325457613253612f00565b5b9250929050565b5f806020838503121561327157613270612b7d565b5b5f83013567ffffffffffffffff81111561328e5761328d612b81565b5b61329a85828601613206565b92509250509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806132ea57607f821691505b6020821081036132fd576132fc6132a6565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61336782612c38565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361339957613398613330565b5b600182019050919050565b7f43616c6c6572206973206e6f7420616e206f776e6572000000000000000000005f82015250565b5f6133d8601683612cf8565b91506133e3826133a4565b602082019050919050565b5f6020820190508181035f830152613405816133cc565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61344382612c38565b915061344e83612c38565b92508261345e5761345d61340c565b5b828204905092915050565b5f81905092915050565b50565b5f6134815f83613469565b915061348c82613473565b5f82019050919050565b5f6134a082613476565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f6134de601083612cf8565b91506134e9826134aa565b602082019050919050565b5f6020820190508181035f83015261350b816134d2565b9050919050565b5f61351c82612c38565b915061352783612c38565b925082820190508082111561353f5761353e613330565b5b92915050565b5f61354f82612c38565b915061355a83612c38565b925082820261356881612c38565b9150828204841483151761357f5761357e613330565b5b5092915050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026135ec7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135b1565b6135f686836135b1565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61363161362c61362784612c38565b61360e565b612c38565b9050919050565b5f819050919050565b61364a83613617565b61365e61365682613638565b8484546135bd565b825550505050565b5f90565b613672613666565b61367d818484613641565b505050565b5b818110156136a0576136955f8261366a565b600181019050613683565b5050565b601f8211156136e5576136b681613590565b6136bf846135a2565b810160208510156136ce578190505b6136e26136da856135a2565b830182613682565b50505b505050565b5f82821c905092915050565b5f6137055f19846008026136ea565b1980831691505092915050565b5f61371d83836136f6565b9150826002028217905092915050565b6137378383613586565b67ffffffffffffffff8111156137505761374f613024565b5b61375a82546132d3565b6137658282856136a4565b5f601f831160018114613792575f8415613780578287013590505b61378a8582613712565b8655506137f1565b601f1984166137a086613590565b5f5b828110156137c7578489013582556001820191506020850194506020810190506137a2565b868310156137e457848901356137e0601f8916826136f6565b8355505b6001600288020188555050505b50505050505050565b7f4d6178537570706c7952656163686564000000000000000000000000000000005f82015250565b5f61382e601083612cf8565b9150613839826137fa565b602082019050919050565b5f6020820190508181035f83015261385b81613822565b9050919050565b7f4d6178467265654d696e747352656163686564000000000000000000000000005f82015250565b5f613896601383612cf8565b91506138a182613862565b602082019050919050565b5f6020820190508181035f8301526138c38161388a565b9050919050565b7f53616c654e6f74416374697665000000000000000000000000000000000000005f82015250565b5f6138fe600d83612cf8565b9150613909826138ca565b602082019050919050565b5f6020820190508181035f83015261392b816138f2565b9050919050565b7f436f6c6c656374696f6e2068617320616c7265616479206265656e20726576655f8201527f616c656400000000000000000000000000000000000000000000000000000000602082015250565b5f61398c602483612cf8565b915061399782613932565b604082019050919050565b5f6020820190508181035f8301526139b981613980565b9050919050565b7f546f6b656e20646f6573206e6f742065786973740000000000000000000000005f82015250565b5f6139f4601483612cf8565b91506139ff826139c0565b602082019050919050565b5f6020820190508181035f830152613a21816139e8565b9050919050565b5f81905092915050565b5f613a3c82612cee565b613a468185613a28565b9350613a56818560208601612d08565b80840191505092915050565b5f613a6d8285613a32565b9150613a798284613a32565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f613aa982613a85565b613ab38185613a8f565b9350613ac3818560208601612d08565b613acc81612d30565b840191505092915050565b5f608082019050613aea5f830187612cc6565b613af76020830186612cc6565b613b046040830185612e00565b8181036060830152613b168184613a9f565b905095945050505050565b5f81519050613b2f81612bb0565b92915050565b5f60208284031215613b4a57613b49612b7d565b5b5f613b5784828501613b21565b9150509291505056fea264697066735822122050a50053397076988349d523fbdfcb71b5badb09b179f81ab19f45b80c115ad564736f6c63430008150033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000008d9729c008e301d7475175ac81a308f243d4f2c9000000000000000000000000000000000000000000000000000000000000000d526574726f526163636f6f6e730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055252383073000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405260043610610266575f3560e01c80636c0360eb11610143578063b5f07ea1116100b5578063dc33e68111610079578063dc33e681146108b4578063e268e4d3146108f0578063e985e9c514610918578063f2fde38b14610954578063f76f8d781461097c578063fa4d3698146109a657610266565b8063b5f07ea1146107e0578063b88d4fde14610808578063bf8fbbd214610824578063c87b56dd1461084e578063d3ff166c1461088a57610266565b806382b162191161010757806382b16219146106ec5780638da5cb5b1461071457806390498f931461073e57806395d89b4114610766578063a22cb46514610790578063aab402e5146107b857610266565b80636c0360eb1461060c5780636d41d4fb1461063657806370a0823114610672578063715018a6146106ae5780637871e154146106c457610266565b80633b4c4b25116101dc5780634a42bc2d116101a05780634a42bc2d1461050e5780634bad5954146105385780634db08aea1461055457806354214f691461057e57806355f804b3146105a85780636352211e146105d057610266565b80633b4c4b25146104645780633ccfd60b1461048c57806342842e0e146104a257806344a0d68a146104be57806349a5980a146104e657610266565b80630f2cdd6c1161022e5780630f2cdd6c1461036457806318160ddd1461038e57806323b872dd146103b8578063293ae5cf146103d45780632f54bf6e146103fe57806332cb6b0c1461043a57610266565b806301ffc9a71461026a578063025e7c27146102a657806306fdde03146102e2578063081812fc1461030c578063095ea7b314610348575b5f80fd5b348015610275575f80fd5b50610290600480360381019061028b9190612bda565b6109ce565b60405161029d9190612c1f565b60405180910390f35b3480156102b1575f80fd5b506102cc60048036038101906102c79190612c6b565b610a5f565b6040516102d99190612cd5565b60405180910390f35b3480156102ed575f80fd5b506102f6610a9a565b6040516103039190612d78565b60405180910390f35b348015610317575f80fd5b50610332600480360381019061032d9190612c6b565b610b2a565b60405161033f9190612cd5565b60405180910390f35b610362600480360381019061035d9190612dc2565b610ba4565b005b34801561036f575f80fd5b50610378610ce3565b6040516103859190612e0f565b60405180910390f35b348015610399575f80fd5b506103a2610ce9565b6040516103af9190612e0f565b60405180910390f35b6103d260048036038101906103cd9190612e28565b610cfe565b005b3480156103df575f80fd5b506103e861100c565b6040516103f59190612e0f565b60405180910390f35b348015610409575f80fd5b50610424600480360381019061041f9190612e78565b611012565b6040516104319190612c1f565b60405180910390f35b348015610445575f80fd5b5061044e6110ba565b60405161045b9190612e0f565b60405180910390f35b34801561046f575f80fd5b5061048a60048036038101906104859190612c6b565b6110c0565b005b348015610497575f80fd5b506104a0611112565b005b6104bc60048036038101906104b79190612e28565b61127d565b005b3480156104c9575f80fd5b506104e460048036038101906104df9190612c6b565b61129c565b005b3480156104f1575f80fd5b5061050c60048036038101906105079190612ecd565b6112ee565b005b348015610519575f80fd5b50610522611353565b60405161052f9190612e0f565b60405180910390f35b610552600480360381019061054d9190612c6b565b611359565b005b34801561055f575f80fd5b5061056861148f565b6040516105759190612c1f565b60405180910390f35b348015610589575f80fd5b506105926114a1565b60405161059f9190612c1f565b60405180910390f35b3480156105b3575f80fd5b506105ce60048036038101906105c99190612f59565b6114b4565b005b3480156105db575f80fd5b506105f660048036038101906105f19190612c6b565b611512565b6040516106039190612cd5565b60405180910390f35b348015610617575f80fd5b50610620611523565b60405161062d9190612d78565b60405180910390f35b348015610641575f80fd5b5061065c60048036038101906106579190612e78565b6115af565b6040516106699190612e0f565b60405180910390f35b34801561067d575f80fd5b5061069860048036038101906106939190612e78565b6115c4565b6040516106a59190612e0f565b60405180910390f35b3480156106b9575f80fd5b506106c2611679565b005b3480156106cf575f80fd5b506106ea60048036038101906106e59190612fa4565b61168c565b005b3480156106f7575f80fd5b50610712600480360381019061070d9190612c6b565b611730565b005b34801561071f575f80fd5b50610728611927565b6040516107359190612cd5565b60405180910390f35b348015610749575f80fd5b50610764600480360381019061075f9190612f59565b61194f565b005b348015610771575f80fd5b5061077a6119fd565b6040516107879190612d78565b60405180910390f35b34801561079b575f80fd5b506107b660048036038101906107b19190612fe2565b611a8d565b005b3480156107c3575f80fd5b506107de60048036038101906107d99190612ecd565b611b93565b005b3480156107eb575f80fd5b5061080660048036038101906108019190612c6b565b611bf7565b005b610822600480360381019061081d9190613148565b611c93565b005b34801561082f575f80fd5b50610838611d05565b6040516108459190612e0f565b60405180910390f35b348015610859575f80fd5b50610874600480360381019061086f9190612c6b565b611d0b565b6040516108819190612d78565b60405180910390f35b348015610895575f80fd5b5061089e611da6565b6040516108ab9190612d78565b60405180910390f35b3480156108bf575f80fd5b506108da60048036038101906108d59190612e78565b611e32565b6040516108e79190612e0f565b60405180910390f35b3480156108fb575f80fd5b5061091660048036038101906109119190612c6b565b611e43565b005b348015610923575f80fd5b5061093e600480360381019061093991906131c8565b611e95565b60405161094b9190612c1f565b60405180910390f35b34801561095f575f80fd5b5061097a60048036038101906109759190612e78565b611f23565b005b348015610987575f80fd5b50610990611fa7565b60405161099d9190612d78565b60405180910390f35b3480156109b1575f80fd5b506109cc60048036038101906109c7919061325b565b611fe0565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a585750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60128181548110610a6e575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060028054610aa9906132d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad5906132d3565b8015610b205780601f10610af757610100808354040283529160200191610b20565b820191905f5260205f20905b815481529060010190602001808311610b0357829003601f168201915b5050505050905090565b5f610b348261203e565b610b6a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610bae82611512565b90508073ffffffffffffffffffffffffffffffffffffffff16610bcf612098565b73ffffffffffffffffffffffffffffffffffffffff1614610c3257610bfb81610bf6612098565b611e95565b610c31576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b5f610cf261209f565b6001545f540303905090565b5f610d08826120a7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d6f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610d7a8461216a565b91509150610d908187610d8b612098565b61218d565b610ddc57610da586610da0612098565b611e95565b610ddb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610e41576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e4e86868660016121d0565b8015610e58575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610f2085610efc8888876121d6565b7c0200000000000000000000000000000000000000000000000000000000176121fd565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610f9c575f6001850190505f60045f8381526020019081526020015f205403610f9a575f548114610f99578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110048686866001612227565b505050505050565b600c5481565b5f805f90505b6012805490508110156110b0578273ffffffffffffffffffffffffffffffffffffffff16601282815481106110505761104f613303565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361109d5760019150506110b5565b80806110a89061335d565b915050611018565b505f90505b919050565b600a5481565b6110c933611012565b611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff906133ee565b60405180910390fd5b80600a8190555050565b61111b33611012565b61115a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611151906133ee565b60405180910390fd5b5f4790505f601280549050826111709190613439565b90505f5b601280549050811015611278575f6012828154811061119657611195613303565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516111e190613496565b5f6040518083038185875af1925050503d805f811461121b576040519150601f19603f3d011682016040523d82523d5f602084013e611220565b606091505b5050905080611264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125b906134f4565b60405180910390fd5b5080806112709061335d565b915050611174565b505050565b61129783838360405180602001604052805f815250611c93565b505050565b6112a533611012565b6112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db906133ee565b60405180910390fd5b8060098190555050565b6112f733611012565b611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d906133ee565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b600d5481565b600e5f9054906101000a900460ff1661139e576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54816113aa61222d565b6113b49190613512565b11156113ec576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b54816113f93361223e565b6114039190613512565b111561143b576040517fd330f98500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806009546114499190613545565b341015611482576040517f583aa02600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61148c3382612292565b50565b600e5f9054906101000a900460ff1681565b600e60019054906101000a900460ff1681565b6114bd33611012565b6114fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f3906133ee565b60405180910390fd5b8181600f918261150d92919061372d565b505050565b5f61151c826120a7565b9050919050565b600f8054611530906132d3565b80601f016020809104026020016040519081016040528092919081815260200182805461155c906132d3565b80156115a75780601f1061157e576101008083540402835291602001916115a7565b820191905f5260205f20905b81548152906001019060200180831161158a57829003601f168201915b505050505081565b6011602052805f5260405f205f915090505481565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361162a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b61168161243b565b61168a5f6124c2565b565b61169533611012565b6116d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cb906133ee565b60405180910390fd5b600a54826116e061222d565b6116ea9190613512565b1115611722576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61172c8183612292565b5050565b600a548161173c61222d565b6117469190613512565b1115611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e90613844565b60405180910390fd5b600c548160115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546117d39190613512565b1115611814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180b906138ac565b60405180910390fd5b600e5f9054906101000a900460ff16611862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185990613914565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118c7576040517fc8a2f6cd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546119139190613512565b925050819055506119243382612292565b50565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61195833611012565b611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e906133ee565b60405180910390fd5b600e60019054906101000a900460ff16156119e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119de906139a2565b60405180910390fd5b8181601091826119f892919061372d565b505050565b606060038054611a0c906132d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611a38906132d3565b8015611a835780601f10611a5a57610100808354040283529160200191611a83565b820191905f5260205f20905b815481529060010190602001808311611a6657829003601f168201915b5050505050905090565b8060075f611a99612098565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b42612098565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b879190612c1f565b60405180910390a35050565b611b9c33611012565b611bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd2906133ee565b60405180910390fd5b80600e5f6101000a81548160ff02191690831515021790555050565b611c0033611012565b611c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c36906133ee565b60405180910390fd5b611c488161203e565b611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e90613a0a565b60405180910390fd5b611c9081612585565b50565b611c9e848484610cfe565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611cff57611cc884848484612592565b611cfe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60095481565b6060611d168261203e565b611d4c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f611d556126dd565b90505f815103611d735760405180602001604052805f815250611d9e565b80611d7d84612813565b604051602001611d8e929190613a62565b6040516020818303038152906040525b915050919050565b60108054611db3906132d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611ddf906132d3565b8015611e2a5780601f10611e0157610100808354040283529160200191611e2a565b820191905f5260205f20905b815481529060010190602001808311611e0d57829003601f168201915b505050505081565b5f611e3c8261223e565b9050919050565b611e4c33611012565b611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e82906133ee565b60405180910390fd5b80600b8190555050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611f2b61243b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f9b575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611f929190612cd5565b60405180910390fd5b611fa4816124c2565b50565b6040518060400160405280600581526020017f525238307300000000000000000000000000000000000000000000000000000081525081565b611fe933611012565b612028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201f906133ee565b60405180910390fd5b818160129190612039929190612abc565b505050565b5f8161204861209f565b1115801561205657505f5482105b801561209157505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f80829050806120b561209f565b11612133575f54811015612132575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603612130575b5f81036121265760045f836001900393508381526020019081526020015f205490506120ff565b8092505050612165565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86121ec868684612862565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f61223661209f565b5f5403905090565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f805490505f82036122d0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122dc5f8483856121d0565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555061234e8361233f5f865f6121d6565b6123488561286a565b176121fd565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146123e85780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001810190506123af565b505f8203612422576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506124365f848385612227565b505050565b612443612879565b73ffffffffffffffffffffffffffffffffffffffff16612461611927565b73ffffffffffffffffffffffffffffffffffffffff16146124c057612484612879565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016124b79190612cd5565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61258f815f612880565b50565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125b7612098565b8786866040518563ffffffff1660e01b81526004016125d99493929190613ad7565b6020604051808303815f875af192505050801561261457506040513d601f19601f820116820180604052508101906126119190613b35565b60015b61268a573d805f8114612642576040519150601f19603f3d011682016040523d82523d5f602084013e612647565b606091505b505f815103612682576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e60019054906101000a900460ff161561278457600f8054612701906132d3565b80601f016020809104026020016040519081016040528092919081815260200182805461272d906132d3565b80156127785780601f1061274f57610100808354040283529160200191612778565b820191905f5260205f20905b81548152906001019060200180831161275b57829003601f168201915b50505050509050612810565b60108054612791906132d3565b80601f01602080910402602001604051908101604052809291908181526020018280546127bd906132d3565b80156128085780601f106127df57610100808354040283529160200191612808565b820191905f5260205f20905b8154815290600101906020018083116127eb57829003601f168201915b505050505090505b90565b606060a060405101806040526020810391505f825281835b60011561284d57600184039350600a81066030018453600a810490508061282b575b50828103602084039350808452505050919050565b5f9392505050565b5f6001821460e11b9050919050565b5f33905090565b5f61288a836120a7565b90505f8190505f8061289b8661216a565b915091508415612904576128b781846128b2612098565b61218d565b612903576128cc836128c7612098565b611e95565b612902576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612911835f8860016121d0565b801561291b575f82555b600160806001901b0360055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506129bf8361297c855f886121d6565b7c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000017176121fd565b60045f8881526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000851603612a3b575f6001870190505f60045f8381526020019081526020015f205403612a39575f548114612a38578460045f8381526020019081526020015f20819055505b5b505b855f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612aa3835f886001612227565b60015f8154809291906001019190505550505050505050565b828054828255905f5260205f20908101928215612b48579160200282015b82811115612b4757823573ffffffffffffffffffffffffffffffffffffffff16825f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612ada565b5b509050612b559190612b59565b5090565b5b80821115612b70575f815f905550600101612b5a565b5090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612bb981612b85565b8114612bc3575f80fd5b50565b5f81359050612bd481612bb0565b92915050565b5f60208284031215612bef57612bee612b7d565b5b5f612bfc84828501612bc6565b91505092915050565b5f8115159050919050565b612c1981612c05565b82525050565b5f602082019050612c325f830184612c10565b92915050565b5f819050919050565b612c4a81612c38565b8114612c54575f80fd5b50565b5f81359050612c6581612c41565b92915050565b5f60208284031215612c8057612c7f612b7d565b5b5f612c8d84828501612c57565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612cbf82612c96565b9050919050565b612ccf81612cb5565b82525050565b5f602082019050612ce85f830184612cc6565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612d25578082015181840152602081019050612d0a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612d4a82612cee565b612d548185612cf8565b9350612d64818560208601612d08565b612d6d81612d30565b840191505092915050565b5f6020820190508181035f830152612d908184612d40565b905092915050565b612da181612cb5565b8114612dab575f80fd5b50565b5f81359050612dbc81612d98565b92915050565b5f8060408385031215612dd857612dd7612b7d565b5b5f612de585828601612dae565b9250506020612df685828601612c57565b9150509250929050565b612e0981612c38565b82525050565b5f602082019050612e225f830184612e00565b92915050565b5f805f60608486031215612e3f57612e3e612b7d565b5b5f612e4c86828701612dae565b9350506020612e5d86828701612dae565b9250506040612e6e86828701612c57565b9150509250925092565b5f60208284031215612e8d57612e8c612b7d565b5b5f612e9a84828501612dae565b91505092915050565b612eac81612c05565b8114612eb6575f80fd5b50565b5f81359050612ec781612ea3565b92915050565b5f60208284031215612ee257612ee1612b7d565b5b5f612eef84828501612eb9565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112612f1957612f18612ef8565b5b8235905067ffffffffffffffff811115612f3657612f35612efc565b5b602083019150836001820283011115612f5257612f51612f00565b5b9250929050565b5f8060208385031215612f6f57612f6e612b7d565b5b5f83013567ffffffffffffffff811115612f8c57612f8b612b81565b5b612f9885828601612f04565b92509250509250929050565b5f8060408385031215612fba57612fb9612b7d565b5b5f612fc785828601612c57565b9250506020612fd885828601612dae565b9150509250929050565b5f8060408385031215612ff857612ff7612b7d565b5b5f61300585828601612dae565b925050602061301685828601612eb9565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61305a82612d30565b810181811067ffffffffffffffff8211171561307957613078613024565b5b80604052505050565b5f61308b612b74565b90506130978282613051565b919050565b5f67ffffffffffffffff8211156130b6576130b5613024565b5b6130bf82612d30565b9050602081019050919050565b828183375f83830152505050565b5f6130ec6130e78461309c565b613082565b90508281526020810184848401111561310857613107613020565b5b6131138482856130cc565b509392505050565b5f82601f83011261312f5761312e612ef8565b5b813561313f8482602086016130da565b91505092915050565b5f805f80608085870312156131605761315f612b7d565b5b5f61316d87828801612dae565b945050602061317e87828801612dae565b935050604061318f87828801612c57565b925050606085013567ffffffffffffffff8111156131b0576131af612b81565b5b6131bc8782880161311b565b91505092959194509250565b5f80604083850312156131de576131dd612b7d565b5b5f6131eb85828601612dae565b92505060206131fc85828601612dae565b9150509250929050565b5f8083601f84011261321b5761321a612ef8565b5b8235905067ffffffffffffffff81111561323857613237612efc565b5b60208301915083602082028301111561325457613253612f00565b5b9250929050565b5f806020838503121561327157613270612b7d565b5b5f83013567ffffffffffffffff81111561328e5761328d612b81565b5b61329a85828601613206565b92509250509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806132ea57607f821691505b6020821081036132fd576132fc6132a6565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61336782612c38565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361339957613398613330565b5b600182019050919050565b7f43616c6c6572206973206e6f7420616e206f776e6572000000000000000000005f82015250565b5f6133d8601683612cf8565b91506133e3826133a4565b602082019050919050565b5f6020820190508181035f830152613405816133cc565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61344382612c38565b915061344e83612c38565b92508261345e5761345d61340c565b5b828204905092915050565b5f81905092915050565b50565b5f6134815f83613469565b915061348c82613473565b5f82019050919050565b5f6134a082613476565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f6134de601083612cf8565b91506134e9826134aa565b602082019050919050565b5f6020820190508181035f83015261350b816134d2565b9050919050565b5f61351c82612c38565b915061352783612c38565b925082820190508082111561353f5761353e613330565b5b92915050565b5f61354f82612c38565b915061355a83612c38565b925082820261356881612c38565b9150828204841483151761357f5761357e613330565b5b5092915050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026135ec7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135b1565b6135f686836135b1565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61363161362c61362784612c38565b61360e565b612c38565b9050919050565b5f819050919050565b61364a83613617565b61365e61365682613638565b8484546135bd565b825550505050565b5f90565b613672613666565b61367d818484613641565b505050565b5b818110156136a0576136955f8261366a565b600181019050613683565b5050565b601f8211156136e5576136b681613590565b6136bf846135a2565b810160208510156136ce578190505b6136e26136da856135a2565b830182613682565b50505b505050565b5f82821c905092915050565b5f6137055f19846008026136ea565b1980831691505092915050565b5f61371d83836136f6565b9150826002028217905092915050565b6137378383613586565b67ffffffffffffffff8111156137505761374f613024565b5b61375a82546132d3565b6137658282856136a4565b5f601f831160018114613792575f8415613780578287013590505b61378a8582613712565b8655506137f1565b601f1984166137a086613590565b5f5b828110156137c7578489013582556001820191506020850194506020810190506137a2565b868310156137e457848901356137e0601f8916826136f6565b8355505b6001600288020188555050505b50505050505050565b7f4d6178537570706c7952656163686564000000000000000000000000000000005f82015250565b5f61382e601083612cf8565b9150613839826137fa565b602082019050919050565b5f6020820190508181035f83015261385b81613822565b9050919050565b7f4d6178467265654d696e747352656163686564000000000000000000000000005f82015250565b5f613896601383612cf8565b91506138a182613862565b602082019050919050565b5f6020820190508181035f8301526138c38161388a565b9050919050565b7f53616c654e6f74416374697665000000000000000000000000000000000000005f82015250565b5f6138fe600d83612cf8565b9150613909826138ca565b602082019050919050565b5f6020820190508181035f83015261392b816138f2565b9050919050565b7f436f6c6c656374696f6e2068617320616c7265616479206265656e20726576655f8201527f616c656400000000000000000000000000000000000000000000000000000000602082015250565b5f61398c602483612cf8565b915061399782613932565b604082019050919050565b5f6020820190508181035f8301526139b981613980565b9050919050565b7f546f6b656e20646f6573206e6f742065786973740000000000000000000000005f82015250565b5f6139f4601483612cf8565b91506139ff826139c0565b602082019050919050565b5f6020820190508181035f830152613a21816139e8565b9050919050565b5f81905092915050565b5f613a3c82612cee565b613a468185613a28565b9350613a56818560208601612d08565b80840191505092915050565b5f613a6d8285613a32565b9150613a798284613a32565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f613aa982613a85565b613ab38185613a8f565b9350613ac3818560208601612d08565b613acc81612d30565b840191505092915050565b5f608082019050613aea5f830187612cc6565b613af76020830186612cc6565b613b046040830185612e00565b8181036060830152613b168184613a9f565b905095945050505050565b5f81519050613b2f81612bb0565b92915050565b5f60208284031215613b4a57613b49612b7d565b5b5f613b5784828501613b21565b9150509291505056fea264697066735822122050a50053397076988349d523fbdfcb71b5badb09b179f81ab19f45b80c115ad564736f6c63430008150033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000008d9729c008e301d7475175ac81a308f243d4f2c9000000000000000000000000000000000000000000000000000000000000000d526574726f526163636f6f6e730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055252383073000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): RetroRaccoons
Arg [1] : _symbol (string): RR80s
Arg [2] : initialOwner (address): 0x8d9729c008e301D7475175Ac81a308f243d4F2c9

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000008d9729c008e301d7475175ac81a308f243d4f2c9
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 526574726f526163636f6f6e7300000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 5252383073000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

56951:4209:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22494:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57658:23;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23396:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29887:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29320:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57127:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19147:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33526:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57169:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57806:235;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57088:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58492:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60827:330;;;;;;;;;;;;;:::i;:::-;;36447:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58399:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60139:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57220:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58722:381;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57261:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57292:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59642:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24789:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57329:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57605:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20331:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3254:103;;;;;;;;;;;;;:::i;:::-;;60471:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59111:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2579:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59945:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23572:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30445:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60243:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60663:156;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37238:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57048:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23782:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57357:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58601:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60340:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30836:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3512:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57001:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58049:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22494:639;22579:4;22918:10;22903:25;;:11;:25;;;;:102;;;;22995:10;22980:25;;:11;:25;;;;22903:102;:179;;;;23072:10;23057:25;;:11;:25;;;;22903:179;22883:199;;22494:639;;;:::o;57658:23::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23396:100::-;23450:13;23483:5;23476:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23396:100;:::o;29887:218::-;29963:7;29988:16;29996:7;29988;:16::i;:::-;29983:64;;30013:34;;;;;;;;;;;;;;29983:64;30067:15;:24;30083:7;30067:24;;;;;;;;;;;:30;;;;;;;;;;;;30060:37;;29887:218;;;:::o;29320:408::-;29409:13;29425:16;29433:7;29425;:16::i;:::-;29409:32;;29481:5;29458:28;;:19;:17;:19::i;:::-;:28;;;29454:175;;29506:44;29523:5;29530:19;:17;:19::i;:::-;29506:16;:44::i;:::-;29501:128;;29578:35;;;;;;;;;;;;;;29501:128;29454:175;29674:2;29641:15;:24;29657:7;29641:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29712:7;29708:2;29692:28;;29701:5;29692:28;;;;;;;;;;;;29398:330;29320:408;;:::o;57127:35::-;;;;:::o;19147:323::-;19208:7;19436:15;:13;:15::i;:::-;19421:12;;19405:13;;:28;:46;19398:53;;19147:323;:::o;33526:2825::-;33668:27;33698;33717:7;33698:18;:27::i;:::-;33668:57;;33783:4;33742:45;;33758:19;33742:45;;;33738:86;;33796:28;;;;;;;;;;;;;;33738:86;33838:27;33867:23;33894:35;33921:7;33894:26;:35::i;:::-;33837:92;;;;34029:68;34054:15;34071:4;34077:19;:17;:19::i;:::-;34029:24;:68::i;:::-;34024:180;;34117:43;34134:4;34140:19;:17;:19::i;:::-;34117:16;:43::i;:::-;34112:92;;34169:35;;;;;;;;;;;;;;34112:92;34024:180;34235:1;34221:16;;:2;:16;;;34217:52;;34246:23;;;;;;;;;;;;;;34217:52;34282:43;34304:4;34310:2;34314:7;34323:1;34282:21;:43::i;:::-;34418:15;34415:160;;;34558:1;34537:19;34530:30;34415:160;34955:18;:24;34974:4;34955:24;;;;;;;;;;;;;;;;34953:26;;;;;;;;;;;;35024:18;:22;35043:2;35024:22;;;;;;;;;;;;;;;;35022:24;;;;;;;;;;;35346:146;35383:2;35432:45;35447:4;35453:2;35457:19;35432:14;:45::i;:::-;15546:8;35404:73;35346:18;:146::i;:::-;35317:17;:26;35335:7;35317:26;;;;;;;;;;;:175;;;;35663:1;15546:8;35612:19;:47;:52;35608:627;;35685:19;35717:1;35707:7;:11;35685:33;;35874:1;35840:17;:30;35858:11;35840:30;;;;;;;;;;;;:35;35836:384;;35978:13;;35963:11;:28;35959:242;;36158:19;36125:17;:30;36143:11;36125:30;;;;;;;;;;;:52;;;;35959:242;35836:384;35666:569;35608:627;36282:7;36278:2;36263:27;;36272:4;36263:27;;;;;;;;;;;;36301:42;36322:4;36328:2;36332:7;36341:1;36301:20;:42::i;:::-;33657:2694;;;33526:2825;;;:::o;57169:44::-;;;;:::o;57806:235::-;57858:4;57880:6;57889:1;57880:10;;57875:136;57896:6;:13;;;;57892:1;:17;57875:136;;;57948:4;57935:17;;:6;57942:1;57935:9;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:17;;;57931:69;;57980:4;57973:11;;;;;57931:69;57911:3;;;;;:::i;:::-;;;;57875:136;;;;58028:5;58021:12;;57806:235;;;;:::o;57088:32::-;;;;:::o;58492:101::-;57732:19;57740:10;57732:7;:19::i;:::-;57724:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;58575:10:::1;58562;:23;;;;58492:101:::0;:::o;60827:330::-;57732:19;57740:10;57732:7;:19::i;:::-;57724:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;60878:15:::1;60896:21;60878:39;;60928:13;60954:6;:13;;;;60944:7;:23;;;;:::i;:::-;60928:39;;60985:6;60980:170;61001:6;:13;;;;60997:1;:17;60980:170;;;61037:12;61055:6;61062:1;61055:9;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:14;;61077:5;61055:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61036:51;;;61110:7;61102:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;61021:129;61016:3;;;;;:::i;:::-;;;;60980:170;;;;60867:290;;60827:330::o:0;36447:193::-;36593:39;36610:4;36616:2;36620:7;36593:39;;;;;;;;;;;;:16;:39::i;:::-;36447:193;;;:::o;58399:83::-;57732:19;57740:10;57732:7;:19::i;:::-;57724:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;58469:5:::1;58462:4;:12;;;;58399:83:::0;:::o;60139:96::-;57732:19;57740:10;57732:7;:19::i;:::-;57724:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;60220:7:::1;60207:10;;:20;;;;;;;;;;;;;;;;;;60139:96:::0;:::o;57220:33::-;;;;:::o;58722:381::-;58788:4;;;;;;;;;;;58783:33;;58801:15;;;;;;;;;;;;;;58783:33;58858:10;;58848:7;58831:14;:12;:14::i;:::-;:24;;;;:::i;:::-;:37;58827:68;;;58877:18;;;;;;;;;;;;;;58827:68;58948:14;;58938:7;58910:25;58924:10;58910:13;:25::i;:::-;:35;;;;:::i;:::-;:52;58906:86;;;58971:21;;;;;;;;;;;;;;58906:86;59026:7;59019:4;;:14;;;;:::i;:::-;59007:9;:26;59003:53;;;59042:14;;;;;;;;;;;;;;59003:53;59069:26;59075:10;59087:7;59069:5;:26::i;:::-;58722:381;:::o;57261:24::-;;;;;;;;;;;;;:::o;57292:30::-;;;;;;;;;;;;;:::o;59642:101::-;57732:19;57740:10;57732:7;:19::i;:::-;57724:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;59728:7:::1;;59718;:17;;;;;;;:::i;:::-;;59642:101:::0;;:::o;24789:152::-;24861:7;24904:27;24923:7;24904:18;:27::i;:::-;24881:52;;24789:152;;;:::o;57329:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57605:44::-;;;;;;;;;;;;;;;;;:::o;20331:233::-;20403:7;20444:1;20427:19;;:5;:19;;;20423:60;;20455:28;;;;;;;;;;;;;;20423:60;14490:13;20501:18;:25;20520:5;20501:25;;;;;;;;;;;;;;;;:55;20494:62;;20331:233;;;:::o;3254:103::-;2465:13;:11;:13::i;:::-;3319:30:::1;3346:1;3319:18;:30::i;:::-;3254:103::o:0;60471:184::-;57732:19;57740:10;57732:7;:19::i;:::-;57724:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;60580:10:::1;;60570:7;60553:14;:12;:14::i;:::-;:24;;;;:::i;:::-;:37;60549:68;;;60599:18;;;;;;;;;;;;;;60549:68;60628:19;60634:3;60639:7;60628:5;:19::i;:::-;60471:184:::0;;:::o;59111:422::-;59204:10;;59193:7;59176:14;:12;:14::i;:::-;:24;;;;:::i;:::-;:38;;59168:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;59289:25;;59278:7;59254:9;:21;59264:10;59254:21;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:60;;59246:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;59357:4;;;;;;;;;;;59349:30;;;;;;;;;;;;:::i;:::-;;;;;;;;;59407:10;59394:23;;:9;:23;;;59390:52;;59426:16;;;;;;;;;;;;;;59390:52;59481:7;59456:9;:21;59466:10;59456:21;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;59499:26;59505:10;59517:7;59499:5;:26::i;:::-;59111:422;:::o;2579:87::-;2625:7;2652:6;;;;;;;;;;;2645:13;;2579:87;:::o;59945:186::-;57732:19;57740:10;57732:7;:19::i;:::-;57724:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;60037:10:::1;;;;;;;;;;;60036:11;60028:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;60112:11;;60099:10;:24;;;;;;;:::i;:::-;;59945:186:::0;;:::o;23572:104::-;23628:13;23661:7;23654:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23572:104;:::o;30445:234::-;30592:8;30540:18;:39;30559:19;:17;:19::i;:::-;30540:39;;;;;;;;;;;;;;;:49;30580:8;30540:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30652:8;30616:55;;30631:19;:17;:19::i;:::-;30616:55;;;30662:8;30616:55;;;;;;:::i;:::-;;;;;;;;30445:234;;:::o;60243:87::-;57732:19;57740:10;57732:7;:19::i;:::-;57724:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;60315:7:::1;60308:4;;:14;;;;;;;;;;;;;;;;;;60243:87:::0;:::o;60663:156::-;57732:19;57740:10;57732:7;:19::i;:::-;57724:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;60743:17:::1;60751:8;60743:7;:17::i;:::-;60735:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;60796:15;60802:8;60796:5;:15::i;:::-;60663:156:::0;:::o;37238:407::-;37413:31;37426:4;37432:2;37436:7;37413:12;:31::i;:::-;37477:1;37459:2;:14;;;:19;37455:183;;37498:56;37529:4;37535:2;37539:7;37548:5;37498:30;:56::i;:::-;37493:145;;37582:40;;;;;;;;;;;;;;37493:145;37455:183;37238:407;;;;:::o;57048:33::-;;;;:::o;23782:318::-;23855:13;23886:16;23894:7;23886;:16::i;:::-;23881:59;;23911:29;;;;;;;;;;;;;;23881:59;23953:21;23977:10;:8;:10::i;:::-;23953:34;;24030:1;24011:7;24005:21;:26;:87;;;;;;;;;;;;;;;;;24058:7;24067:18;24077:7;24067:9;:18::i;:::-;24041:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24005:87;23998:94;;;23782:318;;;:::o;57357:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58601:113::-;58659:7;58686:20;58700:5;58686:13;:20::i;:::-;58679:27;;58601:113;;;:::o;60340:123::-;57732:19;57740:10;57732:7;:19::i;:::-;57724:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;60439:16:::1;60422:14;:33;;;;60340:123:::0;:::o;30836:164::-;30933:4;30957:18;:25;30976:5;30957:25;;;;;;;;;;;;;;;:35;30983:8;30957:35;;;;;;;;;;;;;;;;;;;;;;;;;30950:42;;30836:164;;;;:::o;3512:220::-;2465:13;:11;:13::i;:::-;3617:1:::1;3597:22;;:8;:22;;::::0;3593:93:::1;;3671:1;3643:31;;;;;;;;;;;:::i;:::-;;;;;;;;3593:93;3696:28;3715:8;3696:18;:28::i;:::-;3512:220:::0;:::o;57001:39::-;;;;;;;;;;;;;;;;;;;:::o;58049:102::-;57732:19;57740:10;57732:7;:19::i;:::-;57724:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;58136:7:::1;;58127:6;:16;;;;;;;:::i;:::-;;58049:102:::0;;:::o;31258:282::-;31323:4;31379:7;31360:15;:13;:15::i;:::-;:26;;:66;;;;;31413:13;;31403:7;:23;31360:66;:153;;;;;31512:1;15266:8;31464:17;:26;31482:7;31464:26;;;;;;;;;;;;:44;:49;31360:153;31340:173;;31258:282;;;:::o;53566:105::-;53626:7;53653:10;53646:17;;53566:105;:::o;59541:93::-;59598:7;59625:1;59618:8;;59541:93;:::o;25944:1275::-;26011:7;26031:12;26046:7;26031:22;;26114:4;26095:15;:13;:15::i;:::-;:23;26091:1061;;26148:13;;26141:4;:20;26137:1015;;;26186:14;26203:17;:23;26221:4;26203:23;;;;;;;;;;;;26186:40;;26320:1;15266:8;26292:6;:24;:29;26288:845;;26957:113;26974:1;26964:6;:11;26957:113;;27017:17;:25;27035:6;;;;;;;27017:25;;;;;;;;;;;;27008:34;;26957:113;;;27103:6;27096:13;;;;;;26288:845;26163:989;26137:1015;26091:1061;27180:31;;;;;;;;;;;;;;25944:1275;;;;:::o;32421:485::-;32523:27;32552:23;32593:38;32634:15;:24;32650:7;32634:24;;;;;;;;;;;32593:65;;32811:18;32788:41;;32868:19;32862:26;32843:45;;32773:126;32421:485;;;:::o;31649:659::-;31798:11;31963:16;31956:5;31952:28;31943:37;;32123:16;32112:9;32108:32;32095:45;;32273:15;32262:9;32259:30;32251:5;32240:9;32237:20;32234:56;32224:66;;31649:659;;;;;:::o;38307:159::-;;;;;:::o;52875:311::-;53010:7;53030:16;15670:3;53056:19;:41;;53030:68;;15670:3;53124:31;53135:4;53141:2;53145:9;53124:10;:31::i;:::-;53116:40;;:62;;53109:69;;;52875:311;;;;;:::o;27767:450::-;27847:14;28015:16;28008:5;28004:28;27995:37;;28192:5;28178:11;28153:23;28149:41;28146:52;28139:5;28136:63;28126:73;;27767:450;;;;:::o;39131:158::-;;;;;:::o;19568:296::-;19623:7;19830:15;:13;:15::i;:::-;19814:13;;:31;19807:38;;19568:296;:::o;20646:178::-;20707:7;14490:13;14628:2;20735:18;:25;20754:5;20735:25;;;;;;;;;;;;;;;;:50;;20734:82;20727:89;;20646:178;;;:::o;40907:2966::-;40980:20;41003:13;;40980:36;;41043:1;41031:8;:13;41027:44;;41053:18;;;;;;;;;;;;;;41027:44;41084:61;41114:1;41118:2;41122:12;41136:8;41084:21;:61::i;:::-;41628:1;14628:2;41598:1;:26;;41597:32;41585:8;:45;41559:18;:22;41578:2;41559:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41907:139;41944:2;41998:33;42021:1;42025:2;42029:1;41998:14;:33::i;:::-;41965:30;41986:8;41965:20;:30::i;:::-;:66;41907:18;:139::i;:::-;41873:17;:31;41891:12;41873:31;;;;;;;;;;;:173;;;;42063:16;42094:11;42123:8;42108:12;:23;42094:37;;42644:16;42640:2;42636:25;42624:37;;43016:12;42976:8;42935:1;42873:25;42814:1;42753;42726:335;43387:1;43373:12;43369:20;43327:346;43428:3;43419:7;43416:16;43327:346;;43646:7;43636:8;43633:1;43606:25;43603:1;43600;43595:59;43481:1;43472:7;43468:15;43457:26;;43327:346;;;43331:77;43718:1;43706:8;:13;43702:45;;43728:19;;;;;;;;;;;;;;43702:45;43780:3;43764:13;:19;;;;41333:2462;;43805:60;43834:1;43838:2;43842:12;43856:8;43805:20;:60::i;:::-;40969:2904;40907:2966;;:::o;2744:166::-;2815:12;:10;:12::i;:::-;2804:23;;:7;:5;:7::i;:::-;:23;;;2800:103;;2878:12;:10;:12::i;:::-;2851:40;;;;;;;;;;;:::i;:::-;;;;;;;;2800:103;2744:166::o;3892:191::-;3966:16;3985:6;;;;;;;;;;;3966:25;;4011:8;4002:6;;:17;;;;;;;;;;;;;;;;;;4066:8;4035:40;;4056:8;4035:40;;;;;;;;;;;;3955:128;3892:191;:::o;47777:89::-;47837:21;47843:7;47852:5;47837;:21::i;:::-;47777:89;:::o;39729:716::-;39892:4;39938:2;39913:45;;;39959:19;:17;:19::i;:::-;39980:4;39986:7;39995:5;39913:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39909:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40213:1;40196:6;:13;:18;40192:235;;40242:40;;;;;;;;;;;;;;40192:235;40385:6;40379:13;40370:6;40366:2;40362:15;40355:38;39909:529;40082:54;;;40072:64;;;:6;:64;;;;40065:71;;;39729:716;;;;;;:::o;59751:184::-;59811:13;59837:10;;;;;;;;;;;59833:93;;;59867:7;59860:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59833:93;59906:10;59899:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59751:184;;:::o;53773:1745::-;53838:17;54272:4;54265;54259:11;54255:22;54364:1;54358:4;54351:15;54439:4;54436:1;54432:12;54425:19;;54521:1;54516:3;54509:14;54625:3;54864:5;54846:428;54872:1;54846:428;;;54912:1;54907:3;54903:11;54896:18;;55083:2;55077:4;55073:13;55069:2;55065:22;55060:3;55052:36;55177:2;55171:4;55167:13;55159:21;;55244:4;54846:428;55234:25;54846:428;54850:21;55313:3;55308;55304:13;55428:4;55423:3;55419:14;55412:21;;55493:6;55488:3;55481:19;53877:1634;;;53773:1745;;;:::o;52576:147::-;52713:6;52576:147;;;;;:::o;28319:324::-;28389:14;28622:1;28612:8;28609:15;28583:24;28579:46;28569:56;;28319:324;;;:::o;695:98::-;748:7;775:10;768:17;;695:98;:::o;48095:3081::-;48175:27;48205;48224:7;48205:18;:27::i;:::-;48175:57;;48245:12;48276:19;48245:52;;48311:27;48340:23;48367:35;48394:7;48367:26;:35::i;:::-;48310:92;;;;48419:13;48415:316;;;48540:68;48565:15;48582:4;48588:19;:17;:19::i;:::-;48540:24;:68::i;:::-;48535:184;;48632:43;48649:4;48655:19;:17;:19::i;:::-;48632:16;:43::i;:::-;48627:92;;48684:35;;;;;;;;;;;;;;48627:92;48535:184;48415:316;48743:51;48765:4;48779:1;48783:7;48792:1;48743:21;:51::i;:::-;48887:15;48884:160;;;49027:1;49006:19;48999:30;48884:160;49705:1;14755:3;49675:1;:26;;49674:32;49646:18;:24;49665:4;49646:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;49973:176;50010:4;50081:53;50096:4;50110:1;50114:19;50081:14;:53::i;:::-;15546:8;15266;50034:43;50033:101;49973:18;:176::i;:::-;49944:17;:26;49962:7;49944:26;;;;;;;;;;;:205;;;;50320:1;15546:8;50269:19;:47;:52;50265:627;;50342:19;50374:1;50364:7;:11;50342:33;;50531:1;50497:17;:30;50515:11;50497:30;;;;;;;;;;;;:35;50493:384;;50635:13;;50620:11;:28;50616:242;;50815:19;50782:17;:30;50800:11;50782:30;;;;;;;;;;;:52;;;;50616:242;50493:384;50323:569;50265:627;50947:7;50943:1;50920:35;;50929:4;50920:35;;;;;;;;;;;;50966:50;50987:4;51001:1;51005:7;51014:1;50966:20;:50::i;:::-;51143:12;;:14;;;;;;;;;;;;;48164:3012;;;;48095:3081;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:122::-;1674:24;1692:5;1674:24;:::i;:::-;1667:5;1664:35;1654:63;;1713:1;1710;1703:12;1654:63;1601:122;:::o;1729:139::-;1775:5;1813:6;1800:20;1791:29;;1829:33;1856:5;1829:33;:::i;:::-;1729:139;;;;:::o;1874:329::-;1933:6;1982:2;1970:9;1961:7;1957:23;1953:32;1950:119;;;1988:79;;:::i;:::-;1950:119;2108:1;2133:53;2178:7;2169:6;2158:9;2154:22;2133:53;:::i;:::-;2123:63;;2079:117;1874:329;;;;:::o;2209:126::-;2246:7;2286:42;2279:5;2275:54;2264:65;;2209:126;;;:::o;2341:96::-;2378:7;2407:24;2425:5;2407:24;:::i;:::-;2396:35;;2341:96;;;:::o;2443:118::-;2530:24;2548:5;2530:24;:::i;:::-;2525:3;2518:37;2443:118;;:::o;2567:222::-;2660:4;2698:2;2687:9;2683:18;2675:26;;2711:71;2779:1;2768:9;2764:17;2755:6;2711:71;:::i;:::-;2567:222;;;;:::o;2795:99::-;2847:6;2881:5;2875:12;2865:22;;2795:99;;;:::o;2900:169::-;2984:11;3018:6;3013:3;3006:19;3058:4;3053:3;3049:14;3034:29;;2900:169;;;;:::o;3075:246::-;3156:1;3166:113;3180:6;3177:1;3174:13;3166:113;;;3265:1;3260:3;3256:11;3250:18;3246:1;3241:3;3237:11;3230:39;3202:2;3199:1;3195:10;3190:15;;3166:113;;;3313:1;3304:6;3299:3;3295:16;3288:27;3137:184;3075:246;;;:::o;3327:102::-;3368:6;3419:2;3415:7;3410:2;3403:5;3399:14;3395:28;3385:38;;3327:102;;;:::o;3435:377::-;3523:3;3551:39;3584:5;3551:39;:::i;:::-;3606:71;3670:6;3665:3;3606:71;:::i;:::-;3599:78;;3686:65;3744:6;3739:3;3732:4;3725:5;3721:16;3686:65;:::i;:::-;3776:29;3798:6;3776:29;:::i;:::-;3771:3;3767:39;3760:46;;3527:285;3435:377;;;;:::o;3818:313::-;3931:4;3969:2;3958:9;3954:18;3946:26;;4018:9;4012:4;4008:20;4004:1;3993:9;3989:17;3982:47;4046:78;4119:4;4110:6;4046:78;:::i;:::-;4038:86;;3818:313;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:116::-;6272:21;6287:5;6272:21;:::i;:::-;6265:5;6262:32;6252:60;;6308:1;6305;6298:12;6252:60;6202:116;:::o;6324:133::-;6367:5;6405:6;6392:20;6383:29;;6421:30;6445:5;6421:30;:::i;:::-;6324:133;;;;:::o;6463:323::-;6519:6;6568:2;6556:9;6547:7;6543:23;6539:32;6536:119;;;6574:79;;:::i;:::-;6536:119;6694:1;6719:50;6761:7;6752:6;6741:9;6737:22;6719:50;:::i;:::-;6709:60;;6665:114;6463:323;;;;:::o;6792:117::-;6901:1;6898;6891:12;6915:117;7024:1;7021;7014:12;7038:117;7147:1;7144;7137:12;7175:553;7233:8;7243:6;7293:3;7286:4;7278:6;7274:17;7270:27;7260:122;;7301:79;;:::i;:::-;7260:122;7414:6;7401:20;7391:30;;7444:18;7436:6;7433:30;7430:117;;;7466:79;;:::i;:::-;7430:117;7580:4;7572:6;7568:17;7556:29;;7634:3;7626:4;7618:6;7614:17;7604:8;7600:32;7597:41;7594:128;;;7641:79;;:::i;:::-;7594:128;7175:553;;;;;:::o;7734:529::-;7805:6;7813;7862:2;7850:9;7841:7;7837:23;7833:32;7830:119;;;7868:79;;:::i;:::-;7830:119;8016:1;8005:9;8001:17;7988:31;8046:18;8038:6;8035:30;8032:117;;;8068:79;;:::i;:::-;8032:117;8181:65;8238:7;8229:6;8218:9;8214:22;8181:65;:::i;:::-;8163:83;;;;7959:297;7734:529;;;;;:::o;8269:474::-;8337:6;8345;8394:2;8382:9;8373:7;8369:23;8365:32;8362:119;;;8400:79;;:::i;:::-;8362:119;8520:1;8545:53;8590:7;8581:6;8570:9;8566:22;8545:53;:::i;:::-;8535:63;;8491:117;8647:2;8673:53;8718:7;8709:6;8698:9;8694:22;8673:53;:::i;:::-;8663:63;;8618:118;8269:474;;;;;:::o;8749:468::-;8814:6;8822;8871:2;8859:9;8850:7;8846:23;8842:32;8839:119;;;8877:79;;:::i;:::-;8839:119;8997:1;9022:53;9067:7;9058:6;9047:9;9043:22;9022:53;:::i;:::-;9012:63;;8968:117;9124:2;9150:50;9192:7;9183:6;9172:9;9168:22;9150:50;:::i;:::-;9140:60;;9095:115;8749:468;;;;;:::o;9223:117::-;9332:1;9329;9322:12;9346:180;9394:77;9391:1;9384:88;9491:4;9488:1;9481:15;9515:4;9512:1;9505:15;9532:281;9615:27;9637:4;9615:27;:::i;:::-;9607:6;9603:40;9745:6;9733:10;9730:22;9709:18;9697:10;9694:34;9691:62;9688:88;;;9756:18;;:::i;:::-;9688:88;9796:10;9792:2;9785:22;9575:238;9532:281;;:::o;9819:129::-;9853:6;9880:20;;:::i;:::-;9870:30;;9909:33;9937:4;9929:6;9909:33;:::i;:::-;9819:129;;;:::o;9954:307::-;10015:4;10105:18;10097:6;10094:30;10091:56;;;10127:18;;:::i;:::-;10091:56;10165:29;10187:6;10165:29;:::i;:::-;10157:37;;10249:4;10243;10239:15;10231:23;;9954:307;;;:::o;10267:146::-;10364:6;10359:3;10354;10341:30;10405:1;10396:6;10391:3;10387:16;10380:27;10267:146;;;:::o;10419:423::-;10496:5;10521:65;10537:48;10578:6;10537:48;:::i;:::-;10521:65;:::i;:::-;10512:74;;10609:6;10602:5;10595:21;10647:4;10640:5;10636:16;10685:3;10676:6;10671:3;10667:16;10664:25;10661:112;;;10692:79;;:::i;:::-;10661:112;10782:54;10829:6;10824:3;10819;10782:54;:::i;:::-;10502:340;10419:423;;;;;:::o;10861:338::-;10916:5;10965:3;10958:4;10950:6;10946:17;10942:27;10932:122;;10973:79;;:::i;:::-;10932:122;11090:6;11077:20;11115:78;11189:3;11181:6;11174:4;11166:6;11162:17;11115:78;:::i;:::-;11106:87;;10922:277;10861:338;;;;:::o;11205:943::-;11300:6;11308;11316;11324;11373:3;11361:9;11352:7;11348:23;11344:33;11341:120;;;11380:79;;:::i;:::-;11341:120;11500:1;11525:53;11570:7;11561:6;11550:9;11546:22;11525:53;:::i;:::-;11515:63;;11471:117;11627:2;11653:53;11698:7;11689:6;11678:9;11674:22;11653:53;:::i;:::-;11643:63;;11598:118;11755:2;11781:53;11826:7;11817:6;11806:9;11802:22;11781:53;:::i;:::-;11771:63;;11726:118;11911:2;11900:9;11896:18;11883:32;11942:18;11934:6;11931:30;11928:117;;;11964:79;;:::i;:::-;11928:117;12069:62;12123:7;12114:6;12103:9;12099:22;12069:62;:::i;:::-;12059:72;;11854:287;11205:943;;;;;;;:::o;12154:474::-;12222:6;12230;12279:2;12267:9;12258:7;12254:23;12250:32;12247:119;;;12285:79;;:::i;:::-;12247:119;12405:1;12430:53;12475:7;12466:6;12455:9;12451:22;12430:53;:::i;:::-;12420:63;;12376:117;12532:2;12558:53;12603:7;12594:6;12583:9;12579:22;12558:53;:::i;:::-;12548:63;;12503:118;12154:474;;;;;:::o;12651:568::-;12724:8;12734:6;12784:3;12777:4;12769:6;12765:17;12761:27;12751:122;;12792:79;;:::i;:::-;12751:122;12905:6;12892:20;12882:30;;12935:18;12927:6;12924:30;12921:117;;;12957:79;;:::i;:::-;12921:117;13071:4;13063:6;13059:17;13047:29;;13125:3;13117:4;13109:6;13105:17;13095:8;13091:32;13088:41;13085:128;;;13132:79;;:::i;:::-;13085:128;12651:568;;;;;:::o;13225:559::-;13311:6;13319;13368:2;13356:9;13347:7;13343:23;13339:32;13336:119;;;13374:79;;:::i;:::-;13336:119;13522:1;13511:9;13507:17;13494:31;13552:18;13544:6;13541:30;13538:117;;;13574:79;;:::i;:::-;13538:117;13687:80;13759:7;13750:6;13739:9;13735:22;13687:80;:::i;:::-;13669:98;;;;13465:312;13225:559;;;;;:::o;13790:180::-;13838:77;13835:1;13828:88;13935:4;13932:1;13925:15;13959:4;13956:1;13949:15;13976:320;14020:6;14057:1;14051:4;14047:12;14037:22;;14104:1;14098:4;14094:12;14125:18;14115:81;;14181:4;14173:6;14169:17;14159:27;;14115:81;14243:2;14235:6;14232:14;14212:18;14209:38;14206:84;;14262:18;;:::i;:::-;14206:84;14027:269;13976:320;;;:::o;14302:180::-;14350:77;14347:1;14340:88;14447:4;14444:1;14437:15;14471:4;14468:1;14461:15;14488:180;14536:77;14533:1;14526:88;14633:4;14630:1;14623:15;14657:4;14654:1;14647:15;14674:233;14713:3;14736:24;14754:5;14736:24;:::i;:::-;14727:33;;14782:66;14775:5;14772:77;14769:103;;14852:18;;:::i;:::-;14769:103;14899:1;14892:5;14888:13;14881:20;;14674:233;;;:::o;14913:172::-;15053:24;15049:1;15041:6;15037:14;15030:48;14913:172;:::o;15091:366::-;15233:3;15254:67;15318:2;15313:3;15254:67;:::i;:::-;15247:74;;15330:93;15419:3;15330:93;:::i;:::-;15448:2;15443:3;15439:12;15432:19;;15091:366;;;:::o;15463:419::-;15629:4;15667:2;15656:9;15652:18;15644:26;;15716:9;15710:4;15706:20;15702:1;15691:9;15687:17;15680:47;15744:131;15870:4;15744:131;:::i;:::-;15736:139;;15463:419;;;:::o;15888:180::-;15936:77;15933:1;15926:88;16033:4;16030:1;16023:15;16057:4;16054:1;16047:15;16074:185;16114:1;16131:20;16149:1;16131:20;:::i;:::-;16126:25;;16165:20;16183:1;16165:20;:::i;:::-;16160:25;;16204:1;16194:35;;16209:18;;:::i;:::-;16194:35;16251:1;16248;16244:9;16239:14;;16074:185;;;;:::o;16265:147::-;16366:11;16403:3;16388:18;;16265:147;;;;:::o;16418:114::-;;:::o;16538:398::-;16697:3;16718:83;16799:1;16794:3;16718:83;:::i;:::-;16711:90;;16810:93;16899:3;16810:93;:::i;:::-;16928:1;16923:3;16919:11;16912:18;;16538:398;;;:::o;16942:379::-;17126:3;17148:147;17291:3;17148:147;:::i;:::-;17141:154;;17312:3;17305:10;;16942:379;;;:::o;17327:166::-;17467:18;17463:1;17455:6;17451:14;17444:42;17327:166;:::o;17499:366::-;17641:3;17662:67;17726:2;17721:3;17662:67;:::i;:::-;17655:74;;17738:93;17827:3;17738:93;:::i;:::-;17856:2;17851:3;17847:12;17840:19;;17499:366;;;:::o;17871:419::-;18037:4;18075:2;18064:9;18060:18;18052:26;;18124:9;18118:4;18114:20;18110:1;18099:9;18095:17;18088:47;18152:131;18278:4;18152:131;:::i;:::-;18144:139;;17871:419;;;:::o;18296:191::-;18336:3;18355:20;18373:1;18355:20;:::i;:::-;18350:25;;18389:20;18407:1;18389:20;:::i;:::-;18384:25;;18432:1;18429;18425:9;18418:16;;18453:3;18450:1;18447:10;18444:36;;;18460:18;;:::i;:::-;18444:36;18296:191;;;;:::o;18493:410::-;18533:7;18556:20;18574:1;18556:20;:::i;:::-;18551:25;;18590:20;18608:1;18590:20;:::i;:::-;18585:25;;18645:1;18642;18638:9;18667:30;18685:11;18667:30;:::i;:::-;18656:41;;18846:1;18837:7;18833:15;18830:1;18827:22;18807:1;18800:9;18780:83;18757:139;;18876:18;;:::i;:::-;18757:139;18541:362;18493:410;;;;:::o;18909:97::-;18968:6;18996:3;18986:13;;18909:97;;;;:::o;19012:141::-;19061:4;19084:3;19076:11;;19107:3;19104:1;19097:14;19141:4;19138:1;19128:18;19120:26;;19012:141;;;:::o;19159:93::-;19196:6;19243:2;19238;19231:5;19227:14;19223:23;19213:33;;19159:93;;;:::o;19258:107::-;19302:8;19352:5;19346:4;19342:16;19321:37;;19258:107;;;;:::o;19371:393::-;19440:6;19490:1;19478:10;19474:18;19513:97;19543:66;19532:9;19513:97;:::i;:::-;19631:39;19661:8;19650:9;19631:39;:::i;:::-;19619:51;;19703:4;19699:9;19692:5;19688:21;19679:30;;19752:4;19742:8;19738:19;19731:5;19728:30;19718:40;;19447:317;;19371:393;;;;;:::o;19770:60::-;19798:3;19819:5;19812:12;;19770:60;;;:::o;19836:142::-;19886:9;19919:53;19937:34;19946:24;19964:5;19946:24;:::i;:::-;19937:34;:::i;:::-;19919:53;:::i;:::-;19906:66;;19836:142;;;:::o;19984:75::-;20027:3;20048:5;20041:12;;19984:75;;;:::o;20065:269::-;20175:39;20206:7;20175:39;:::i;:::-;20236:91;20285:41;20309:16;20285:41;:::i;:::-;20277:6;20270:4;20264:11;20236:91;:::i;:::-;20230:4;20223:105;20141:193;20065:269;;;:::o;20340:73::-;20385:3;20340:73;:::o;20419:189::-;20496:32;;:::i;:::-;20537:65;20595:6;20587;20581:4;20537:65;:::i;:::-;20472:136;20419:189;;:::o;20614:186::-;20674:120;20691:3;20684:5;20681:14;20674:120;;;20745:39;20782:1;20775:5;20745:39;:::i;:::-;20718:1;20711:5;20707:13;20698:22;;20674:120;;;20614:186;;:::o;20806:543::-;20907:2;20902:3;20899:11;20896:446;;;20941:38;20973:5;20941:38;:::i;:::-;21025:29;21043:10;21025:29;:::i;:::-;21015:8;21011:44;21208:2;21196:10;21193:18;21190:49;;;21229:8;21214:23;;21190:49;21252:80;21308:22;21326:3;21308:22;:::i;:::-;21298:8;21294:37;21281:11;21252:80;:::i;:::-;20911:431;;20896:446;20806:543;;;:::o;21355:117::-;21409:8;21459:5;21453:4;21449:16;21428:37;;21355:117;;;;:::o;21478:169::-;21522:6;21555:51;21603:1;21599:6;21591:5;21588:1;21584:13;21555:51;:::i;:::-;21551:56;21636:4;21630;21626:15;21616:25;;21529:118;21478:169;;;;:::o;21652:295::-;21728:4;21874:29;21899:3;21893:4;21874:29;:::i;:::-;21866:37;;21936:3;21933:1;21929:11;21923:4;21920:21;21912:29;;21652:295;;;;:::o;21952:1403::-;22076:44;22116:3;22111;22076:44;:::i;:::-;22185:18;22177:6;22174:30;22171:56;;;22207:18;;:::i;:::-;22171:56;22251:38;22283:4;22277:11;22251:38;:::i;:::-;22336:67;22396:6;22388;22382:4;22336:67;:::i;:::-;22430:1;22459:2;22451:6;22448:14;22476:1;22471:632;;;;23147:1;23164:6;23161:84;;;23220:9;23215:3;23211:19;23198:33;23189:42;;23161:84;23271:67;23331:6;23324:5;23271:67;:::i;:::-;23265:4;23258:81;23120:229;22441:908;;22471:632;22523:4;22519:9;22511:6;22507:22;22557:37;22589:4;22557:37;:::i;:::-;22616:1;22630:215;22644:7;22641:1;22638:14;22630:215;;;22730:9;22725:3;22721:19;22708:33;22700:6;22693:49;22781:1;22773:6;22769:14;22759:24;;22828:2;22817:9;22813:18;22800:31;;22667:4;22664:1;22660:12;22655:17;;22630:215;;;22873:6;22864:7;22861:19;22858:186;;;22938:9;22933:3;22929:19;22916:33;22981:48;23023:4;23015:6;23011:17;23000:9;22981:48;:::i;:::-;22973:6;22966:64;22881:163;22858:186;23090:1;23086;23078:6;23074:14;23070:22;23064:4;23057:36;22478:625;;;22441:908;;22051:1304;;;21952:1403;;;:::o;23361:166::-;23501:18;23497:1;23489:6;23485:14;23478:42;23361:166;:::o;23533:366::-;23675:3;23696:67;23760:2;23755:3;23696:67;:::i;:::-;23689:74;;23772:93;23861:3;23772:93;:::i;:::-;23890:2;23885:3;23881:12;23874:19;;23533:366;;;:::o;23905:419::-;24071:4;24109:2;24098:9;24094:18;24086:26;;24158:9;24152:4;24148:20;24144:1;24133:9;24129:17;24122:47;24186:131;24312:4;24186:131;:::i;:::-;24178:139;;23905:419;;;:::o;24330:169::-;24470:21;24466:1;24458:6;24454:14;24447:45;24330:169;:::o;24505:366::-;24647:3;24668:67;24732:2;24727:3;24668:67;:::i;:::-;24661:74;;24744:93;24833:3;24744:93;:::i;:::-;24862:2;24857:3;24853:12;24846:19;;24505:366;;;:::o;24877:419::-;25043:4;25081:2;25070:9;25066:18;25058:26;;25130:9;25124:4;25120:20;25116:1;25105:9;25101:17;25094:47;25158:131;25284:4;25158:131;:::i;:::-;25150:139;;24877:419;;;:::o;25302:163::-;25442:15;25438:1;25430:6;25426:14;25419:39;25302:163;:::o;25471:366::-;25613:3;25634:67;25698:2;25693:3;25634:67;:::i;:::-;25627:74;;25710:93;25799:3;25710:93;:::i;:::-;25828:2;25823:3;25819:12;25812:19;;25471:366;;;:::o;25843:419::-;26009:4;26047:2;26036:9;26032:18;26024:26;;26096:9;26090:4;26086:20;26082:1;26071:9;26067:17;26060:47;26124:131;26250:4;26124:131;:::i;:::-;26116:139;;25843:419;;;:::o;26268:223::-;26408:34;26404:1;26396:6;26392:14;26385:58;26477:6;26472:2;26464:6;26460:15;26453:31;26268:223;:::o;26497:366::-;26639:3;26660:67;26724:2;26719:3;26660:67;:::i;:::-;26653:74;;26736:93;26825:3;26736:93;:::i;:::-;26854:2;26849:3;26845:12;26838:19;;26497:366;;;:::o;26869:419::-;27035:4;27073:2;27062:9;27058:18;27050:26;;27122:9;27116:4;27112:20;27108:1;27097:9;27093:17;27086:47;27150:131;27276:4;27150:131;:::i;:::-;27142:139;;26869:419;;;:::o;27294:170::-;27434:22;27430:1;27422:6;27418:14;27411:46;27294:170;:::o;27470:366::-;27612:3;27633:67;27697:2;27692:3;27633:67;:::i;:::-;27626:74;;27709:93;27798:3;27709:93;:::i;:::-;27827:2;27822:3;27818:12;27811:19;;27470:366;;;:::o;27842:419::-;28008:4;28046:2;28035:9;28031:18;28023:26;;28095:9;28089:4;28085:20;28081:1;28070:9;28066:17;28059:47;28123:131;28249:4;28123:131;:::i;:::-;28115:139;;27842:419;;;:::o;28267:148::-;28369:11;28406:3;28391:18;;28267:148;;;;:::o;28421:390::-;28527:3;28555:39;28588:5;28555:39;:::i;:::-;28610:89;28692:6;28687:3;28610:89;:::i;:::-;28603:96;;28708:65;28766:6;28761:3;28754:4;28747:5;28743:16;28708:65;:::i;:::-;28798:6;28793:3;28789:16;28782:23;;28531:280;28421:390;;;;:::o;28817:435::-;28997:3;29019:95;29110:3;29101:6;29019:95;:::i;:::-;29012:102;;29131:95;29222:3;29213:6;29131:95;:::i;:::-;29124:102;;29243:3;29236:10;;28817:435;;;;;:::o;29258:98::-;29309:6;29343:5;29337:12;29327:22;;29258:98;;;:::o;29362:168::-;29445:11;29479:6;29474:3;29467:19;29519:4;29514:3;29510:14;29495:29;;29362:168;;;;:::o;29536:373::-;29622:3;29650:38;29682:5;29650:38;:::i;:::-;29704:70;29767:6;29762:3;29704:70;:::i;:::-;29697:77;;29783:65;29841:6;29836:3;29829:4;29822:5;29818:16;29783:65;:::i;:::-;29873:29;29895:6;29873:29;:::i;:::-;29868:3;29864:39;29857:46;;29626:283;29536:373;;;;:::o;29915:640::-;30110:4;30148:3;30137:9;30133:19;30125:27;;30162:71;30230:1;30219:9;30215:17;30206:6;30162:71;:::i;:::-;30243:72;30311:2;30300:9;30296:18;30287:6;30243:72;:::i;:::-;30325;30393:2;30382:9;30378:18;30369:6;30325:72;:::i;:::-;30444:9;30438:4;30434:20;30429:2;30418:9;30414:18;30407:48;30472:76;30543:4;30534:6;30472:76;:::i;:::-;30464:84;;29915:640;;;;;;;:::o;30561:141::-;30617:5;30648:6;30642:13;30633:22;;30664:32;30690:5;30664:32;:::i;:::-;30561:141;;;;:::o;30708:349::-;30777:6;30826:2;30814:9;30805:7;30801:23;30797:32;30794:119;;;30832:79;;:::i;:::-;30794:119;30952:1;30977:63;31032:7;31023:6;31012:9;31008:22;30977:63;:::i;:::-;30967:73;;30923:127;30708:349;;;;:::o

Swarm Source

ipfs://50a50053397076988349d523fbdfcb71b5badb09b179f81ab19f45b80c115ad5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.