ETH Price: $3,322.36 (+2.23%)
Gas: 3 Gwei

Token

Degen District (DD3D)
 

Overview

Max Total Supply

3,500 DD3D

Holders

802

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 DD3D
0x629142ba6f4a857eb437133e059020ed642b971d
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:
DegenDistrict

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

    // ==============================
    //        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);
}
// File: contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 auxillary 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 auxillary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // 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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}
// File: contracts/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: contracts/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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



pragma solidity >=0.8.9 <0.9.0;





contract DegenDistrict is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;

  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;

  uint256 public cost = 0.005 ether;
  uint256 public maxSupply = 3500;
  uint256 public maxFreeSupply = 500;
  uint256 public maxMintAmount = 14;
  uint256 public maxPerTxn = 12;
  uint256 public maxFreeMintPerWalletAmount = 2;

  mapping(address => uint256) private _mintedFreeAmount;

  bool public revealed = false;
  bool public paused = true;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    setHiddenMetadataUri(_hiddenMetadataUri);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    
    uint256 mintCost = cost;
    bool isFree = ((totalSupply() + _mintAmount < maxFreeSupply + 1) && (_mintedFreeAmount[msg.sender] + _mintAmount <= maxFreeMintPerWalletAmount));

    if (isFree) {
        mintCost = 0;
    }

    require(msg.value >= _mintAmount * mintCost, "Please send the exact amount.");
    require(!paused, "The contract is paused!");
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    require(_mintAmount > 0 && _mintAmount <= maxPerTxn, "Invalid mint amount!");
    require(tx.origin == msg.sender, "The caller is another contract");
    require(
      _mintAmount > 0 && numberMinted(msg.sender) + _mintAmount <= maxMintAmount,
       "Invalid mint amount or minted max amount!"
    );

    if (isFree) {
        _mintedFreeAmount[msg.sender] += _mintAmount;
    }
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _safeMint(_receiver, _mintAmount);
  }

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

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmount(uint256 _maxMintAmount) public onlyOwner {
    maxMintAmount = _maxMintAmount;
  }

  function setmaxFreeMintPerWalletAmount(uint256 _maxFreeMintPerWalletAmount) public onlyOwner {
    maxFreeMintPerWalletAmount = _maxFreeMintPerWalletAmount;
  }

  function setmaxFreeSupply (uint256 _maxFreeSupply) public onlyOwner {
    maxFreeSupply = _maxFreeSupply;
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

   function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner nonReentrant {
    uint256 artist = address(this).balance * 70 / 100;
    uint256 marketer = address(this).balance * 10 / 100;
    uint256 dev1 = address(this).balance * 10 / 100;
    uint256 dev2 = address(this).balance * 10 / 100;

    (bool artSuccess, ) = payable(0xB756D3Ef9CaeB748F2c407153e940dd9023A37e7).call{value: artist}('');
    require(artSuccess);

    (bool marketerSuccess, ) = payable(0x6521016c4d0B1F8669D907512d0FEa9b3F032D2E).call{value: marketer}('');
    require(marketerSuccess);

    (bool dev1Success, ) = payable(0x70459adbe4bb937a67058c96A60d9067B62eF5D6).call{value: dev1}('');
    require(dev1Success);

    (bool dev2Success, ) = payable(0x37748f4B70Cc1C86Bd8691f1a7280dfFE7318478).call{value: dev2}('');
    require(dev2Success);
    
  }

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

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintPerWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeMintPerWalletAmount","type":"uint256"}],"name":"setmaxFreeMintPerWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b92919062000343565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200007992919062000343565b506611c37937e08000600d55610dac600e556101f4600f55600e601055600c60115560026012556000601460006101000a81548160ff0219169083151502179055506001601460016101000a81548160ff021916908315150217905550348015620000e357600080fd5b506040516200472338038062004723833981810160405281019062000109919062000590565b828281600290805190602001906200012392919062000343565b5080600390805190602001906200013c92919062000343565b506200014d6200019760201b60201c565b60008190555050506200017562000169620001a060201b60201c565b620001a860201b60201c565b60016009819055506200018e816200026e60201b60201c565b50505062000731565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200027e620001a060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002a46200031960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f490620006aa565b60405180910390fd5b80600c90805190602001906200031592919062000343565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200035190620006fb565b90600052602060002090601f016020900481019282620003755760008555620003c1565b82601f106200039057805160ff1916838001178555620003c1565b82800160010185558215620003c1579182015b82811115620003c0578251825591602001919060010190620003a3565b5b509050620003d09190620003d4565b5090565b5b80821115620003ef576000816000905550600101620003d5565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200045c8262000411565b810181811067ffffffffffffffff821117156200047e576200047d62000422565b5b80604052505050565b600062000493620003f3565b9050620004a1828262000451565b919050565b600067ffffffffffffffff821115620004c457620004c362000422565b5b620004cf8262000411565b9050602081019050919050565b60005b83811015620004fc578082015181840152602081019050620004df565b838111156200050c576000848401525b50505050565b6000620005296200052384620004a6565b62000487565b9050828152602081018484840111156200054857620005476200040c565b5b62000555848285620004dc565b509392505050565b600082601f83011262000575576200057462000407565b5b81516200058784826020860162000512565b91505092915050565b600080600060608486031215620005ac57620005ab620003fd565b5b600084015167ffffffffffffffff811115620005cd57620005cc62000402565b5b620005db868287016200055d565b935050602084015167ffffffffffffffff811115620005ff57620005fe62000402565b5b6200060d868287016200055d565b925050604084015167ffffffffffffffff81111562000631576200063062000402565b5b6200063f868287016200055d565b9150509250925092565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200069260208362000649565b91506200069f826200065a565b602082019050919050565b60006020820190508181036000830152620006c58162000683565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200071457607f821691505b602082108114156200072b576200072a620006cc565b5b50919050565b613fe280620007416000396000f3fe6080604052600436106102465760003560e01c80635c975abb11610139578063a22cb465116100b6578063d5abeb011161007a578063d5abeb0114610835578063dc33e68114610860578063e0a808531461089d578063e985e9c5146108c6578063efbd73f414610903578063f2fde38b1461092c57610246565b8063a22cb46514610752578063a45ba8e71461077b578063b88d4fde146107a6578063bde12d73146107cf578063c87b56dd146107f857610246565b80637ec4a659116100fd5780637ec4a6591461068e5780638da5cb5b146106b757806391ae4534146106e257806395d89b411461070b578063a0712d681461073657610246565b80635c975abb146105a757806362b99ad4146105d25780636352211e146105fd57806370a082311461063a578063715018a61461067757610246565b8063239c70ae116101c757806344a0d68a1161018b57806344a0d68a146104d457806347513334146104fd5780634fdd43cb1461052857806351830227146105515780635503a0e81461057c57610246565b8063239c70ae1461041557806323b872dd146104405780633cb51994146104695780633ccfd60b1461049457806342842e0e146104ab57610246565b8063126fa6a91161020e578063126fa6a91461034257806313faede61461036d57806316ba10e01461039857806316c38b3c146103c157806318160ddd146103ea57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063088a4ed0146102f0578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190612fad565b610955565b60405161027f9190612ff5565b60405180910390f35b34801561029457600080fd5b5061029d6109e7565b6040516102aa91906130a9565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613101565b610a79565b6040516102e7919061316f565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613101565b610af5565b005b34801561032557600080fd5b50610340600480360381019061033b91906131b6565b610b7b565b005b34801561034e57600080fd5b50610357610d22565b6040516103649190613205565b60405180910390f35b34801561037957600080fd5b50610382610d28565b60405161038f9190613205565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba9190613355565b610d2e565b005b3480156103cd57600080fd5b506103e860048036038101906103e391906133ca565b610dc4565b005b3480156103f657600080fd5b506103ff610e5d565b60405161040c9190613205565b60405180910390f35b34801561042157600080fd5b5061042a610e74565b6040516104379190613205565b60405180910390f35b34801561044c57600080fd5b50610467600480360381019061046291906133f7565b610e7a565b005b34801561047557600080fd5b5061047e610e8a565b60405161048b9190613205565b60405180910390f35b3480156104a057600080fd5b506104a9610e90565b005b3480156104b757600080fd5b506104d260048036038101906104cd91906133f7565b611208565b005b3480156104e057600080fd5b506104fb60048036038101906104f69190613101565b611228565b005b34801561050957600080fd5b506105126112ae565b60405161051f9190613205565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190613355565b6112b4565b005b34801561055d57600080fd5b5061056661134a565b6040516105739190612ff5565b60405180910390f35b34801561058857600080fd5b5061059161135d565b60405161059e91906130a9565b60405180910390f35b3480156105b357600080fd5b506105bc6113eb565b6040516105c99190612ff5565b60405180910390f35b3480156105de57600080fd5b506105e76113fe565b6040516105f491906130a9565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f9190613101565b61148c565b604051610631919061316f565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c919061344a565b61149e565b60405161066e9190613205565b60405180910390f35b34801561068357600080fd5b5061068c611557565b005b34801561069a57600080fd5b506106b560048036038101906106b09190613355565b6115df565b005b3480156106c357600080fd5b506106cc611675565b6040516106d9919061316f565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190613101565b61169f565b005b34801561071757600080fd5b50610720611725565b60405161072d91906130a9565b60405180910390f35b610750600480360381019061074b9190613101565b6117b7565b005b34801561075e57600080fd5b5061077960048036038101906107749190613477565b611ad5565b005b34801561078757600080fd5b50610790611c4d565b60405161079d91906130a9565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c89190613558565b611cdb565b005b3480156107db57600080fd5b506107f660048036038101906107f19190613101565b611d4e565b005b34801561080457600080fd5b5061081f600480360381019061081a9190613101565b611dd4565b60405161082c91906130a9565b60405180910390f35b34801561084157600080fd5b5061084a611f2d565b6040516108579190613205565b60405180910390f35b34801561086c57600080fd5b506108876004803603810190610882919061344a565b611f33565b6040516108949190613205565b60405180910390f35b3480156108a957600080fd5b506108c460048036038101906108bf91906133ca565b611f45565b005b3480156108d257600080fd5b506108ed60048036038101906108e891906135db565b611fde565b6040516108fa9190612ff5565b60405180910390f35b34801561090f57600080fd5b5061092a6004803603810190610925919061361b565b612072565b005b34801561093857600080fd5b50610953600480360381019061094e919061344a565b612153565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109b057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109f69061368a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a229061368a565b8015610a6f5780601f10610a4457610100808354040283529160200191610a6f565b820191906000526020600020905b815481529060010190602001808311610a5257829003601f168201915b5050505050905090565b6000610a848261224b565b610aba576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610afd6122aa565b73ffffffffffffffffffffffffffffffffffffffff16610b1b611675565b73ffffffffffffffffffffffffffffffffffffffff1614610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6890613708565b60405180910390fd5b8060108190555050565b6000610b86826122b2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bee576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0d612380565b73ffffffffffffffffffffffffffffffffffffffff1614610c7057610c3981610c34612380565b611fde565b610c6f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60125481565b600d5481565b610d366122aa565b73ffffffffffffffffffffffffffffffffffffffff16610d54611675565b73ffffffffffffffffffffffffffffffffffffffff1614610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da190613708565b60405180910390fd5b80600b9080519060200190610dc0929190612e9e565b5050565b610dcc6122aa565b73ffffffffffffffffffffffffffffffffffffffff16610dea611675565b73ffffffffffffffffffffffffffffffffffffffff1614610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790613708565b60405180910390fd5b80601460016101000a81548160ff02191690831515021790555050565b6000610e67612388565b6001546000540303905090565b60105481565b610e85838383612391565b505050565b60115481565b610e986122aa565b73ffffffffffffffffffffffffffffffffffffffff16610eb6611675565b73ffffffffffffffffffffffffffffffffffffffff1614610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390613708565b60405180910390fd5b60026009541415610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990613774565b60405180910390fd5b600260098190555060006064604647610f6b91906137c3565b610f75919061384c565b905060006064600a47610f8891906137c3565b610f92919061384c565b905060006064600a47610fa591906137c3565b610faf919061384c565b905060006064600a47610fc291906137c3565b610fcc919061384c565b9050600073b756d3ef9caeb748f2c407153e940dd9023a37e773ffffffffffffffffffffffffffffffffffffffff1685604051611008906138ae565b60006040518083038185875af1925050503d8060008114611045576040519150601f19603f3d011682016040523d82523d6000602084013e61104a565b606091505b505090508061105857600080fd5b6000736521016c4d0b1f8669d907512d0fea9b3f032d2e73ffffffffffffffffffffffffffffffffffffffff1685604051611092906138ae565b60006040518083038185875af1925050503d80600081146110cf576040519150601f19603f3d011682016040523d82523d6000602084013e6110d4565b606091505b50509050806110e257600080fd5b60007370459adbe4bb937a67058c96a60d9067b62ef5d673ffffffffffffffffffffffffffffffffffffffff168560405161111c906138ae565b60006040518083038185875af1925050503d8060008114611159576040519150601f19603f3d011682016040523d82523d6000602084013e61115e565b606091505b505090508061116c57600080fd5b60007337748f4b70cc1c86bd8691f1a7280dffe731847873ffffffffffffffffffffffffffffffffffffffff16856040516111a6906138ae565b60006040518083038185875af1925050503d80600081146111e3576040519150601f19603f3d011682016040523d82523d6000602084013e6111e8565b606091505b50509050806111f657600080fd5b50505050505050506001600981905550565b61122383838360405180602001604052806000815250611cdb565b505050565b6112306122aa565b73ffffffffffffffffffffffffffffffffffffffff1661124e611675565b73ffffffffffffffffffffffffffffffffffffffff16146112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b90613708565b60405180910390fd5b80600d8190555050565b600f5481565b6112bc6122aa565b73ffffffffffffffffffffffffffffffffffffffff166112da611675565b73ffffffffffffffffffffffffffffffffffffffff1614611330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132790613708565b60405180910390fd5b80600c9080519060200190611346929190612e9e565b5050565b601460009054906101000a900460ff1681565b600b805461136a9061368a565b80601f01602080910402602001604051908101604052809291908181526020018280546113969061368a565b80156113e35780601f106113b8576101008083540402835291602001916113e3565b820191906000526020600020905b8154815290600101906020018083116113c657829003601f168201915b505050505081565b601460019054906101000a900460ff1681565b600a805461140b9061368a565b80601f01602080910402602001604051908101604052809291908181526020018280546114379061368a565b80156114845780601f1061145957610100808354040283529160200191611484565b820191906000526020600020905b81548152906001019060200180831161146757829003601f168201915b505050505081565b6000611497826122b2565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611506576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61155f6122aa565b73ffffffffffffffffffffffffffffffffffffffff1661157d611675565b73ffffffffffffffffffffffffffffffffffffffff16146115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90613708565b60405180910390fd5b6115dd600061273b565b565b6115e76122aa565b73ffffffffffffffffffffffffffffffffffffffff16611605611675565b73ffffffffffffffffffffffffffffffffffffffff161461165b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165290613708565b60405180910390fd5b80600a9080519060200190611671929190612e9e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116a76122aa565b73ffffffffffffffffffffffffffffffffffffffff166116c5611675565b73ffffffffffffffffffffffffffffffffffffffff161461171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290613708565b60405180910390fd5b8060128190555050565b6060600380546117349061368a565b80601f01602080910402602001604051908101604052809291908181526020018280546117609061368a565b80156117ad5780601f10611782576101008083540402835291602001916117ad565b820191906000526020600020905b81548152906001019060200180831161179057829003601f168201915b5050505050905090565b806000600d54905060006001600f546117d091906138c3565b836117d9610e5d565b6117e391906138c3565b10801561183c575060125483601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461183991906138c3565b11155b9050801561184957600091505b818361185591906137c3565b341015611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e90613965565b60405180910390fd5b601460019054906101000a900460ff16156118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de906139d1565b60405180910390fd5b600e54836118f3610e5d565b6118fd91906138c3565b111561193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590613a3d565b60405180910390fd5b60008311801561195057506011548311155b61198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690613aa9565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f490613b15565b60405180910390fd5b600083118015611a22575060105483611a1533611f33565b611a1f91906138c3565b11155b611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5890613ba7565b60405180910390fd5b8015611abe5782601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab691906138c3565b925050819055505b611acf611ac96122aa565b85612801565b50505050565b611add612380565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b42576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b4f612380565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bfc612380565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c419190612ff5565b60405180910390a35050565b600c8054611c5a9061368a565b80601f0160208091040260200160405190810160405280929190818152602001828054611c869061368a565b8015611cd35780601f10611ca857610100808354040283529160200191611cd3565b820191906000526020600020905b815481529060010190602001808311611cb657829003601f168201915b505050505081565b611ce6848484612391565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d4857611d118484848461281f565b611d47576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611d566122aa565b73ffffffffffffffffffffffffffffffffffffffff16611d74611675565b73ffffffffffffffffffffffffffffffffffffffff1614611dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc190613708565b60405180910390fd5b80600f8190555050565b6060611ddf8261224b565b611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1590613c39565b60405180910390fd5b60001515601460009054906101000a900460ff1615151415611ecc57600c8054611e479061368a565b80601f0160208091040260200160405190810160405280929190818152602001828054611e739061368a565b8015611ec05780601f10611e9557610100808354040283529160200191611ec0565b820191906000526020600020905b815481529060010190602001808311611ea357829003601f168201915b50505050509050611f28565b6000611ed661297f565b90506000815111611ef65760405180602001604052806000815250611f24565b80611f0084612a11565b600b604051602001611f1493929190613d29565b6040516020818303038152906040525b9150505b919050565b600e5481565b6000611f3e82612b72565b9050919050565b611f4d6122aa565b73ffffffffffffffffffffffffffffffffffffffff16611f6b611675565b73ffffffffffffffffffffffffffffffffffffffff1614611fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb890613708565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61207a6122aa565b73ffffffffffffffffffffffffffffffffffffffff16612098611675565b73ffffffffffffffffffffffffffffffffffffffff16146120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e590613708565b60405180910390fd5b600e54826120fa610e5d565b61210491906138c3565b1115612145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213c90613a3d565b60405180910390fd5b61214f8183612801565b5050565b61215b6122aa565b73ffffffffffffffffffffffffffffffffffffffff16612179611675565b73ffffffffffffffffffffffffffffffffffffffff16146121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c690613708565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561223f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223690613dcc565b60405180910390fd5b6122488161273b565b50565b600081612256612388565b11158015612265575060005482105b80156122a3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600080829050806122c1612388565b11612349576000548110156123485760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612346575b600081141561233c576004600083600190039350838152602001908152602001600020549050612311565b809250505061237b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061239c826122b2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612403576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612424612380565b73ffffffffffffffffffffffffffffffffffffffff16148061245357506124528561244d612380565b611fde565b5b806124985750612461612380565b73ffffffffffffffffffffffffffffffffffffffff1661248084610a79565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806124d1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612538576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125458585856001612bc9565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61264286612bcf565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156126cc5760006001840190506000600460008381526020019081526020016000205414156126ca5760005481146126c9578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127348585856001612bd9565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61281b828260405180602001604052806000815250612bdf565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612845612380565b8786866040518563ffffffff1660e01b81526004016128679493929190613e41565b602060405180830381600087803b15801561288157600080fd5b505af19250505080156128b257506040513d601f19601f820116820180604052508101906128af9190613ea2565b60015b61292c573d80600081146128e2576040519150601f19603f3d011682016040523d82523d6000602084013e6128e7565b606091505b50600081511415612924576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461298e9061368a565b80601f01602080910402602001604051908101604052809291908181526020018280546129ba9061368a565b8015612a075780601f106129dc57610100808354040283529160200191612a07565b820191906000526020600020905b8154815290600101906020018083116129ea57829003601f168201915b5050505050905090565b60606000821415612a59576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b6d565b600082905060005b60008214612a8b578080612a7490613ecf565b915050600a82612a84919061384c565b9150612a61565b60008167ffffffffffffffff811115612aa757612aa661322a565b5b6040519080825280601f01601f191660200182016040528015612ad95781602001600182028036833780820191505090505b5090505b60008514612b6657600182612af29190613f18565b9150600a85612b019190613f4c565b6030612b0d91906138c3565b60f81b818381518110612b2357612b22613f7d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b5f919061384c565b9450612add565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c4c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612c87576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c946000858386612bc9565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612cf960018514612e94565b901b60a042901b612d0986612bcf565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612e0d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dbd600087848060010195508761281f565b612df3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612d4e578260005414612e0857600080fd5b612e78565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612e0e575b816000819055505050612e8e6000858386612bd9565b50505050565b6000819050919050565b828054612eaa9061368a565b90600052602060002090601f016020900481019282612ecc5760008555612f13565b82601f10612ee557805160ff1916838001178555612f13565b82800160010185558215612f13579182015b82811115612f12578251825591602001919060010190612ef7565b5b509050612f209190612f24565b5090565b5b80821115612f3d576000816000905550600101612f25565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f8a81612f55565b8114612f9557600080fd5b50565b600081359050612fa781612f81565b92915050565b600060208284031215612fc357612fc2612f4b565b5b6000612fd184828501612f98565b91505092915050565b60008115159050919050565b612fef81612fda565b82525050565b600060208201905061300a6000830184612fe6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561304a57808201518184015260208101905061302f565b83811115613059576000848401525b50505050565b6000601f19601f8301169050919050565b600061307b82613010565b613085818561301b565b935061309581856020860161302c565b61309e8161305f565b840191505092915050565b600060208201905081810360008301526130c38184613070565b905092915050565b6000819050919050565b6130de816130cb565b81146130e957600080fd5b50565b6000813590506130fb816130d5565b92915050565b60006020828403121561311757613116612f4b565b5b6000613125848285016130ec565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131598261312e565b9050919050565b6131698161314e565b82525050565b60006020820190506131846000830184613160565b92915050565b6131938161314e565b811461319e57600080fd5b50565b6000813590506131b08161318a565b92915050565b600080604083850312156131cd576131cc612f4b565b5b60006131db858286016131a1565b92505060206131ec858286016130ec565b9150509250929050565b6131ff816130cb565b82525050565b600060208201905061321a60008301846131f6565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6132628261305f565b810181811067ffffffffffffffff821117156132815761328061322a565b5b80604052505050565b6000613294612f41565b90506132a08282613259565b919050565b600067ffffffffffffffff8211156132c0576132bf61322a565b5b6132c98261305f565b9050602081019050919050565b82818337600083830152505050565b60006132f86132f3846132a5565b61328a565b90508281526020810184848401111561331457613313613225565b5b61331f8482856132d6565b509392505050565b600082601f83011261333c5761333b613220565b5b813561334c8482602086016132e5565b91505092915050565b60006020828403121561336b5761336a612f4b565b5b600082013567ffffffffffffffff81111561338957613388612f50565b5b61339584828501613327565b91505092915050565b6133a781612fda565b81146133b257600080fd5b50565b6000813590506133c48161339e565b92915050565b6000602082840312156133e0576133df612f4b565b5b60006133ee848285016133b5565b91505092915050565b6000806000606084860312156134105761340f612f4b565b5b600061341e868287016131a1565b935050602061342f868287016131a1565b9250506040613440868287016130ec565b9150509250925092565b6000602082840312156134605761345f612f4b565b5b600061346e848285016131a1565b91505092915050565b6000806040838503121561348e5761348d612f4b565b5b600061349c858286016131a1565b92505060206134ad858286016133b5565b9150509250929050565b600067ffffffffffffffff8211156134d2576134d161322a565b5b6134db8261305f565b9050602081019050919050565b60006134fb6134f6846134b7565b61328a565b90508281526020810184848401111561351757613516613225565b5b6135228482856132d6565b509392505050565b600082601f83011261353f5761353e613220565b5b813561354f8482602086016134e8565b91505092915050565b6000806000806080858703121561357257613571612f4b565b5b6000613580878288016131a1565b9450506020613591878288016131a1565b93505060406135a2878288016130ec565b925050606085013567ffffffffffffffff8111156135c3576135c2612f50565b5b6135cf8782880161352a565b91505092959194509250565b600080604083850312156135f2576135f1612f4b565b5b6000613600858286016131a1565b9250506020613611858286016131a1565b9150509250929050565b6000806040838503121561363257613631612f4b565b5b6000613640858286016130ec565b9250506020613651858286016131a1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136a257607f821691505b602082108114156136b6576136b561365b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136f260208361301b565b91506136fd826136bc565b602082019050919050565b60006020820190508181036000830152613721816136e5565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061375e601f8361301b565b915061376982613728565b602082019050919050565b6000602082019050818103600083015261378d81613751565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137ce826130cb565b91506137d9836130cb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561381257613811613794565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613857826130cb565b9150613862836130cb565b9250826138725761387161381d565b5b828204905092915050565b600081905092915050565b50565b600061389860008361387d565b91506138a382613888565b600082019050919050565b60006138b98261388b565b9150819050919050565b60006138ce826130cb565b91506138d9836130cb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561390e5761390d613794565b5b828201905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b600061394f601d8361301b565b915061395a82613919565b602082019050919050565b6000602082019050818103600083015261397e81613942565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006139bb60178361301b565b91506139c682613985565b602082019050919050565b600060208201905081810360008301526139ea816139ae565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613a2760148361301b565b9150613a32826139f1565b602082019050919050565b60006020820190508181036000830152613a5681613a1a565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613a9360148361301b565b9150613a9e82613a5d565b602082019050919050565b60006020820190508181036000830152613ac281613a86565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613aff601e8361301b565b9150613b0a82613ac9565b602082019050919050565b60006020820190508181036000830152613b2e81613af2565b9050919050565b7f496e76616c6964206d696e7420616d6f756e74206f72206d696e746564206d6160008201527f7820616d6f756e74210000000000000000000000000000000000000000000000602082015250565b6000613b9160298361301b565b9150613b9c82613b35565b604082019050919050565b60006020820190508181036000830152613bc081613b84565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c23602f8361301b565b9150613c2e82613bc7565b604082019050919050565b60006020820190508181036000830152613c5281613c16565b9050919050565b600081905092915050565b6000613c6f82613010565b613c798185613c59565b9350613c8981856020860161302c565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613cb78161368a565b613cc18186613c59565b94506001821660008114613cdc5760018114613ced57613d20565b60ff19831686528186019350613d20565b613cf685613c95565b60005b83811015613d1857815481890152600182019150602081019050613cf9565b838801955050505b50505092915050565b6000613d358286613c64565b9150613d418285613c64565b9150613d4d8284613caa565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613db660268361301b565b9150613dc182613d5a565b604082019050919050565b60006020820190508181036000830152613de581613da9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e1382613dec565b613e1d8185613df7565b9350613e2d81856020860161302c565b613e368161305f565b840191505092915050565b6000608082019050613e566000830187613160565b613e636020830186613160565b613e7060408301856131f6565b8181036060830152613e828184613e08565b905095945050505050565b600081519050613e9c81612f81565b92915050565b600060208284031215613eb857613eb7612f4b565b5b6000613ec684828501613e8d565b91505092915050565b6000613eda826130cb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f0d57613f0c613794565b5b600182019050919050565b6000613f23826130cb565b9150613f2e836130cb565b925082821015613f4157613f40613794565b5b828203905092915050565b6000613f57826130cb565b9150613f62836130cb565b925082613f7257613f7161381d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220bee4d2bb80c4faf15f283e253b36dd06f9486d12f4920b46b531de5020efabfd64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e446567656e20446973747269637400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044444334400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e697066733a2f2f6261667962656961627774747a69617a78666979796436643466676e7579746c71663266686664676163376a7765776764766d726768337263766d2f68696464656e2e6a736f6e000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c80635c975abb11610139578063a22cb465116100b6578063d5abeb011161007a578063d5abeb0114610835578063dc33e68114610860578063e0a808531461089d578063e985e9c5146108c6578063efbd73f414610903578063f2fde38b1461092c57610246565b8063a22cb46514610752578063a45ba8e71461077b578063b88d4fde146107a6578063bde12d73146107cf578063c87b56dd146107f857610246565b80637ec4a659116100fd5780637ec4a6591461068e5780638da5cb5b146106b757806391ae4534146106e257806395d89b411461070b578063a0712d681461073657610246565b80635c975abb146105a757806362b99ad4146105d25780636352211e146105fd57806370a082311461063a578063715018a61461067757610246565b8063239c70ae116101c757806344a0d68a1161018b57806344a0d68a146104d457806347513334146104fd5780634fdd43cb1461052857806351830227146105515780635503a0e81461057c57610246565b8063239c70ae1461041557806323b872dd146104405780633cb51994146104695780633ccfd60b1461049457806342842e0e146104ab57610246565b8063126fa6a91161020e578063126fa6a91461034257806313faede61461036d57806316ba10e01461039857806316c38b3c146103c157806318160ddd146103ea57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063088a4ed0146102f0578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190612fad565b610955565b60405161027f9190612ff5565b60405180910390f35b34801561029457600080fd5b5061029d6109e7565b6040516102aa91906130a9565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613101565b610a79565b6040516102e7919061316f565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613101565b610af5565b005b34801561032557600080fd5b50610340600480360381019061033b91906131b6565b610b7b565b005b34801561034e57600080fd5b50610357610d22565b6040516103649190613205565b60405180910390f35b34801561037957600080fd5b50610382610d28565b60405161038f9190613205565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba9190613355565b610d2e565b005b3480156103cd57600080fd5b506103e860048036038101906103e391906133ca565b610dc4565b005b3480156103f657600080fd5b506103ff610e5d565b60405161040c9190613205565b60405180910390f35b34801561042157600080fd5b5061042a610e74565b6040516104379190613205565b60405180910390f35b34801561044c57600080fd5b50610467600480360381019061046291906133f7565b610e7a565b005b34801561047557600080fd5b5061047e610e8a565b60405161048b9190613205565b60405180910390f35b3480156104a057600080fd5b506104a9610e90565b005b3480156104b757600080fd5b506104d260048036038101906104cd91906133f7565b611208565b005b3480156104e057600080fd5b506104fb60048036038101906104f69190613101565b611228565b005b34801561050957600080fd5b506105126112ae565b60405161051f9190613205565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190613355565b6112b4565b005b34801561055d57600080fd5b5061056661134a565b6040516105739190612ff5565b60405180910390f35b34801561058857600080fd5b5061059161135d565b60405161059e91906130a9565b60405180910390f35b3480156105b357600080fd5b506105bc6113eb565b6040516105c99190612ff5565b60405180910390f35b3480156105de57600080fd5b506105e76113fe565b6040516105f491906130a9565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f9190613101565b61148c565b604051610631919061316f565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c919061344a565b61149e565b60405161066e9190613205565b60405180910390f35b34801561068357600080fd5b5061068c611557565b005b34801561069a57600080fd5b506106b560048036038101906106b09190613355565b6115df565b005b3480156106c357600080fd5b506106cc611675565b6040516106d9919061316f565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190613101565b61169f565b005b34801561071757600080fd5b50610720611725565b60405161072d91906130a9565b60405180910390f35b610750600480360381019061074b9190613101565b6117b7565b005b34801561075e57600080fd5b5061077960048036038101906107749190613477565b611ad5565b005b34801561078757600080fd5b50610790611c4d565b60405161079d91906130a9565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c89190613558565b611cdb565b005b3480156107db57600080fd5b506107f660048036038101906107f19190613101565b611d4e565b005b34801561080457600080fd5b5061081f600480360381019061081a9190613101565b611dd4565b60405161082c91906130a9565b60405180910390f35b34801561084157600080fd5b5061084a611f2d565b6040516108579190613205565b60405180910390f35b34801561086c57600080fd5b506108876004803603810190610882919061344a565b611f33565b6040516108949190613205565b60405180910390f35b3480156108a957600080fd5b506108c460048036038101906108bf91906133ca565b611f45565b005b3480156108d257600080fd5b506108ed60048036038101906108e891906135db565b611fde565b6040516108fa9190612ff5565b60405180910390f35b34801561090f57600080fd5b5061092a6004803603810190610925919061361b565b612072565b005b34801561093857600080fd5b50610953600480360381019061094e919061344a565b612153565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109b057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109f69061368a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a229061368a565b8015610a6f5780601f10610a4457610100808354040283529160200191610a6f565b820191906000526020600020905b815481529060010190602001808311610a5257829003601f168201915b5050505050905090565b6000610a848261224b565b610aba576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610afd6122aa565b73ffffffffffffffffffffffffffffffffffffffff16610b1b611675565b73ffffffffffffffffffffffffffffffffffffffff1614610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6890613708565b60405180910390fd5b8060108190555050565b6000610b86826122b2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bee576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0d612380565b73ffffffffffffffffffffffffffffffffffffffff1614610c7057610c3981610c34612380565b611fde565b610c6f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60125481565b600d5481565b610d366122aa565b73ffffffffffffffffffffffffffffffffffffffff16610d54611675565b73ffffffffffffffffffffffffffffffffffffffff1614610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da190613708565b60405180910390fd5b80600b9080519060200190610dc0929190612e9e565b5050565b610dcc6122aa565b73ffffffffffffffffffffffffffffffffffffffff16610dea611675565b73ffffffffffffffffffffffffffffffffffffffff1614610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790613708565b60405180910390fd5b80601460016101000a81548160ff02191690831515021790555050565b6000610e67612388565b6001546000540303905090565b60105481565b610e85838383612391565b505050565b60115481565b610e986122aa565b73ffffffffffffffffffffffffffffffffffffffff16610eb6611675565b73ffffffffffffffffffffffffffffffffffffffff1614610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390613708565b60405180910390fd5b60026009541415610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990613774565b60405180910390fd5b600260098190555060006064604647610f6b91906137c3565b610f75919061384c565b905060006064600a47610f8891906137c3565b610f92919061384c565b905060006064600a47610fa591906137c3565b610faf919061384c565b905060006064600a47610fc291906137c3565b610fcc919061384c565b9050600073b756d3ef9caeb748f2c407153e940dd9023a37e773ffffffffffffffffffffffffffffffffffffffff1685604051611008906138ae565b60006040518083038185875af1925050503d8060008114611045576040519150601f19603f3d011682016040523d82523d6000602084013e61104a565b606091505b505090508061105857600080fd5b6000736521016c4d0b1f8669d907512d0fea9b3f032d2e73ffffffffffffffffffffffffffffffffffffffff1685604051611092906138ae565b60006040518083038185875af1925050503d80600081146110cf576040519150601f19603f3d011682016040523d82523d6000602084013e6110d4565b606091505b50509050806110e257600080fd5b60007370459adbe4bb937a67058c96a60d9067b62ef5d673ffffffffffffffffffffffffffffffffffffffff168560405161111c906138ae565b60006040518083038185875af1925050503d8060008114611159576040519150601f19603f3d011682016040523d82523d6000602084013e61115e565b606091505b505090508061116c57600080fd5b60007337748f4b70cc1c86bd8691f1a7280dffe731847873ffffffffffffffffffffffffffffffffffffffff16856040516111a6906138ae565b60006040518083038185875af1925050503d80600081146111e3576040519150601f19603f3d011682016040523d82523d6000602084013e6111e8565b606091505b50509050806111f657600080fd5b50505050505050506001600981905550565b61122383838360405180602001604052806000815250611cdb565b505050565b6112306122aa565b73ffffffffffffffffffffffffffffffffffffffff1661124e611675565b73ffffffffffffffffffffffffffffffffffffffff16146112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b90613708565b60405180910390fd5b80600d8190555050565b600f5481565b6112bc6122aa565b73ffffffffffffffffffffffffffffffffffffffff166112da611675565b73ffffffffffffffffffffffffffffffffffffffff1614611330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132790613708565b60405180910390fd5b80600c9080519060200190611346929190612e9e565b5050565b601460009054906101000a900460ff1681565b600b805461136a9061368a565b80601f01602080910402602001604051908101604052809291908181526020018280546113969061368a565b80156113e35780601f106113b8576101008083540402835291602001916113e3565b820191906000526020600020905b8154815290600101906020018083116113c657829003601f168201915b505050505081565b601460019054906101000a900460ff1681565b600a805461140b9061368a565b80601f01602080910402602001604051908101604052809291908181526020018280546114379061368a565b80156114845780601f1061145957610100808354040283529160200191611484565b820191906000526020600020905b81548152906001019060200180831161146757829003601f168201915b505050505081565b6000611497826122b2565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611506576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61155f6122aa565b73ffffffffffffffffffffffffffffffffffffffff1661157d611675565b73ffffffffffffffffffffffffffffffffffffffff16146115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90613708565b60405180910390fd5b6115dd600061273b565b565b6115e76122aa565b73ffffffffffffffffffffffffffffffffffffffff16611605611675565b73ffffffffffffffffffffffffffffffffffffffff161461165b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165290613708565b60405180910390fd5b80600a9080519060200190611671929190612e9e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116a76122aa565b73ffffffffffffffffffffffffffffffffffffffff166116c5611675565b73ffffffffffffffffffffffffffffffffffffffff161461171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290613708565b60405180910390fd5b8060128190555050565b6060600380546117349061368a565b80601f01602080910402602001604051908101604052809291908181526020018280546117609061368a565b80156117ad5780601f10611782576101008083540402835291602001916117ad565b820191906000526020600020905b81548152906001019060200180831161179057829003601f168201915b5050505050905090565b806000600d54905060006001600f546117d091906138c3565b836117d9610e5d565b6117e391906138c3565b10801561183c575060125483601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461183991906138c3565b11155b9050801561184957600091505b818361185591906137c3565b341015611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e90613965565b60405180910390fd5b601460019054906101000a900460ff16156118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de906139d1565b60405180910390fd5b600e54836118f3610e5d565b6118fd91906138c3565b111561193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590613a3d565b60405180910390fd5b60008311801561195057506011548311155b61198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690613aa9565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f490613b15565b60405180910390fd5b600083118015611a22575060105483611a1533611f33565b611a1f91906138c3565b11155b611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5890613ba7565b60405180910390fd5b8015611abe5782601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab691906138c3565b925050819055505b611acf611ac96122aa565b85612801565b50505050565b611add612380565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b42576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b4f612380565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bfc612380565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c419190612ff5565b60405180910390a35050565b600c8054611c5a9061368a565b80601f0160208091040260200160405190810160405280929190818152602001828054611c869061368a565b8015611cd35780601f10611ca857610100808354040283529160200191611cd3565b820191906000526020600020905b815481529060010190602001808311611cb657829003601f168201915b505050505081565b611ce6848484612391565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d4857611d118484848461281f565b611d47576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611d566122aa565b73ffffffffffffffffffffffffffffffffffffffff16611d74611675565b73ffffffffffffffffffffffffffffffffffffffff1614611dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc190613708565b60405180910390fd5b80600f8190555050565b6060611ddf8261224b565b611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1590613c39565b60405180910390fd5b60001515601460009054906101000a900460ff1615151415611ecc57600c8054611e479061368a565b80601f0160208091040260200160405190810160405280929190818152602001828054611e739061368a565b8015611ec05780601f10611e9557610100808354040283529160200191611ec0565b820191906000526020600020905b815481529060010190602001808311611ea357829003601f168201915b50505050509050611f28565b6000611ed661297f565b90506000815111611ef65760405180602001604052806000815250611f24565b80611f0084612a11565b600b604051602001611f1493929190613d29565b6040516020818303038152906040525b9150505b919050565b600e5481565b6000611f3e82612b72565b9050919050565b611f4d6122aa565b73ffffffffffffffffffffffffffffffffffffffff16611f6b611675565b73ffffffffffffffffffffffffffffffffffffffff1614611fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb890613708565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61207a6122aa565b73ffffffffffffffffffffffffffffffffffffffff16612098611675565b73ffffffffffffffffffffffffffffffffffffffff16146120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e590613708565b60405180910390fd5b600e54826120fa610e5d565b61210491906138c3565b1115612145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213c90613a3d565b60405180910390fd5b61214f8183612801565b5050565b61215b6122aa565b73ffffffffffffffffffffffffffffffffffffffff16612179611675565b73ffffffffffffffffffffffffffffffffffffffff16146121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c690613708565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561223f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223690613dcc565b60405180910390fd5b6122488161273b565b50565b600081612256612388565b11158015612265575060005482105b80156122a3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600080829050806122c1612388565b11612349576000548110156123485760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612346575b600081141561233c576004600083600190039350838152602001908152602001600020549050612311565b809250505061237b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061239c826122b2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612403576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612424612380565b73ffffffffffffffffffffffffffffffffffffffff16148061245357506124528561244d612380565b611fde565b5b806124985750612461612380565b73ffffffffffffffffffffffffffffffffffffffff1661248084610a79565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806124d1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612538576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125458585856001612bc9565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61264286612bcf565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156126cc5760006001840190506000600460008381526020019081526020016000205414156126ca5760005481146126c9578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127348585856001612bd9565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61281b828260405180602001604052806000815250612bdf565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612845612380565b8786866040518563ffffffff1660e01b81526004016128679493929190613e41565b602060405180830381600087803b15801561288157600080fd5b505af19250505080156128b257506040513d601f19601f820116820180604052508101906128af9190613ea2565b60015b61292c573d80600081146128e2576040519150601f19603f3d011682016040523d82523d6000602084013e6128e7565b606091505b50600081511415612924576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461298e9061368a565b80601f01602080910402602001604051908101604052809291908181526020018280546129ba9061368a565b8015612a075780601f106129dc57610100808354040283529160200191612a07565b820191906000526020600020905b8154815290600101906020018083116129ea57829003601f168201915b5050505050905090565b60606000821415612a59576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b6d565b600082905060005b60008214612a8b578080612a7490613ecf565b915050600a82612a84919061384c565b9150612a61565b60008167ffffffffffffffff811115612aa757612aa661322a565b5b6040519080825280601f01601f191660200182016040528015612ad95781602001600182028036833780820191505090505b5090505b60008514612b6657600182612af29190613f18565b9150600a85612b019190613f4c565b6030612b0d91906138c3565b60f81b818381518110612b2357612b22613f7d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b5f919061384c565b9450612add565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c4c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612c87576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c946000858386612bc9565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612cf960018514612e94565b901b60a042901b612d0986612bcf565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612e0d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dbd600087848060010195508761281f565b612df3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612d4e578260005414612e0857600080fd5b612e78565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612e0e575b816000819055505050612e8e6000858386612bd9565b50505050565b6000819050919050565b828054612eaa9061368a565b90600052602060002090601f016020900481019282612ecc5760008555612f13565b82601f10612ee557805160ff1916838001178555612f13565b82800160010185558215612f13579182015b82811115612f12578251825591602001919060010190612ef7565b5b509050612f209190612f24565b5090565b5b80821115612f3d576000816000905550600101612f25565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f8a81612f55565b8114612f9557600080fd5b50565b600081359050612fa781612f81565b92915050565b600060208284031215612fc357612fc2612f4b565b5b6000612fd184828501612f98565b91505092915050565b60008115159050919050565b612fef81612fda565b82525050565b600060208201905061300a6000830184612fe6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561304a57808201518184015260208101905061302f565b83811115613059576000848401525b50505050565b6000601f19601f8301169050919050565b600061307b82613010565b613085818561301b565b935061309581856020860161302c565b61309e8161305f565b840191505092915050565b600060208201905081810360008301526130c38184613070565b905092915050565b6000819050919050565b6130de816130cb565b81146130e957600080fd5b50565b6000813590506130fb816130d5565b92915050565b60006020828403121561311757613116612f4b565b5b6000613125848285016130ec565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131598261312e565b9050919050565b6131698161314e565b82525050565b60006020820190506131846000830184613160565b92915050565b6131938161314e565b811461319e57600080fd5b50565b6000813590506131b08161318a565b92915050565b600080604083850312156131cd576131cc612f4b565b5b60006131db858286016131a1565b92505060206131ec858286016130ec565b9150509250929050565b6131ff816130cb565b82525050565b600060208201905061321a60008301846131f6565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6132628261305f565b810181811067ffffffffffffffff821117156132815761328061322a565b5b80604052505050565b6000613294612f41565b90506132a08282613259565b919050565b600067ffffffffffffffff8211156132c0576132bf61322a565b5b6132c98261305f565b9050602081019050919050565b82818337600083830152505050565b60006132f86132f3846132a5565b61328a565b90508281526020810184848401111561331457613313613225565b5b61331f8482856132d6565b509392505050565b600082601f83011261333c5761333b613220565b5b813561334c8482602086016132e5565b91505092915050565b60006020828403121561336b5761336a612f4b565b5b600082013567ffffffffffffffff81111561338957613388612f50565b5b61339584828501613327565b91505092915050565b6133a781612fda565b81146133b257600080fd5b50565b6000813590506133c48161339e565b92915050565b6000602082840312156133e0576133df612f4b565b5b60006133ee848285016133b5565b91505092915050565b6000806000606084860312156134105761340f612f4b565b5b600061341e868287016131a1565b935050602061342f868287016131a1565b9250506040613440868287016130ec565b9150509250925092565b6000602082840312156134605761345f612f4b565b5b600061346e848285016131a1565b91505092915050565b6000806040838503121561348e5761348d612f4b565b5b600061349c858286016131a1565b92505060206134ad858286016133b5565b9150509250929050565b600067ffffffffffffffff8211156134d2576134d161322a565b5b6134db8261305f565b9050602081019050919050565b60006134fb6134f6846134b7565b61328a565b90508281526020810184848401111561351757613516613225565b5b6135228482856132d6565b509392505050565b600082601f83011261353f5761353e613220565b5b813561354f8482602086016134e8565b91505092915050565b6000806000806080858703121561357257613571612f4b565b5b6000613580878288016131a1565b9450506020613591878288016131a1565b93505060406135a2878288016130ec565b925050606085013567ffffffffffffffff8111156135c3576135c2612f50565b5b6135cf8782880161352a565b91505092959194509250565b600080604083850312156135f2576135f1612f4b565b5b6000613600858286016131a1565b9250506020613611858286016131a1565b9150509250929050565b6000806040838503121561363257613631612f4b565b5b6000613640858286016130ec565b9250506020613651858286016131a1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136a257607f821691505b602082108114156136b6576136b561365b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136f260208361301b565b91506136fd826136bc565b602082019050919050565b60006020820190508181036000830152613721816136e5565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061375e601f8361301b565b915061376982613728565b602082019050919050565b6000602082019050818103600083015261378d81613751565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137ce826130cb565b91506137d9836130cb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561381257613811613794565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613857826130cb565b9150613862836130cb565b9250826138725761387161381d565b5b828204905092915050565b600081905092915050565b50565b600061389860008361387d565b91506138a382613888565b600082019050919050565b60006138b98261388b565b9150819050919050565b60006138ce826130cb565b91506138d9836130cb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561390e5761390d613794565b5b828201905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b600061394f601d8361301b565b915061395a82613919565b602082019050919050565b6000602082019050818103600083015261397e81613942565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006139bb60178361301b565b91506139c682613985565b602082019050919050565b600060208201905081810360008301526139ea816139ae565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613a2760148361301b565b9150613a32826139f1565b602082019050919050565b60006020820190508181036000830152613a5681613a1a565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613a9360148361301b565b9150613a9e82613a5d565b602082019050919050565b60006020820190508181036000830152613ac281613a86565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613aff601e8361301b565b9150613b0a82613ac9565b602082019050919050565b60006020820190508181036000830152613b2e81613af2565b9050919050565b7f496e76616c6964206d696e7420616d6f756e74206f72206d696e746564206d6160008201527f7820616d6f756e74210000000000000000000000000000000000000000000000602082015250565b6000613b9160298361301b565b9150613b9c82613b35565b604082019050919050565b60006020820190508181036000830152613bc081613b84565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c23602f8361301b565b9150613c2e82613bc7565b604082019050919050565b60006020820190508181036000830152613c5281613c16565b9050919050565b600081905092915050565b6000613c6f82613010565b613c798185613c59565b9350613c8981856020860161302c565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613cb78161368a565b613cc18186613c59565b94506001821660008114613cdc5760018114613ced57613d20565b60ff19831686528186019350613d20565b613cf685613c95565b60005b83811015613d1857815481890152600182019150602081019050613cf9565b838801955050505b50505092915050565b6000613d358286613c64565b9150613d418285613c64565b9150613d4d8284613caa565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613db660268361301b565b9150613dc182613d5a565b604082019050919050565b60006020820190508181036000830152613de581613da9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e1382613dec565b613e1d8185613df7565b9350613e2d81856020860161302c565b613e368161305f565b840191505092915050565b6000608082019050613e566000830187613160565b613e636020830186613160565b613e7060408301856131f6565b8181036060830152613e828184613e08565b905095945050505050565b600081519050613e9c81612f81565b92915050565b600060208284031215613eb857613eb7612f4b565b5b6000613ec684828501613e8d565b91505092915050565b6000613eda826130cb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f0d57613f0c613794565b5b600182019050919050565b6000613f23826130cb565b9150613f2e836130cb565b925082821015613f4157613f40613794565b5b828203905092915050565b6000613f57826130cb565b9150613f62836130cb565b925082613f7257613f7161381d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220bee4d2bb80c4faf15f283e253b36dd06f9486d12f4920b46b531de5020efabfd64736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e446567656e20446973747269637400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044444334400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e697066733a2f2f6261667962656961627774747a69617a78666979796436643466676e7579746c71663266686664676163376a7765776764766d726768337263766d2f68696464656e2e6a736f6e000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Degen District
Arg [1] : _tokenSymbol (string): DD3D
Arg [2] : _hiddenMetadataUri (string): ipfs://bafybeiabwttziazxfiyyd6d4fgnuytlqf2fhfdgac7jwewgdvmrgh3rcvm/hidden.json

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 446567656e204469737472696374000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4444334400000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000004e
Arg [8] : 697066733a2f2f6261667962656961627774747a69617a786669797964366434
Arg [9] : 66676e7579746c71663266686664676163376a7765776764766d726768337263
Arg [10] : 766d2f68696464656e2e6a736f6e000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46661:4648:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13088:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18101:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20169:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49337:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19629:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47052:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46867:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50070:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50176:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12142:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46980:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21055:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47018:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50259:824;;;;;;;;;;;;;:::i;:::-;;21296:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49257:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46941:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49826:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47164:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46791:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47197:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46758:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17890:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13767:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45759:103;;;;;;;;;;;;;:::i;:::-;;49964:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45108:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49453:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18270:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48357:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20445:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46829:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21552:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49621:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48806:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46905:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51089:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49738:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20824:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48492:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46017:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13088:615;13173:4;13488:10;13473:25;;:11;:25;;;;:102;;;;13565:10;13550:25;;:11;:25;;;;13473:102;:179;;;;13642:10;13627:25;;:11;:25;;;;13473:179;13453:199;;13088:615;;;:::o;18101:100::-;18155:13;18188:5;18181:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18101:100;:::o;20169:204::-;20237:7;20262:16;20270:7;20262;:16::i;:::-;20257:64;;20287:34;;;;;;;;;;;;;;20257:64;20341:15;:24;20357:7;20341:24;;;;;;;;;;;;;;;;;;;;;20334:31;;20169:204;;;:::o;49337:110::-;45339:12;:10;:12::i;:::-;45328:23;;:7;:5;:7::i;:::-;:23;;;45320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49427:14:::1;49411:13;:30;;;;49337:110:::0;:::o;19629:474::-;19702:13;19734:27;19753:7;19734:18;:27::i;:::-;19702:61;;19784:5;19778:11;;:2;:11;;;19774:48;;;19798:24;;;;;;;;;;;;;;19774:48;19862:5;19839:28;;:19;:17;:19::i;:::-;:28;;;19835:175;;19887:44;19904:5;19911:19;:17;:19::i;:::-;19887:16;:44::i;:::-;19882:128;;19959:35;;;;;;;;;;;;;;19882:128;19835:175;20049:2;20022:15;:24;20038:7;20022:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20087:7;20083:2;20067:28;;20076:5;20067:28;;;;;;;;;;;;19691:412;19629:474;;:::o;47052:45::-;;;;:::o;46867:33::-;;;;:::o;50070:100::-;45339:12;:10;:12::i;:::-;45328:23;;:7;:5;:7::i;:::-;:23;;;45320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50154:10:::1;50142:9;:22;;;;;;;;;;;;:::i;:::-;;50070:100:::0;:::o;50176:77::-;45339:12;:10;:12::i;:::-;45328:23;;:7;:5;:7::i;:::-;:23;;;45320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50241:6:::1;50232;;:15;;;;;;;;;;;;;;;;;;50176:77:::0;:::o;12142:315::-;12195:7;12423:15;:13;:15::i;:::-;12408:12;;12392:13;;:28;:46;12385:53;;12142:315;:::o;46980:33::-;;;;:::o;21055:170::-;21189:28;21199:4;21205:2;21209:7;21189:9;:28::i;:::-;21055:170;;;:::o;47018:29::-;;;;:::o;50259:824::-;45339:12;:10;:12::i;:::-;45328:23;;:7;:5;:7::i;:::-;:23;;;45320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42251:1:::1;42849:7;;:19;;42841:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;42251:1;42982:7;:18;;;;50316:14:::2;50362:3;50357:2;50333:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;50316:49;;50372:16;50420:3;50415:2;50391:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;50372:51;;50430:12;50474:3;50469:2;50445:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;50430:47;;50484:12;50528:3;50523:2;50499:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;50484:47;;50541:15;50570:42;50562:56;;50626:6;50562:75;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50540:97;;;50652:10;50644:19;;;::::0;::::2;;50673:20;50707:42;50699:56;;50763:8;50699:77;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50672:104;;;50791:15;50783:24;;;::::0;::::2;;50817:16;50847:42;50839:56;;50903:4;50839:73;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50816:96;;;50927:11;50919:20;;;::::0;::::2;;50949:16;50979:42;50971:56;;51035:4;50971:73;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50948:96;;;51059:11;51051:20;;;::::0;::::2;;50309:774;;;;;;;;42207:1:::1;43161:7;:22;;;;50259:824::o:0;21296:185::-;21434:39;21451:4;21457:2;21461:7;21434:39;;;;;;;;;;;;:16;:39::i;:::-;21296:185;;;:::o;49257:74::-;45339:12;:10;:12::i;:::-;45328:23;;:7;:5;:7::i;:::-;:23;;;45320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49320:5:::1;49313:4;:12;;;;49257:74:::0;:::o;46941:34::-;;;;:::o;49826:132::-;45339:12;:10;:12::i;:::-;45328:23;;:7;:5;:7::i;:::-;:23;;;45320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49934:18:::1;49914:17;:38;;;;;;;;;;;;:::i;:::-;;49826:132:::0;:::o;47164:28::-;;;;;;;;;;;;;:::o;46791:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47197:25::-;;;;;;;;;;;;;:::o;46758:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17890:144::-;17954:7;17997:27;18016:7;17997:18;:27::i;:::-;17974:52;;17890:144;;;:::o;13767:224::-;13831:7;13872:1;13855:19;;:5;:19;;;13851:60;;;13883:28;;;;;;;;;;;;;;13851:60;9106:13;13929:18;:25;13948:5;13929:25;;;;;;;;;;;;;;;;:54;13922:61;;13767:224;;;:::o;45759:103::-;45339:12;:10;:12::i;:::-;45328:23;;:7;:5;:7::i;:::-;:23;;;45320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45824:30:::1;45851:1;45824:18;:30::i;:::-;45759:103::o:0;49964:100::-;45339:12;:10;:12::i;:::-;45328:23;;:7;:5;:7::i;:::-;:23;;;45320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50048:10:::1;50036:9;:22;;;;;;;;;;;;:::i;:::-;;49964:100:::0;:::o;45108:87::-;45154:7;45181:6;;;;;;;;;;;45174:13;;45108:87;:::o;49453:162::-;45339:12;:10;:12::i;:::-;45328:23;;:7;:5;:7::i;:::-;:23;;;45320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49582:27:::1;49553:26;:56;;;;49453:162:::0;:::o;18270:104::-;18326:13;18359:7;18352:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18270:104;:::o;48357:127::-;48422:11;47500:16;47519:4;;47500:23;;47530:11;47592:1;47576:13;;:17;;;;:::i;:::-;47562:11;47546:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:47;47545:128;;;;;47646:26;;47631:11;47599:17;:29;47617:10;47599:29;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:73;;47545:128;47530:144;;47687:6;47683:43;;;47717:1;47706:12;;47683:43;47769:8;47755:11;:22;;;;:::i;:::-;47742:9;:35;;47734:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;47827:6;;;;;;;;;;;47826:7;47818:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;47907:9;;47892:11;47876:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;47868:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;47970:1;47956:11;:15;:43;;;;;47990:9;;47975:11;:24;;47956:43;47948:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;48052:10;48039:23;;:9;:23;;;48031:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;48134:1;48120:11;:15;:74;;;;;48181:13;;48166:11;48139:24;48152:10;48139:12;:24::i;:::-;:38;;;;:::i;:::-;:55;;48120:74;48104:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;48267:6;48263:75;;;48319:11;48286:17;:29;48304:10;48286:29;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;48263:75;48442:36:::1;48452:12;:10;:12::i;:::-;48466:11;48442:9;:36::i;:::-;47487:864:::0;;48357:127;;:::o;20445:308::-;20556:19;:17;:19::i;:::-;20544:31;;:8;:31;;;20540:61;;;20584:17;;;;;;;;;;;;;;20540:61;20666:8;20614:18;:39;20633:19;:17;:19::i;:::-;20614:39;;;;;;;;;;;;;;;:49;20654:8;20614:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20726:8;20690:55;;20705:19;:17;:19::i;:::-;20690:55;;;20736:8;20690:55;;;;;;:::i;:::-;;;;;;;;20445:308;;:::o;46829:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21552:396::-;21719:28;21729:4;21735:2;21739:7;21719:9;:28::i;:::-;21780:1;21762:2;:14;;;:19;21758:183;;21801:56;21832:4;21838:2;21842:7;21851:5;21801:30;:56::i;:::-;21796:145;;21885:40;;;;;;;;;;;;;;21796:145;21758:183;21552:396;;;;:::o;49621:111::-;45339:12;:10;:12::i;:::-;45328:23;;:7;:5;:7::i;:::-;:23;;;45320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49712:14:::1;49696:13;:30;;;;49621:111:::0;:::o;48806:445::-;48880:13;48910:17;48918:8;48910:7;:17::i;:::-;48902:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49004:5;48992:17;;:8;;;;;;;;;;;:17;;;48988:64;;;49027:17;49020:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48988:64;49060:28;49091:10;:8;:10::i;:::-;49060:41;;49146:1;49121:14;49115:28;:32;:130;;;;;;;;;;;;;;;;;49183:14;49199:19;:8;:17;:19::i;:::-;49220:9;49166:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49115:130;49108:137;;;48806:445;;;;:::o;46905:31::-;;;;:::o;51089:107::-;51147:7;51170:20;51184:5;51170:13;:20::i;:::-;51163:27;;51089:107;;;:::o;49738:81::-;45339:12;:10;:12::i;:::-;45328:23;;:7;:5;:7::i;:::-;:23;;;45320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49807:6:::1;49796:8;;:17;;;;;;;;;;;;;;;;;;49738:81:::0;:::o;20824:164::-;20921:4;20945:18;:25;20964:5;20945:25;;;;;;;;;;;;;;;:35;20971:8;20945:35;;;;;;;;;;;;;;;;;;;;;;;;;20938:42;;20824:164;;;;:::o;48492:207::-;45339:12;:10;:12::i;:::-;45328:23;;:7;:5;:7::i;:::-;:23;;;45320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48619:9:::1;;48604:11;48588:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48580:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48660:33;48670:9;48681:11;48660:9;:33::i;:::-;48492:207:::0;;:::o;46017:201::-;45339:12;:10;:12::i;:::-;45328:23;;:7;:5;:7::i;:::-;:23;;;45320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46126:1:::1;46106:22;;:8;:22;;;;46098:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46182:28;46201:8;46182:18;:28::i;:::-;46017:201:::0;:::o;22203:273::-;22260:4;22316:7;22297:15;:13;:15::i;:::-;:26;;:66;;;;;22350:13;;22340:7;:23;22297:66;:152;;;;;22448:1;9876:8;22401:17;:26;22419:7;22401:26;;;;;;;;;;;;:43;:48;22297:152;22277:172;;22203:273;;;:::o;43855:98::-;43908:7;43935:10;43928:17;;43855:98;:::o;15405:1129::-;15472:7;15492:12;15507:7;15492:22;;15575:4;15556:15;:13;:15::i;:::-;:23;15552:915;;15609:13;;15602:4;:20;15598:869;;;15647:14;15664:17;:23;15682:4;15664:23;;;;;;;;;;;;15647:40;;15780:1;9876:8;15753:6;:23;:28;15749:699;;;16272:113;16289:1;16279:6;:11;16272:113;;;16332:17;:25;16350:6;;;;;;;16332:25;;;;;;;;;;;;16323:34;;16272:113;;;16418:6;16411:13;;;;;;15749:699;15624:843;15598:869;15552:915;16495:31;;;;;;;;;;;;;;15405:1129;;;;:::o;36185:105::-;36245:7;36272:10;36265:17;;36185:105;:::o;48705:95::-;48770:7;48793:1;48786:8;;48705:95;:::o;27442:2515::-;27557:27;27587;27606:7;27587:18;:27::i;:::-;27557:57;;27672:4;27631:45;;27647:19;27631:45;;;27627:86;;27685:28;;;;;;;;;;;;;;27627:86;27726:22;27775:4;27752:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27796:43;27813:4;27819:19;:17;:19::i;:::-;27796:16;:43::i;:::-;27752:87;:147;;;;27880:19;:17;:19::i;:::-;27856:43;;:20;27868:7;27856:11;:20::i;:::-;:43;;;27752:147;27726:174;;27918:17;27913:66;;27944:35;;;;;;;;;;;;;;27913:66;28008:1;27994:16;;:2;:16;;;27990:52;;;28019:23;;;;;;;;;;;;;;27990:52;28055:43;28077:4;28083:2;28087:7;28096:1;28055:21;:43::i;:::-;28171:15;:24;28187:7;28171:24;;;;;;;;;;;;28164:31;;;;;;;;;;;28563:18;:24;28582:4;28563:24;;;;;;;;;;;;;;;;28561:26;;;;;;;;;;;;28632:18;:22;28651:2;28632:22;;;;;;;;;;;;;;;;28630:24;;;;;;;;;;;10158:8;9760:3;29013:15;:41;;28971:21;28989:2;28971:17;:21::i;:::-;:84;:128;28925:17;:26;28943:7;28925:26;;;;;;;;;;;:174;;;;29269:1;10158:8;29219:19;:46;:51;29215:626;;;29291:19;29323:1;29313:7;:11;29291:33;;29480:1;29446:17;:30;29464:11;29446:30;;;;;;;;;;;;:35;29442:384;;;29584:13;;29569:11;:28;29565:242;;29764:19;29731:17;:30;29749:11;29731:30;;;;;;;;;;;:52;;;;29565:242;29442:384;29272:569;29215:626;29888:7;29884:2;29869:27;;29878:4;29869:27;;;;;;;;;;;;29907:42;29928:4;29934:2;29938:7;29947:1;29907:20;:42::i;:::-;27546:2411;;27442:2515;;;:::o;46378:191::-;46452:16;46471:6;;;;;;;;;;;46452:25;;46497:8;46488:6;;:17;;;;;;;;;;;;;;;;;;46552:8;46521:40;;46542:8;46521:40;;;;;;;;;;;;46441:128;46378:191;:::o;22560:104::-;22629:27;22639:2;22643:8;22629:27;;;;;;;;;;;;:9;:27::i;:::-;22560:104;;:::o;33654:716::-;33817:4;33863:2;33838:45;;;33884:19;:17;:19::i;:::-;33905:4;33911:7;33920:5;33838:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33834:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34138:1;34121:6;:13;:18;34117:235;;;34167:40;;;;;;;;;;;;;;34117:235;34310:6;34304:13;34295:6;34291:2;34287:15;34280:38;33834:529;34007:54;;;33997:64;;;:6;:64;;;;33990:71;;;33654:716;;;;;;:::o;51202:104::-;51262:13;51291:9;51284:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51202:104;:::o;38705:723::-;38761:13;38991:1;38982:5;:10;38978:53;;;39009:10;;;;;;;;;;;;;;;;;;;;;38978:53;39041:12;39056:5;39041:20;;39072:14;39097:78;39112:1;39104:4;:9;39097:78;;39130:8;;;;;:::i;:::-;;;;39161:2;39153:10;;;;;:::i;:::-;;;39097:78;;;39185:19;39217:6;39207:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39185:39;;39235:154;39251:1;39242:5;:10;39235:154;;39279:1;39269:11;;;;;:::i;:::-;;;39346:2;39338:5;:10;;;;:::i;:::-;39325:2;:24;;;;:::i;:::-;39312:39;;39295:6;39302;39295:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;39375:2;39366:11;;;;;:::i;:::-;;;39235:154;;;39413:6;39399:21;;;;;38705:723;;;;:::o;14073:176::-;14134:7;9106:13;9243:2;14162:18;:25;14181:5;14162:25;;;;;;;;;;;;;;;;:49;;14161:80;14154:87;;14073:176;;;:::o;35018:159::-;;;;;:::o;19190:148::-;19254:14;19315:5;19305:15;;19190:148;;;:::o;35836:158::-;;;;;:::o;23037:2236::-;23160:20;23183:13;;23160:36;;23225:1;23211:16;;:2;:16;;;23207:48;;;23236:19;;;;;;;;;;;;;;23207:48;23282:1;23270:8;:13;23266:44;;;23292:18;;;;;;;;;;;;;;23266:44;23323:61;23353:1;23357:2;23361:12;23375:8;23323:21;:61::i;:::-;23927:1;9243:2;23898:1;:25;;23897:31;23885:8;:44;23859:18;:22;23878:2;23859:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;10023:3;24328:29;24355:1;24343:8;:13;24328:14;:29::i;:::-;:56;;9760:3;24265:15;:41;;24223:21;24241:2;24223:17;:21::i;:::-;:84;:162;24172:17;:31;24190:12;24172:31;;;;;;;;;;;:213;;;;24402:20;24425:12;24402:35;;24452:11;24481:8;24466:12;:23;24452:37;;24528:1;24510:2;:14;;;:19;24506:635;;24550:313;24606:12;24602:2;24581:38;;24598:1;24581:38;;;;;;;;;;;;24647:69;24686:1;24690:2;24694:14;;;;;;24710:5;24647:30;:69::i;:::-;24642:174;;24752:40;;;;;;;;;;;;;;24642:174;24858:3;24843:12;:18;24550:313;;24944:12;24927:13;;:29;24923:43;;24958:8;;;24923:43;24506:635;;;25007:119;25063:14;;;;;;25059:2;25038:40;;25055:1;25038:40;;;;;;;;;;;;25121:3;25106:12;:18;25007:119;;24506:635;25171:12;25155:13;:28;;;;23636:1559;;25205:60;25234:1;25238:2;25242:12;25256:8;25205:20;:60::i;:::-;23149:2124;23037:2236;;;:::o;19425:142::-;19483:14;19544:5;19534:15;;19425:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:::-;12518:6;12526;12575:2;12563:9;12554:7;12550:23;12546:32;12543:119;;;12581:79;;:::i;:::-;12543:119;12701:1;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12672:117;12828:2;12854:53;12899:7;12890:6;12879:9;12875:22;12854:53;:::i;:::-;12844:63;;12799:118;12450:474;;;;;:::o;12930:180::-;12978:77;12975:1;12968:88;13075:4;13072:1;13065:15;13099:4;13096:1;13089:15;13116:320;13160:6;13197:1;13191:4;13187:12;13177:22;;13244:1;13238:4;13234:12;13265:18;13255:81;;13321:4;13313:6;13309:17;13299:27;;13255:81;13383:2;13375:6;13372:14;13352:18;13349:38;13346:84;;;13402:18;;:::i;:::-;13346:84;13167:269;13116:320;;;:::o;13442:182::-;13582:34;13578:1;13570:6;13566:14;13559:58;13442:182;:::o;13630:366::-;13772:3;13793:67;13857:2;13852:3;13793:67;:::i;:::-;13786:74;;13869:93;13958:3;13869:93;:::i;:::-;13987:2;13982:3;13978:12;13971:19;;13630:366;;;:::o;14002:419::-;14168:4;14206:2;14195:9;14191:18;14183:26;;14255:9;14249:4;14245:20;14241:1;14230:9;14226:17;14219:47;14283:131;14409:4;14283:131;:::i;:::-;14275:139;;14002:419;;;:::o;14427:181::-;14567:33;14563:1;14555:6;14551:14;14544:57;14427:181;:::o;14614:366::-;14756:3;14777:67;14841:2;14836:3;14777:67;:::i;:::-;14770:74;;14853:93;14942:3;14853:93;:::i;:::-;14971:2;14966:3;14962:12;14955:19;;14614:366;;;:::o;14986:419::-;15152:4;15190:2;15179:9;15175:18;15167:26;;15239:9;15233:4;15229:20;15225:1;15214:9;15210:17;15203:47;15267:131;15393:4;15267:131;:::i;:::-;15259:139;;14986:419;;;:::o;15411:180::-;15459:77;15456:1;15449:88;15556:4;15553:1;15546:15;15580:4;15577:1;15570:15;15597:348;15637:7;15660:20;15678:1;15660:20;:::i;:::-;15655:25;;15694:20;15712:1;15694:20;:::i;:::-;15689:25;;15882:1;15814:66;15810:74;15807:1;15804:81;15799:1;15792:9;15785:17;15781:105;15778:131;;;15889:18;;:::i;:::-;15778:131;15937:1;15934;15930:9;15919:20;;15597:348;;;;:::o;15951:180::-;15999:77;15996:1;15989:88;16096:4;16093:1;16086:15;16120:4;16117:1;16110:15;16137:185;16177:1;16194:20;16212:1;16194:20;:::i;:::-;16189:25;;16228:20;16246:1;16228:20;:::i;:::-;16223:25;;16267:1;16257:35;;16272:18;;:::i;:::-;16257:35;16314:1;16311;16307:9;16302:14;;16137:185;;;;:::o;16328:147::-;16429:11;16466:3;16451:18;;16328:147;;;;:::o;16481:114::-;;:::o;16601:398::-;16760:3;16781:83;16862:1;16857:3;16781:83;:::i;:::-;16774:90;;16873:93;16962:3;16873:93;:::i;:::-;16991:1;16986:3;16982:11;16975:18;;16601:398;;;:::o;17005:379::-;17189:3;17211:147;17354:3;17211:147;:::i;:::-;17204:154;;17375:3;17368:10;;17005:379;;;:::o;17390:305::-;17430:3;17449:20;17467:1;17449:20;:::i;:::-;17444:25;;17483:20;17501:1;17483:20;:::i;:::-;17478:25;;17637:1;17569:66;17565:74;17562:1;17559:81;17556:107;;;17643:18;;:::i;:::-;17556:107;17687:1;17684;17680:9;17673:16;;17390:305;;;;:::o;17701:179::-;17841:31;17837:1;17829:6;17825:14;17818:55;17701:179;:::o;17886:366::-;18028:3;18049:67;18113:2;18108:3;18049:67;:::i;:::-;18042:74;;18125:93;18214:3;18125:93;:::i;:::-;18243:2;18238:3;18234:12;18227:19;;17886:366;;;:::o;18258:419::-;18424:4;18462:2;18451:9;18447:18;18439:26;;18511:9;18505:4;18501:20;18497:1;18486:9;18482:17;18475:47;18539:131;18665:4;18539:131;:::i;:::-;18531:139;;18258:419;;;:::o;18683:173::-;18823:25;18819:1;18811:6;18807:14;18800:49;18683:173;:::o;18862:366::-;19004:3;19025:67;19089:2;19084:3;19025:67;:::i;:::-;19018:74;;19101:93;19190:3;19101:93;:::i;:::-;19219:2;19214:3;19210:12;19203:19;;18862:366;;;:::o;19234:419::-;19400:4;19438:2;19427:9;19423:18;19415:26;;19487:9;19481:4;19477:20;19473:1;19462:9;19458:17;19451:47;19515:131;19641:4;19515:131;:::i;:::-;19507:139;;19234:419;;;:::o;19659:170::-;19799:22;19795:1;19787:6;19783:14;19776:46;19659:170;:::o;19835:366::-;19977:3;19998:67;20062:2;20057:3;19998:67;:::i;:::-;19991:74;;20074:93;20163:3;20074:93;:::i;:::-;20192:2;20187:3;20183:12;20176:19;;19835:366;;;:::o;20207:419::-;20373:4;20411:2;20400:9;20396:18;20388:26;;20460:9;20454:4;20450:20;20446:1;20435:9;20431:17;20424:47;20488:131;20614:4;20488:131;:::i;:::-;20480:139;;20207:419;;;:::o;20632:170::-;20772:22;20768:1;20760:6;20756:14;20749:46;20632:170;:::o;20808:366::-;20950:3;20971:67;21035:2;21030:3;20971:67;:::i;:::-;20964:74;;21047:93;21136:3;21047:93;:::i;:::-;21165:2;21160:3;21156:12;21149:19;;20808:366;;;:::o;21180:419::-;21346:4;21384:2;21373:9;21369:18;21361:26;;21433:9;21427:4;21423:20;21419:1;21408:9;21404:17;21397:47;21461:131;21587:4;21461:131;:::i;:::-;21453:139;;21180:419;;;:::o;21605:180::-;21745:32;21741:1;21733:6;21729:14;21722:56;21605:180;:::o;21791:366::-;21933:3;21954:67;22018:2;22013:3;21954:67;:::i;:::-;21947:74;;22030:93;22119:3;22030:93;:::i;:::-;22148:2;22143:3;22139:12;22132:19;;21791:366;;;:::o;22163:419::-;22329:4;22367:2;22356:9;22352:18;22344:26;;22416:9;22410:4;22406:20;22402:1;22391:9;22387:17;22380:47;22444:131;22570:4;22444:131;:::i;:::-;22436:139;;22163:419;;;:::o;22588:228::-;22728:34;22724:1;22716:6;22712:14;22705:58;22797:11;22792:2;22784:6;22780:15;22773:36;22588:228;:::o;22822:366::-;22964:3;22985:67;23049:2;23044:3;22985:67;:::i;:::-;22978:74;;23061:93;23150:3;23061:93;:::i;:::-;23179:2;23174:3;23170:12;23163:19;;22822:366;;;:::o;23194:419::-;23360:4;23398:2;23387:9;23383:18;23375:26;;23447:9;23441:4;23437:20;23433:1;23422:9;23418:17;23411:47;23475:131;23601:4;23475:131;:::i;:::-;23467:139;;23194:419;;;:::o;23619:234::-;23759:34;23755:1;23747:6;23743:14;23736:58;23828:17;23823:2;23815:6;23811:15;23804:42;23619:234;:::o;23859:366::-;24001:3;24022:67;24086:2;24081:3;24022:67;:::i;:::-;24015:74;;24098:93;24187:3;24098:93;:::i;:::-;24216:2;24211:3;24207:12;24200:19;;23859:366;;;:::o;24231:419::-;24397:4;24435:2;24424:9;24420:18;24412:26;;24484:9;24478:4;24474:20;24470:1;24459:9;24455:17;24448:47;24512:131;24638:4;24512:131;:::i;:::-;24504:139;;24231:419;;;:::o;24656:148::-;24758:11;24795:3;24780:18;;24656:148;;;;:::o;24810:377::-;24916:3;24944:39;24977:5;24944:39;:::i;:::-;24999:89;25081:6;25076:3;24999:89;:::i;:::-;24992:96;;25097:52;25142:6;25137:3;25130:4;25123:5;25119:16;25097:52;:::i;:::-;25174:6;25169:3;25165:16;25158:23;;24920:267;24810:377;;;;:::o;25193:141::-;25242:4;25265:3;25257:11;;25288:3;25285:1;25278:14;25322:4;25319:1;25309:18;25301:26;;25193:141;;;:::o;25364:845::-;25467:3;25504:5;25498:12;25533:36;25559:9;25533:36;:::i;:::-;25585:89;25667:6;25662:3;25585:89;:::i;:::-;25578:96;;25705:1;25694:9;25690:17;25721:1;25716:137;;;;25867:1;25862:341;;;;25683:520;;25716:137;25800:4;25796:9;25785;25781:25;25776:3;25769:38;25836:6;25831:3;25827:16;25820:23;;25716:137;;25862:341;25929:38;25961:5;25929:38;:::i;:::-;25989:1;26003:154;26017:6;26014:1;26011:13;26003:154;;;26091:7;26085:14;26081:1;26076:3;26072:11;26065:35;26141:1;26132:7;26128:15;26117:26;;26039:4;26036:1;26032:12;26027:17;;26003:154;;;26186:6;26181:3;26177:16;26170:23;;25869:334;;25683:520;;25471:738;;25364:845;;;;:::o;26215:589::-;26440:3;26462:95;26553:3;26544:6;26462:95;:::i;:::-;26455:102;;26574:95;26665:3;26656:6;26574:95;:::i;:::-;26567:102;;26686:92;26774:3;26765:6;26686:92;:::i;:::-;26679:99;;26795:3;26788:10;;26215:589;;;;;;:::o;26810:225::-;26950:34;26946:1;26938:6;26934:14;26927:58;27019:8;27014:2;27006:6;27002:15;26995:33;26810:225;:::o;27041:366::-;27183:3;27204:67;27268:2;27263:3;27204:67;:::i;:::-;27197:74;;27280:93;27369:3;27280:93;:::i;:::-;27398:2;27393:3;27389:12;27382:19;;27041:366;;;:::o;27413:419::-;27579:4;27617:2;27606:9;27602:18;27594:26;;27666:9;27660:4;27656:20;27652:1;27641:9;27637:17;27630:47;27694:131;27820:4;27694:131;:::i;:::-;27686:139;;27413:419;;;:::o;27838:98::-;27889:6;27923:5;27917:12;27907:22;;27838:98;;;:::o;27942:168::-;28025:11;28059:6;28054:3;28047:19;28099:4;28094:3;28090:14;28075:29;;27942:168;;;;:::o;28116:360::-;28202:3;28230:38;28262:5;28230:38;:::i;:::-;28284:70;28347:6;28342:3;28284:70;:::i;:::-;28277:77;;28363:52;28408:6;28403:3;28396:4;28389:5;28385:16;28363:52;:::i;:::-;28440:29;28462:6;28440:29;:::i;:::-;28435:3;28431:39;28424:46;;28206:270;28116:360;;;;:::o;28482:640::-;28677:4;28715:3;28704:9;28700:19;28692:27;;28729:71;28797:1;28786:9;28782:17;28773:6;28729:71;:::i;:::-;28810:72;28878:2;28867:9;28863:18;28854:6;28810:72;:::i;:::-;28892;28960:2;28949:9;28945:18;28936:6;28892:72;:::i;:::-;29011:9;29005:4;29001:20;28996:2;28985:9;28981:18;28974:48;29039:76;29110:4;29101:6;29039:76;:::i;:::-;29031:84;;28482:640;;;;;;;:::o;29128:141::-;29184:5;29215:6;29209:13;29200:22;;29231:32;29257:5;29231:32;:::i;:::-;29128:141;;;;:::o;29275:349::-;29344:6;29393:2;29381:9;29372:7;29368:23;29364:32;29361:119;;;29399:79;;:::i;:::-;29361:119;29519:1;29544:63;29599:7;29590:6;29579:9;29575:22;29544:63;:::i;:::-;29534:73;;29490:127;29275:349;;;;:::o;29630:233::-;29669:3;29692:24;29710:5;29692:24;:::i;:::-;29683:33;;29738:66;29731:5;29728:77;29725:103;;;29808:18;;:::i;:::-;29725:103;29855:1;29848:5;29844:13;29837:20;;29630:233;;;:::o;29869:191::-;29909:4;29929:20;29947:1;29929:20;:::i;:::-;29924:25;;29963:20;29981:1;29963:20;:::i;:::-;29958:25;;30002:1;29999;29996:8;29993:34;;;30007:18;;:::i;:::-;29993:34;30052:1;30049;30045:9;30037:17;;29869:191;;;;:::o;30066:176::-;30098:1;30115:20;30133:1;30115:20;:::i;:::-;30110:25;;30149:20;30167:1;30149:20;:::i;:::-;30144:25;;30188:1;30178:35;;30193:18;;:::i;:::-;30178:35;30234:1;30231;30227:9;30222:14;;30066:176;;;;:::o;30248:180::-;30296:77;30293:1;30286:88;30393:4;30390:1;30383:15;30417:4;30414:1;30407:15

Swarm Source

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