ETH Price: $3,409.90 (-2.58%)
Gas: 8 Gwei

Token

Digiuniversity (DUY)
 

Overview

Max Total Supply

2,822 DUY

Holders

1,315

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 DUY
0xd6e56bf63d76fd26100c7931a35a775726b1f40d
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:
Digiuniversity

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 6 : digiuniversity.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import './ownable.sol';
import 'erc721a/contracts/ERC721A.sol';
import '@openzeppelin/contracts/utils/Strings.sol';

contract Digiuniversity is ERC721A, Ownable {
    using Strings for uint256;

    uint256 public maxSupply = 2822;

    uint256 public maxFreeAmount = 1000;

    uint256 public maxFreePerTx = 5;
    
    uint256 public maxFreePerWallet = 1;
    
    uint256 public maxPerTx = 5;
    
    
    uint256 public price = 0.02 ether;

    
    string public baseURI = "";
    string public hiddenURI = "";
    
   
    bool public mintEnabled = false;
    bool public isRevealed = true;
    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("Digiuniversity", "DUY") {
        _safeMint(msg.sender, 15);
    }
    

    function mint(uint256 amount) external payable {
        uint256 cost = price;
        uint256 num = amount > 0 ? amount : 1;
        bool free = ((totalSupply() + num < maxFreeAmount + 1) &&
            (_mintedFreeAmount[msg.sender] + num <= maxFreePerWallet));
        if (free) {
            cost = 0;
            _mintedFreeAmount[msg.sender] += num;
            require(num < maxFreePerTx + 1, "Max per TX reached.");
        } else {
            require(num < maxPerTx + 1, "Max per TX reached.");
        }
        require(tx.origin == msg.sender, "Yo!!!");
        require(mintEnabled, "Minting is not live yet.");
        require(msg.value <= num * cost, "Please send the exact amount.");
        require(totalSupply() + num < maxSupply + 1, "No more");

        _safeMint(msg.sender, num);
    }
 
  function setBaseURI(string memory _baseURI) external onlyOwner {
    baseURI = _baseURI;
  }

  function setHiddenURI(string memory _hiddenURI) external onlyOwner {
    hiddenURI = _hiddenURI;
  }
  function setRevealed(bool _state) external onlyOwner {
    isRevealed = _state;
  }
  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

   if(isRevealed==false)
    return hiddenURI;

    return
      string(abi.encodePacked(baseURI, _tokenId.toString(), ".json"));
  }
    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function setMaxPerTx(uint256 _amount) external onlyOwner {
        maxPerTx = _amount;
    }

    function setMaxFreePerTx(uint256 _amount) external onlyOwner {
        maxFreePerTx = _amount;
    }

    function setMaxFreeAmount(uint256 _amount) external onlyOwner {
        maxFreeAmount = _amount;
    }

    function setMaxFreePerWallet(uint256 _amount) external onlyOwner {
        maxFreePerWallet = _amount;
    }
   
  
    function flipSale() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Transfer failed.");
    }
   
}

File 2 of 6 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 3 of 6 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 6 : ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";
/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 5 of 6 : Context.sol
// SPDX-License-Identifier: MIT

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 6 of 6 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","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":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","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":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenURI","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610b066009556103e8600a556005600b556001600c556005600d5566470de4df820000600e5560405180602001604052806000815250600f908051906020019062000051929190620006f2565b50604051806020016040528060008152506010908051906020019062000079929190620006f2565b506000601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff021916908315150217905550348015620000bd57600080fd5b506040518060400160405280600e81526020017f44696769756e69766572736974790000000000000000000000000000000000008152506040518060400160405280600381526020017f4455590000000000000000000000000000000000000000000000000000000000815250816002908051906020019062000142929190620006f2565b5080600390805190602001906200015b929190620006f2565b506200016c6200023e60201b60201c565b60008190555050506000620001866200024360201b60201c565b905080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200023833600f6200024b60201b60201c565b620009f2565b600090565b600033905090565b6200026d8282604051806020016040528060008152506200027160201b60201c565b5050565b6200028383836200032260201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200031d57600080549050600083820390505b620002cc60008683806001019450866200050960201b60201c565b62000303576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620002b15781600054146200031a57600080fd5b50505b505050565b6000805490506000820362000363576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200037860008483856200066a60201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200040783620003e960008660006200067060201b60201c565b620003fa85620006a060201b60201c565b17620006b060201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114620004aa57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506200046d565b5060008203620004e6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620005046000848385620006db60201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000537620006e160201b60201c565b8786866040518563ffffffff1660e01b81526004016200055b9493929190620008a6565b6020604051808303816000875af19250505080156200059a57506040513d601f19601f820116820180604052508101906200059791906200095c565b60015b62000617573d8060008114620005cd576040519150601f19603f3d011682016040523d82523d6000602084013e620005d2565b606091505b5060008151036200060f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e86200068f868684620006e960201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b8280546200070090620009bd565b90600052602060002090601f01602090048101928262000724576000855562000770565b82601f106200073f57805160ff191683800117855562000770565b8280016001018555821562000770579182015b828111156200076f57825182559160200191906001019062000752565b5b5090506200077f919062000783565b5090565b5b808211156200079e57600081600090555060010162000784565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007cf82620007a2565b9050919050565b620007e181620007c2565b82525050565b6000819050919050565b620007fc81620007e7565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b838110156200083e57808201518184015260208101905062000821565b838111156200084e576000848401525b50505050565b6000601f19601f8301169050919050565b6000620008728262000802565b6200087e81856200080d565b9350620008908185602086016200081e565b6200089b8162000854565b840191505092915050565b6000608082019050620008bd6000830187620007d6565b620008cc6020830186620007d6565b620008db6040830185620007f1565b8181036060830152620008ef818462000865565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6200093681620008ff565b81146200094257600080fd5b50565b60008151905062000956816200092b565b92915050565b600060208284031215620009755762000974620008fa565b5b6000620009858482850162000945565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009d657607f821691505b602082108103620009ec57620009eb6200098e565b5b50919050565b6139038062000a026000396000f3fe6080604052600436106102255760003560e01c80638cc54e7f11610123578063bbaac02f116100ab578063e0a808531161006f578063e0a8085314610778578063e985e9c5146107a1578063f2fde38b146107de578063f892c6e214610807578063f968adbe1461083257610225565b8063bbaac02f14610693578063c6f6f216146106bc578063c87b56dd146106e5578063d123973014610722578063d5abeb011461074d57610225565b8063a035b1fe116100f2578063a035b1fe146105dc578063a0712d6814610607578063a22cb46514610623578063a70273571461064c578063b88d4fde1461067757610225565b80638cc54e7f146105325780638da5cb5b1461055d57806391b7f5ed1461058857806395d89b41146105b157610225565b806342842e0e116101b15780636d7c4a4b116101755780636d7c4a4b1461047357806370a082311461049c578063715018a6146104d95780637ba5e621146104f05780637dc949b21461050757610225565b806342842e0e1461039b57806354214f69146103b757806355f804b3146103e25780636352211e1461040b5780636c0360eb1461044857610225565b80630c23bb3f116101f85780630c23bb3f146102eb57806318160ddd1461031457806323b872dd1461033f5780633ccfd60b1461035b57806340f070a81461037257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612958565b61085d565b60405161025e91906129a0565b60405180910390f35b34801561027357600080fd5b5061027c6108ef565b6040516102899190612a54565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612aac565b610981565b6040516102c69190612b1a565b60405180910390f35b6102e960048036038101906102e49190612b61565b610a00565b005b3480156102f757600080fd5b50610312600480360381019061030d9190612aac565b610b44565b005b34801561032057600080fd5b50610329610bca565b6040516103369190612bb0565b60405180910390f35b61035960048036038101906103549190612bcb565b610be1565b005b34801561036757600080fd5b50610370610f03565b005b34801561037e57600080fd5b5061039960048036038101906103949190612aac565b61102e565b005b6103b560048036038101906103b09190612bcb565b6110b4565b005b3480156103c357600080fd5b506103cc6110d4565b6040516103d991906129a0565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190612d53565b6110e7565b005b34801561041757600080fd5b50610432600480360381019061042d9190612aac565b61117d565b60405161043f9190612b1a565b60405180910390f35b34801561045457600080fd5b5061045d61118f565b60405161046a9190612a54565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190612aac565b61121d565b005b3480156104a857600080fd5b506104c360048036038101906104be9190612d9c565b6112a3565b6040516104d09190612bb0565b60405180910390f35b3480156104e557600080fd5b506104ee61135b565b005b3480156104fc57600080fd5b50610505611498565b005b34801561051357600080fd5b5061051c611540565b6040516105299190612bb0565b60405180910390f35b34801561053e57600080fd5b50610547611546565b6040516105549190612a54565b60405180910390f35b34801561056957600080fd5b506105726115d4565b60405161057f9190612b1a565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190612aac565b6115fe565b005b3480156105bd57600080fd5b506105c6611684565b6040516105d39190612a54565b60405180910390f35b3480156105e857600080fd5b506105f1611716565b6040516105fe9190612bb0565b60405180910390f35b610621600480360381019061061c9190612aac565b61171c565b005b34801561062f57600080fd5b5061064a60048036038101906106459190612df5565b611a39565b005b34801561065857600080fd5b50610661611b44565b60405161066e9190612bb0565b60405180910390f35b610691600480360381019061068c9190612ed6565b611b4a565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190612d53565b611bbd565b005b3480156106c857600080fd5b506106e360048036038101906106de9190612aac565b611c53565b005b3480156106f157600080fd5b5061070c60048036038101906107079190612aac565b611cd9565b6040516107199190612a54565b60405180910390f35b34801561072e57600080fd5b50610737611e03565b60405161074491906129a0565b60405180910390f35b34801561075957600080fd5b50610762611e16565b60405161076f9190612bb0565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a9190612f59565b611e1c565b005b3480156107ad57600080fd5b506107c860048036038101906107c39190612f86565b611eb5565b6040516107d591906129a0565b60405180910390f35b3480156107ea57600080fd5b5061080560048036038101906108009190612d9c565b611f49565b005b34801561081357600080fd5b5061081c6120f4565b6040516108299190612bb0565b60405180910390f35b34801561083e57600080fd5b506108476120fa565b6040516108549190612bb0565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108fe90612ff5565b80601f016020809104026020016040519081016040528092919081815260200182805461092a90612ff5565b80156109775780601f1061094c57610100808354040283529160200191610977565b820191906000526020600020905b81548152906001019060200180831161095a57829003601f168201915b5050505050905090565b600061098c82612100565b6109c2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0b8261117d565b90508073ffffffffffffffffffffffffffffffffffffffff16610a2c61215f565b73ffffffffffffffffffffffffffffffffffffffff1614610a8f57610a5881610a5361215f565b611eb5565b610a8e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b4c612167565b73ffffffffffffffffffffffffffffffffffffffff16610b6a6115d4565b73ffffffffffffffffffffffffffffffffffffffff1614610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb790613072565b60405180910390fd5b80600a8190555050565b6000610bd461216f565b6001546000540303905090565b6000610bec82612174565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c53576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c5f84612240565b91509150610c758187610c7061215f565b612267565b610cc157610c8a86610c8561215f565b611eb5565b610cc0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d27576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3486868660016122ab565b8015610d3f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e0d85610de98888876122b1565b7c0200000000000000000000000000000000000000000000000000000000176122d9565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e935760006001850190506000600460008381526020019081526020016000205403610e91576000548114610e90578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610efb8686866001612304565b505050505050565b610f0b612167565b73ffffffffffffffffffffffffffffffffffffffff16610f296115d4565b73ffffffffffffffffffffffffffffffffffffffff1614610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7690613072565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610fa5906130c3565b60006040518083038185875af1925050503d8060008114610fe2576040519150601f19603f3d011682016040523d82523d6000602084013e610fe7565b606091505b505090508061102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290613124565b60405180910390fd5b50565b611036612167565b73ffffffffffffffffffffffffffffffffffffffff166110546115d4565b73ffffffffffffffffffffffffffffffffffffffff16146110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190613072565b60405180910390fd5b80600b8190555050565b6110cf83838360405180602001604052806000815250611b4a565b505050565b601160019054906101000a900460ff1681565b6110ef612167565b73ffffffffffffffffffffffffffffffffffffffff1661110d6115d4565b73ffffffffffffffffffffffffffffffffffffffff1614611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90613072565b60405180910390fd5b80600f9080519060200190611179929190612849565b5050565b600061118882612174565b9050919050565b600f805461119c90612ff5565b80601f01602080910402602001604051908101604052809291908181526020018280546111c890612ff5565b80156112155780601f106111ea57610100808354040283529160200191611215565b820191906000526020600020905b8154815290600101906020018083116111f857829003601f168201915b505050505081565b611225612167565b73ffffffffffffffffffffffffffffffffffffffff166112436115d4565b73ffffffffffffffffffffffffffffffffffffffff1614611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129090613072565b60405180910390fd5b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361130a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611363612167565b73ffffffffffffffffffffffffffffffffffffffff166113816115d4565b73ffffffffffffffffffffffffffffffffffffffff16146113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90613072565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114a0612167565b73ffffffffffffffffffffffffffffffffffffffff166114be6115d4565b73ffffffffffffffffffffffffffffffffffffffff1614611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b90613072565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b600b5481565b6010805461155390612ff5565b80601f016020809104026020016040519081016040528092919081815260200182805461157f90612ff5565b80156115cc5780601f106115a1576101008083540402835291602001916115cc565b820191906000526020600020905b8154815290600101906020018083116115af57829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611606612167565b73ffffffffffffffffffffffffffffffffffffffff166116246115d4565b73ffffffffffffffffffffffffffffffffffffffff161461167a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167190613072565b60405180910390fd5b80600e8190555050565b60606003805461169390612ff5565b80601f01602080910402602001604051908101604052809291908181526020018280546116bf90612ff5565b801561170c5780601f106116e15761010080835404028352916020019161170c565b820191906000526020600020905b8154815290600101906020018083116116ef57829003601f168201915b5050505050905090565b600e5481565b6000600e5490506000808311611733576001611735565b825b905060006001600a546117489190613173565b82611751610bca565b61175b9190613173565b1080156117b45750600c5482601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117b19190613173565b11155b9050801561186b576000925081601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461180f9190613173565b925050819055506001600b546118259190613173565b8210611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d90613215565b60405180910390fd5b6118bc565b6001600d5461187a9190613173565b82106118bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b290613215565b60405180910390fd5b5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190613281565b60405180910390fd5b601160009054906101000a900460ff16611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611970906132ed565b60405180910390fd5b8282611985919061330d565b3411156119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be906133b3565b60405180910390fd5b60016009546119d69190613173565b826119df610bca565b6119e99190613173565b10611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a209061341f565b60405180910390fd5b611a33338361230a565b50505050565b8060076000611a4661215f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611af361215f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b3891906129a0565b60405180910390a35050565b600c5481565b611b55848484610be1565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bb757611b8084848484612328565b611bb6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611bc5612167565b73ffffffffffffffffffffffffffffffffffffffff16611be36115d4565b73ffffffffffffffffffffffffffffffffffffffff1614611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3090613072565b60405180910390fd5b8060109080519060200190611c4f929190612849565b5050565b611c5b612167565b73ffffffffffffffffffffffffffffffffffffffff16611c796115d4565b73ffffffffffffffffffffffffffffffffffffffff1614611ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc690613072565b60405180910390fd5b80600d8190555050565b6060611ce482612100565b611d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1a906134b1565b60405180910390fd5b60001515601160019054906101000a900460ff16151503611dd05760108054611d4b90612ff5565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7790612ff5565b8015611dc45780601f10611d9957610100808354040283529160200191611dc4565b820191906000526020600020905b815481529060010190602001808311611da757829003601f168201915b50505050509050611dfe565b600f611ddb83612478565b604051602001611dec9291906135ed565b60405160208183030381529060405290505b919050565b601160009054906101000a900460ff1681565b60095481565b611e24612167565b73ffffffffffffffffffffffffffffffffffffffff16611e426115d4565b73ffffffffffffffffffffffffffffffffffffffff1614611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f90613072565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f51612167565b73ffffffffffffffffffffffffffffffffffffffff16611f6f6115d4565b73ffffffffffffffffffffffffffffffffffffffff1614611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc90613072565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202b9061368e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b600d5481565b60008161210b61216f565b1115801561211a575060005482105b8015612158575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b600090565b6000808290508061218361216f565b11612209576000548110156122085760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612206575b600081036121fc5760046000836001900393508381526020019081526020016000205490506121d2565b809250505061223b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86122c88686846125d8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6123248282604051806020016040528060008152506125e1565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261234e61215f565b8786866040518563ffffffff1660e01b81526004016123709493929190613703565b6020604051808303816000875af19250505080156123ac57506040513d601f19601f820116820180604052508101906123a99190613764565b60015b612425573d80600081146123dc576040519150601f19603f3d011682016040523d82523d6000602084013e6123e1565b606091505b50600081510361241d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036124bf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125d3565b600082905060005b600082146124f15780806124da90613791565b915050600a826124ea9190613808565b91506124c7565b60008167ffffffffffffffff81111561250d5761250c612c28565b5b6040519080825280601f01601f19166020018201604052801561253f5781602001600182028036833780820191505090505b5090505b600085146125cc576001826125589190613839565b9150600a85612567919061386d565b60306125739190613173565b60f81b8183815181106125895761258861389e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125c59190613808565b9450612543565b8093505050505b919050565b60009392505050565b6125eb838361267e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461267957600080549050600083820390505b61262b6000868380600101945086612328565b612661576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061261857816000541461267657600080fd5b50505b505050565b600080549050600082036126be576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126cb60008483856122ab565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127428361273360008660006122b1565b61273c85612839565b176122d9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146127e357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506127a8565b506000820361281e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506128346000848385612304565b505050565b60006001821460e11b9050919050565b82805461285590612ff5565b90600052602060002090601f01602090048101928261287757600085556128be565b82601f1061289057805160ff19168380011785556128be565b828001600101855582156128be579182015b828111156128bd5782518255916020019190600101906128a2565b5b5090506128cb91906128cf565b5090565b5b808211156128e85760008160009055506001016128d0565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61293581612900565b811461294057600080fd5b50565b6000813590506129528161292c565b92915050565b60006020828403121561296e5761296d6128f6565b5b600061297c84828501612943565b91505092915050565b60008115159050919050565b61299a81612985565b82525050565b60006020820190506129b56000830184612991565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129f55780820151818401526020810190506129da565b83811115612a04576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a26826129bb565b612a3081856129c6565b9350612a408185602086016129d7565b612a4981612a0a565b840191505092915050565b60006020820190508181036000830152612a6e8184612a1b565b905092915050565b6000819050919050565b612a8981612a76565b8114612a9457600080fd5b50565b600081359050612aa681612a80565b92915050565b600060208284031215612ac257612ac16128f6565b5b6000612ad084828501612a97565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b0482612ad9565b9050919050565b612b1481612af9565b82525050565b6000602082019050612b2f6000830184612b0b565b92915050565b612b3e81612af9565b8114612b4957600080fd5b50565b600081359050612b5b81612b35565b92915050565b60008060408385031215612b7857612b776128f6565b5b6000612b8685828601612b4c565b9250506020612b9785828601612a97565b9150509250929050565b612baa81612a76565b82525050565b6000602082019050612bc56000830184612ba1565b92915050565b600080600060608486031215612be457612be36128f6565b5b6000612bf286828701612b4c565b9350506020612c0386828701612b4c565b9250506040612c1486828701612a97565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c6082612a0a565b810181811067ffffffffffffffff82111715612c7f57612c7e612c28565b5b80604052505050565b6000612c926128ec565b9050612c9e8282612c57565b919050565b600067ffffffffffffffff821115612cbe57612cbd612c28565b5b612cc782612a0a565b9050602081019050919050565b82818337600083830152505050565b6000612cf6612cf184612ca3565b612c88565b905082815260208101848484011115612d1257612d11612c23565b5b612d1d848285612cd4565b509392505050565b600082601f830112612d3a57612d39612c1e565b5b8135612d4a848260208601612ce3565b91505092915050565b600060208284031215612d6957612d686128f6565b5b600082013567ffffffffffffffff811115612d8757612d866128fb565b5b612d9384828501612d25565b91505092915050565b600060208284031215612db257612db16128f6565b5b6000612dc084828501612b4c565b91505092915050565b612dd281612985565b8114612ddd57600080fd5b50565b600081359050612def81612dc9565b92915050565b60008060408385031215612e0c57612e0b6128f6565b5b6000612e1a85828601612b4c565b9250506020612e2b85828601612de0565b9150509250929050565b600067ffffffffffffffff821115612e5057612e4f612c28565b5b612e5982612a0a565b9050602081019050919050565b6000612e79612e7484612e35565b612c88565b905082815260208101848484011115612e9557612e94612c23565b5b612ea0848285612cd4565b509392505050565b600082601f830112612ebd57612ebc612c1e565b5b8135612ecd848260208601612e66565b91505092915050565b60008060008060808587031215612ef057612eef6128f6565b5b6000612efe87828801612b4c565b9450506020612f0f87828801612b4c565b9350506040612f2087828801612a97565b925050606085013567ffffffffffffffff811115612f4157612f406128fb565b5b612f4d87828801612ea8565b91505092959194509250565b600060208284031215612f6f57612f6e6128f6565b5b6000612f7d84828501612de0565b91505092915050565b60008060408385031215612f9d57612f9c6128f6565b5b6000612fab85828601612b4c565b9250506020612fbc85828601612b4c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061300d57607f821691505b6020821081036130205761301f612fc6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061305c6020836129c6565b915061306782613026565b602082019050919050565b6000602082019050818103600083015261308b8161304f565b9050919050565b600081905092915050565b50565b60006130ad600083613092565b91506130b88261309d565b600082019050919050565b60006130ce826130a0565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061310e6010836129c6565b9150613119826130d8565b602082019050919050565b6000602082019050818103600083015261313d81613101565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061317e82612a76565b915061318983612a76565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131be576131bd613144565b5b828201905092915050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b60006131ff6013836129c6565b915061320a826131c9565b602082019050919050565b6000602082019050818103600083015261322e816131f2565b9050919050565b7f596f212121000000000000000000000000000000000000000000000000000000600082015250565b600061326b6005836129c6565b915061327682613235565b602082019050919050565b6000602082019050818103600083015261329a8161325e565b9050919050565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b60006132d76018836129c6565b91506132e2826132a1565b602082019050919050565b60006020820190508181036000830152613306816132ca565b9050919050565b600061331882612a76565b915061332383612a76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561335c5761335b613144565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b600061339d601d836129c6565b91506133a882613367565b602082019050919050565b600060208201905081810360008301526133cc81613390565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b60006134096007836129c6565b9150613414826133d3565b602082019050919050565b60006020820190508181036000830152613438816133fc565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061349b602f836129c6565b91506134a68261343f565b604082019050919050565b600060208201905081810360008301526134ca8161348e565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546134fe81612ff5565b61350881866134d1565b94506001821660008114613523576001811461353457613567565b60ff19831686528186019350613567565b61353d856134dc565b60005b8381101561355f57815481890152600182019150602081019050613540565b838801955050505b50505092915050565b600061357b826129bb565b61358581856134d1565b93506135958185602086016129d7565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006135d76005836134d1565b91506135e2826135a1565b600582019050919050565b60006135f982856134f1565b91506136058284613570565b9150613610826135ca565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136786026836129c6565b91506136838261361c565b604082019050919050565b600060208201905081810360008301526136a78161366b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006136d5826136ae565b6136df81856136b9565b93506136ef8185602086016129d7565b6136f881612a0a565b840191505092915050565b60006080820190506137186000830187612b0b565b6137256020830186612b0b565b6137326040830185612ba1565b818103606083015261374481846136ca565b905095945050505050565b60008151905061375e8161292c565b92915050565b60006020828403121561377a576137796128f6565b5b60006137888482850161374f565b91505092915050565b600061379c82612a76565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137ce576137cd613144565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061381382612a76565b915061381e83612a76565b92508261382e5761382d6137d9565b5b828204905092915050565b600061384482612a76565b915061384f83612a76565b92508282101561386257613861613144565b5b828203905092915050565b600061387882612a76565b915061388383612a76565b925082613893576138926137d9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122018e58d3e08c9534a2fe67bf07ce10ec980d53497d4ab669a87bdf2bedeba794064736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80638cc54e7f11610123578063bbaac02f116100ab578063e0a808531161006f578063e0a8085314610778578063e985e9c5146107a1578063f2fde38b146107de578063f892c6e214610807578063f968adbe1461083257610225565b8063bbaac02f14610693578063c6f6f216146106bc578063c87b56dd146106e5578063d123973014610722578063d5abeb011461074d57610225565b8063a035b1fe116100f2578063a035b1fe146105dc578063a0712d6814610607578063a22cb46514610623578063a70273571461064c578063b88d4fde1461067757610225565b80638cc54e7f146105325780638da5cb5b1461055d57806391b7f5ed1461058857806395d89b41146105b157610225565b806342842e0e116101b15780636d7c4a4b116101755780636d7c4a4b1461047357806370a082311461049c578063715018a6146104d95780637ba5e621146104f05780637dc949b21461050757610225565b806342842e0e1461039b57806354214f69146103b757806355f804b3146103e25780636352211e1461040b5780636c0360eb1461044857610225565b80630c23bb3f116101f85780630c23bb3f146102eb57806318160ddd1461031457806323b872dd1461033f5780633ccfd60b1461035b57806340f070a81461037257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612958565b61085d565b60405161025e91906129a0565b60405180910390f35b34801561027357600080fd5b5061027c6108ef565b6040516102899190612a54565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612aac565b610981565b6040516102c69190612b1a565b60405180910390f35b6102e960048036038101906102e49190612b61565b610a00565b005b3480156102f757600080fd5b50610312600480360381019061030d9190612aac565b610b44565b005b34801561032057600080fd5b50610329610bca565b6040516103369190612bb0565b60405180910390f35b61035960048036038101906103549190612bcb565b610be1565b005b34801561036757600080fd5b50610370610f03565b005b34801561037e57600080fd5b5061039960048036038101906103949190612aac565b61102e565b005b6103b560048036038101906103b09190612bcb565b6110b4565b005b3480156103c357600080fd5b506103cc6110d4565b6040516103d991906129a0565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190612d53565b6110e7565b005b34801561041757600080fd5b50610432600480360381019061042d9190612aac565b61117d565b60405161043f9190612b1a565b60405180910390f35b34801561045457600080fd5b5061045d61118f565b60405161046a9190612a54565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190612aac565b61121d565b005b3480156104a857600080fd5b506104c360048036038101906104be9190612d9c565b6112a3565b6040516104d09190612bb0565b60405180910390f35b3480156104e557600080fd5b506104ee61135b565b005b3480156104fc57600080fd5b50610505611498565b005b34801561051357600080fd5b5061051c611540565b6040516105299190612bb0565b60405180910390f35b34801561053e57600080fd5b50610547611546565b6040516105549190612a54565b60405180910390f35b34801561056957600080fd5b506105726115d4565b60405161057f9190612b1a565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190612aac565b6115fe565b005b3480156105bd57600080fd5b506105c6611684565b6040516105d39190612a54565b60405180910390f35b3480156105e857600080fd5b506105f1611716565b6040516105fe9190612bb0565b60405180910390f35b610621600480360381019061061c9190612aac565b61171c565b005b34801561062f57600080fd5b5061064a60048036038101906106459190612df5565b611a39565b005b34801561065857600080fd5b50610661611b44565b60405161066e9190612bb0565b60405180910390f35b610691600480360381019061068c9190612ed6565b611b4a565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190612d53565b611bbd565b005b3480156106c857600080fd5b506106e360048036038101906106de9190612aac565b611c53565b005b3480156106f157600080fd5b5061070c60048036038101906107079190612aac565b611cd9565b6040516107199190612a54565b60405180910390f35b34801561072e57600080fd5b50610737611e03565b60405161074491906129a0565b60405180910390f35b34801561075957600080fd5b50610762611e16565b60405161076f9190612bb0565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a9190612f59565b611e1c565b005b3480156107ad57600080fd5b506107c860048036038101906107c39190612f86565b611eb5565b6040516107d591906129a0565b60405180910390f35b3480156107ea57600080fd5b5061080560048036038101906108009190612d9c565b611f49565b005b34801561081357600080fd5b5061081c6120f4565b6040516108299190612bb0565b60405180910390f35b34801561083e57600080fd5b506108476120fa565b6040516108549190612bb0565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108fe90612ff5565b80601f016020809104026020016040519081016040528092919081815260200182805461092a90612ff5565b80156109775780601f1061094c57610100808354040283529160200191610977565b820191906000526020600020905b81548152906001019060200180831161095a57829003601f168201915b5050505050905090565b600061098c82612100565b6109c2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0b8261117d565b90508073ffffffffffffffffffffffffffffffffffffffff16610a2c61215f565b73ffffffffffffffffffffffffffffffffffffffff1614610a8f57610a5881610a5361215f565b611eb5565b610a8e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b4c612167565b73ffffffffffffffffffffffffffffffffffffffff16610b6a6115d4565b73ffffffffffffffffffffffffffffffffffffffff1614610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb790613072565b60405180910390fd5b80600a8190555050565b6000610bd461216f565b6001546000540303905090565b6000610bec82612174565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c53576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c5f84612240565b91509150610c758187610c7061215f565b612267565b610cc157610c8a86610c8561215f565b611eb5565b610cc0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d27576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3486868660016122ab565b8015610d3f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e0d85610de98888876122b1565b7c0200000000000000000000000000000000000000000000000000000000176122d9565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e935760006001850190506000600460008381526020019081526020016000205403610e91576000548114610e90578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610efb8686866001612304565b505050505050565b610f0b612167565b73ffffffffffffffffffffffffffffffffffffffff16610f296115d4565b73ffffffffffffffffffffffffffffffffffffffff1614610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7690613072565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610fa5906130c3565b60006040518083038185875af1925050503d8060008114610fe2576040519150601f19603f3d011682016040523d82523d6000602084013e610fe7565b606091505b505090508061102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290613124565b60405180910390fd5b50565b611036612167565b73ffffffffffffffffffffffffffffffffffffffff166110546115d4565b73ffffffffffffffffffffffffffffffffffffffff16146110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190613072565b60405180910390fd5b80600b8190555050565b6110cf83838360405180602001604052806000815250611b4a565b505050565b601160019054906101000a900460ff1681565b6110ef612167565b73ffffffffffffffffffffffffffffffffffffffff1661110d6115d4565b73ffffffffffffffffffffffffffffffffffffffff1614611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90613072565b60405180910390fd5b80600f9080519060200190611179929190612849565b5050565b600061118882612174565b9050919050565b600f805461119c90612ff5565b80601f01602080910402602001604051908101604052809291908181526020018280546111c890612ff5565b80156112155780601f106111ea57610100808354040283529160200191611215565b820191906000526020600020905b8154815290600101906020018083116111f857829003601f168201915b505050505081565b611225612167565b73ffffffffffffffffffffffffffffffffffffffff166112436115d4565b73ffffffffffffffffffffffffffffffffffffffff1614611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129090613072565b60405180910390fd5b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361130a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611363612167565b73ffffffffffffffffffffffffffffffffffffffff166113816115d4565b73ffffffffffffffffffffffffffffffffffffffff16146113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90613072565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114a0612167565b73ffffffffffffffffffffffffffffffffffffffff166114be6115d4565b73ffffffffffffffffffffffffffffffffffffffff1614611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b90613072565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b600b5481565b6010805461155390612ff5565b80601f016020809104026020016040519081016040528092919081815260200182805461157f90612ff5565b80156115cc5780601f106115a1576101008083540402835291602001916115cc565b820191906000526020600020905b8154815290600101906020018083116115af57829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611606612167565b73ffffffffffffffffffffffffffffffffffffffff166116246115d4565b73ffffffffffffffffffffffffffffffffffffffff161461167a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167190613072565b60405180910390fd5b80600e8190555050565b60606003805461169390612ff5565b80601f01602080910402602001604051908101604052809291908181526020018280546116bf90612ff5565b801561170c5780601f106116e15761010080835404028352916020019161170c565b820191906000526020600020905b8154815290600101906020018083116116ef57829003601f168201915b5050505050905090565b600e5481565b6000600e5490506000808311611733576001611735565b825b905060006001600a546117489190613173565b82611751610bca565b61175b9190613173565b1080156117b45750600c5482601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117b19190613173565b11155b9050801561186b576000925081601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461180f9190613173565b925050819055506001600b546118259190613173565b8210611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d90613215565b60405180910390fd5b6118bc565b6001600d5461187a9190613173565b82106118bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b290613215565b60405180910390fd5b5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190613281565b60405180910390fd5b601160009054906101000a900460ff16611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611970906132ed565b60405180910390fd5b8282611985919061330d565b3411156119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be906133b3565b60405180910390fd5b60016009546119d69190613173565b826119df610bca565b6119e99190613173565b10611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a209061341f565b60405180910390fd5b611a33338361230a565b50505050565b8060076000611a4661215f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611af361215f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b3891906129a0565b60405180910390a35050565b600c5481565b611b55848484610be1565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bb757611b8084848484612328565b611bb6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611bc5612167565b73ffffffffffffffffffffffffffffffffffffffff16611be36115d4565b73ffffffffffffffffffffffffffffffffffffffff1614611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3090613072565b60405180910390fd5b8060109080519060200190611c4f929190612849565b5050565b611c5b612167565b73ffffffffffffffffffffffffffffffffffffffff16611c796115d4565b73ffffffffffffffffffffffffffffffffffffffff1614611ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc690613072565b60405180910390fd5b80600d8190555050565b6060611ce482612100565b611d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1a906134b1565b60405180910390fd5b60001515601160019054906101000a900460ff16151503611dd05760108054611d4b90612ff5565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7790612ff5565b8015611dc45780601f10611d9957610100808354040283529160200191611dc4565b820191906000526020600020905b815481529060010190602001808311611da757829003601f168201915b50505050509050611dfe565b600f611ddb83612478565b604051602001611dec9291906135ed565b60405160208183030381529060405290505b919050565b601160009054906101000a900460ff1681565b60095481565b611e24612167565b73ffffffffffffffffffffffffffffffffffffffff16611e426115d4565b73ffffffffffffffffffffffffffffffffffffffff1614611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f90613072565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f51612167565b73ffffffffffffffffffffffffffffffffffffffff16611f6f6115d4565b73ffffffffffffffffffffffffffffffffffffffff1614611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc90613072565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202b9061368e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b600d5481565b60008161210b61216f565b1115801561211a575060005482105b8015612158575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b600090565b6000808290508061218361216f565b11612209576000548110156122085760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612206575b600081036121fc5760046000836001900393508381526020019081526020016000205490506121d2565b809250505061223b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86122c88686846125d8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6123248282604051806020016040528060008152506125e1565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261234e61215f565b8786866040518563ffffffff1660e01b81526004016123709493929190613703565b6020604051808303816000875af19250505080156123ac57506040513d601f19601f820116820180604052508101906123a99190613764565b60015b612425573d80600081146123dc576040519150601f19603f3d011682016040523d82523d6000602084013e6123e1565b606091505b50600081510361241d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036124bf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125d3565b600082905060005b600082146124f15780806124da90613791565b915050600a826124ea9190613808565b91506124c7565b60008167ffffffffffffffff81111561250d5761250c612c28565b5b6040519080825280601f01601f19166020018201604052801561253f5781602001600182028036833780820191505090505b5090505b600085146125cc576001826125589190613839565b9150600a85612567919061386d565b60306125739190613173565b60f81b8183815181106125895761258861389e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125c59190613808565b9450612543565b8093505050505b919050565b60009392505050565b6125eb838361267e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461267957600080549050600083820390505b61262b6000868380600101945086612328565b612661576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061261857816000541461267657600080fd5b50505b505050565b600080549050600082036126be576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126cb60008483856122ab565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127428361273360008660006122b1565b61273c85612839565b176122d9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146127e357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506127a8565b506000820361281e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506128346000848385612304565b505050565b60006001821460e11b9050919050565b82805461285590612ff5565b90600052602060002090601f01602090048101928261287757600085556128be565b82601f1061289057805160ff19168380011785556128be565b828001600101855582156128be579182015b828111156128bd5782518255916020019190600101906128a2565b5b5090506128cb91906128cf565b5090565b5b808211156128e85760008160009055506001016128d0565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61293581612900565b811461294057600080fd5b50565b6000813590506129528161292c565b92915050565b60006020828403121561296e5761296d6128f6565b5b600061297c84828501612943565b91505092915050565b60008115159050919050565b61299a81612985565b82525050565b60006020820190506129b56000830184612991565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129f55780820151818401526020810190506129da565b83811115612a04576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a26826129bb565b612a3081856129c6565b9350612a408185602086016129d7565b612a4981612a0a565b840191505092915050565b60006020820190508181036000830152612a6e8184612a1b565b905092915050565b6000819050919050565b612a8981612a76565b8114612a9457600080fd5b50565b600081359050612aa681612a80565b92915050565b600060208284031215612ac257612ac16128f6565b5b6000612ad084828501612a97565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b0482612ad9565b9050919050565b612b1481612af9565b82525050565b6000602082019050612b2f6000830184612b0b565b92915050565b612b3e81612af9565b8114612b4957600080fd5b50565b600081359050612b5b81612b35565b92915050565b60008060408385031215612b7857612b776128f6565b5b6000612b8685828601612b4c565b9250506020612b9785828601612a97565b9150509250929050565b612baa81612a76565b82525050565b6000602082019050612bc56000830184612ba1565b92915050565b600080600060608486031215612be457612be36128f6565b5b6000612bf286828701612b4c565b9350506020612c0386828701612b4c565b9250506040612c1486828701612a97565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c6082612a0a565b810181811067ffffffffffffffff82111715612c7f57612c7e612c28565b5b80604052505050565b6000612c926128ec565b9050612c9e8282612c57565b919050565b600067ffffffffffffffff821115612cbe57612cbd612c28565b5b612cc782612a0a565b9050602081019050919050565b82818337600083830152505050565b6000612cf6612cf184612ca3565b612c88565b905082815260208101848484011115612d1257612d11612c23565b5b612d1d848285612cd4565b509392505050565b600082601f830112612d3a57612d39612c1e565b5b8135612d4a848260208601612ce3565b91505092915050565b600060208284031215612d6957612d686128f6565b5b600082013567ffffffffffffffff811115612d8757612d866128fb565b5b612d9384828501612d25565b91505092915050565b600060208284031215612db257612db16128f6565b5b6000612dc084828501612b4c565b91505092915050565b612dd281612985565b8114612ddd57600080fd5b50565b600081359050612def81612dc9565b92915050565b60008060408385031215612e0c57612e0b6128f6565b5b6000612e1a85828601612b4c565b9250506020612e2b85828601612de0565b9150509250929050565b600067ffffffffffffffff821115612e5057612e4f612c28565b5b612e5982612a0a565b9050602081019050919050565b6000612e79612e7484612e35565b612c88565b905082815260208101848484011115612e9557612e94612c23565b5b612ea0848285612cd4565b509392505050565b600082601f830112612ebd57612ebc612c1e565b5b8135612ecd848260208601612e66565b91505092915050565b60008060008060808587031215612ef057612eef6128f6565b5b6000612efe87828801612b4c565b9450506020612f0f87828801612b4c565b9350506040612f2087828801612a97565b925050606085013567ffffffffffffffff811115612f4157612f406128fb565b5b612f4d87828801612ea8565b91505092959194509250565b600060208284031215612f6f57612f6e6128f6565b5b6000612f7d84828501612de0565b91505092915050565b60008060408385031215612f9d57612f9c6128f6565b5b6000612fab85828601612b4c565b9250506020612fbc85828601612b4c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061300d57607f821691505b6020821081036130205761301f612fc6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061305c6020836129c6565b915061306782613026565b602082019050919050565b6000602082019050818103600083015261308b8161304f565b9050919050565b600081905092915050565b50565b60006130ad600083613092565b91506130b88261309d565b600082019050919050565b60006130ce826130a0565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061310e6010836129c6565b9150613119826130d8565b602082019050919050565b6000602082019050818103600083015261313d81613101565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061317e82612a76565b915061318983612a76565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131be576131bd613144565b5b828201905092915050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b60006131ff6013836129c6565b915061320a826131c9565b602082019050919050565b6000602082019050818103600083015261322e816131f2565b9050919050565b7f596f212121000000000000000000000000000000000000000000000000000000600082015250565b600061326b6005836129c6565b915061327682613235565b602082019050919050565b6000602082019050818103600083015261329a8161325e565b9050919050565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b60006132d76018836129c6565b91506132e2826132a1565b602082019050919050565b60006020820190508181036000830152613306816132ca565b9050919050565b600061331882612a76565b915061332383612a76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561335c5761335b613144565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b600061339d601d836129c6565b91506133a882613367565b602082019050919050565b600060208201905081810360008301526133cc81613390565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b60006134096007836129c6565b9150613414826133d3565b602082019050919050565b60006020820190508181036000830152613438816133fc565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061349b602f836129c6565b91506134a68261343f565b604082019050919050565b600060208201905081810360008301526134ca8161348e565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546134fe81612ff5565b61350881866134d1565b94506001821660008114613523576001811461353457613567565b60ff19831686528186019350613567565b61353d856134dc565b60005b8381101561355f57815481890152600182019150602081019050613540565b838801955050505b50505092915050565b600061357b826129bb565b61358581856134d1565b93506135958185602086016129d7565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006135d76005836134d1565b91506135e2826135a1565b600582019050919050565b60006135f982856134f1565b91506136058284613570565b9150613610826135ca565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136786026836129c6565b91506136838261361c565b604082019050919050565b600060208201905081810360008301526136a78161366b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006136d5826136ae565b6136df81856136b9565b93506136ef8185602086016129d7565b6136f881612a0a565b840191505092915050565b60006080820190506137186000830187612b0b565b6137256020830186612b0b565b6137326040830185612ba1565b818103606083015261374481846136ca565b905095945050505050565b60008151905061375e8161292c565b92915050565b60006020828403121561377a576137796128f6565b5b60006137888482850161374f565b91505092915050565b600061379c82612a76565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137ce576137cd613144565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061381382612a76565b915061381e83612a76565b92508261382e5761382d6137d9565b5b828204905092915050565b600061384482612a76565b915061384f83612a76565b92508282101561386257613861613144565b5b828203905092915050565b600061387882612a76565b915061388383612a76565b925082613893576138926137d9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122018e58d3e08c9534a2fe67bf07ce10ec980d53497d4ab669a87bdf2bedeba794064736f6c634300080d0033

Deployed Bytecode Sourcemap

182:2978:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10039:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15812:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2617:104:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5894:317:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19903:2764;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2946:206:2;;;;;;;;;;;;;:::i;:::-;;2507:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22758:187:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;654:29:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1688:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11391:150:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;537:26:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2729:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7045:230:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1746:148:5;;;;;;;;;;;;;:::i;:::-;;2854:84:2;;;;;;;;;;;;;:::i;:::-;;351:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;570:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1095:87:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2305:92:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10208:102:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;489:33:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;857:824;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16901:231:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;395:35:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23526:396:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1788:102:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2405:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1983:316;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;616:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;267;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1894:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17282:162:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2049:244:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;307:35:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;443:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9155:630:3;9240:4;9573:10;9558:25;;:11;:25;;;;:101;;;;9649:10;9634:25;;:11;:25;;;;9558:101;:177;;;;9725:10;9710:25;;:11;:25;;;;9558:177;9539:196;;9155:630;;;:::o;10039:98::-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;;;;;;;;;;;;;16455:64;16537:15;:24;16553:7;16537:24;;;;;;;;;;;:30;;;;;;;;;;;;16530:37;;16360:214;;;:::o;15812:398::-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;;15970:5;15947:28;;:19;:17;:19::i;:::-;:28;;;15943:172;;15994:44;16011:5;16018:19;:17;:19::i;:::-;15994:16;:44::i;:::-;15989:126;;16065:35;;;;;;;;;;;;;;15989:126;15943:172;16158:2;16125:15;:24;16141:7;16125:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16195:7;16191:2;16175:28;;16184:5;16175:28;;;;;;;;;;;;15890:320;15812:398;;:::o;2617:104:2:-;1326:12:5;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2706:7:2::1;2690:13;:23;;;;2617:104:::0;:::o;5894:317:3:-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;19903:2764::-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;20112:45;;20128:19;20112:45;;;20108:86;;20166:28;;;;;;;;;;;;;;20108:86;20206:27;20235:23;20262:35;20289:7;20262:26;:35::i;:::-;20205:92;;;;20394:68;20419:15;20436:4;20442:19;:17;:19::i;:::-;20394:24;:68::i;:::-;20389:179;;20481:43;20498:4;20504:19;:17;:19::i;:::-;20481:16;:43::i;:::-;20476:92;;20533:35;;;;;;;;;;;;;;20476:92;20389:179;20597:1;20583:16;;:2;:16;;;20579:52;;20608:23;;;;;;;;;;;;;;20579:52;20642:43;20664:4;20670:2;20674:7;20683:1;20642:21;:43::i;:::-;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;21300:18;:24;21319:4;21300:24;;;;;;;;;;;;;;;;21298:26;;;;;;;;;;;;21368:18;:22;21387:2;21368:22;;;;;;;;;;;;;;;;21366:24;;;;;;;;;;;21683:143;21719:2;21767:45;21782:4;21788:2;21792:19;21767:14;:45::i;:::-;2392:8;21739:73;21683:18;:143::i;:::-;21654:17;:26;21672:7;21654:26;;;;;;;;;;;:172;;;;21994:1;2392:8;21943:19;:47;:52;21939:617;;22015:19;22047:1;22037:7;:11;22015:33;;22202:1;22168:17;:30;22186:11;22168:30;;;;;;;;;;;;:35;22164:378;;22304:13;;22289:11;:28;22285:239;;22482:19;22449:17;:30;22467:11;22449:30;;;;;;;;;;;:52;;;;22285:239;22164:378;21997:559;21939:617;22600:7;22596:2;22581:27;;22590:4;22581:27;;;;;;;;;;;;22618:42;22639:4;22645:2;22649:7;22658:1;22618:20;:42::i;:::-;20030:2637;;;19903:2764;;;:::o;2946:206:2:-;1326:12:5;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2997:12:2::1;3023:10;3015:24;;3061:21;3015:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2996:101;;;3116:7;3108:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;2985:167;2946:206::o:0;2507:102::-;1326:12:5;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2594:7:2::1;2579:12;:22;;;;2507:102:::0;:::o;22758:187:3:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;654:29:2:-;;;;;;;;;;;;;:::o;1688:94::-;1326:12:5;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1768:8:2::1;1758:7;:18;;;;;;;;;;;;:::i;:::-;;1688:94:::0;:::o;11391:150:3:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;537:26:2:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2729:110::-;1326:12:5;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2824:7:2::1;2805:16;:26;;;;2729:110:::0;:::o;7045:230:3:-;7117:7;7157:1;7140:19;;:5;:19;;;7136:60;;7168:28;;;;;;;;;;;;;;7136:60;1360:13;7213:18;:25;7232:5;7213:25;;;;;;;;;;;;;;;;:55;7206:62;;7045:230;;;:::o;1746:148:5:-;1326:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1853:1:::1;1816:40;;1837:6;;;;;;;;;;;1816:40;;;;;;;;;;;;1884:1;1867:6;;:19;;;;;;;;;;;;;;;;;;1746:148::o:0;2854:84:2:-;1326:12:5;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2919:11:2::1;;;;;;;;;;;2918:12;2904:11;;:26;;;;;;;;;;;;;;;;;;2854:84::o:0;351:31::-;;;;:::o;570:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1095:87:5:-;1141:7;1168:6;;;;;;;;;;;1161:13;;1095:87;:::o;2305:92:2:-;1326:12:5;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2380:9:2::1;2372:5;:17;;;;2305:92:::0;:::o;10208:102:3:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;489:33:2:-;;;;:::o;857:824::-;915:12;930:5;;915:20;;946:11;969:1;960:6;:10;:23;;982:1;960:23;;;973:6;960:23;946:37;;994:9;1046:1;1030:13;;:17;;;;:::i;:::-;1024:3;1008:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:39;1007:115;;;;;1105:16;;1098:3;1066:17;:29;1084:10;1066:29;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:55;;1007:115;994:129;;1138:4;1134:248;;;1166:1;1159:8;;1215:3;1182:17;:29;1200:10;1182:29;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;1262:1;1247:12;;:16;;;;:::i;:::-;1241:3;:22;1233:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;1134:248;;;1345:1;1334:8;;:12;;;;:::i;:::-;1328:3;:18;1320:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;1134:248;1413:10;1400:23;;:9;:23;;;1392:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1452:11;;;;;;;;;;;1444:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;1530:4;1524:3;:10;;;;:::i;:::-;1511:9;:23;;1503:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;1621:1;1609:9;;:13;;;;:::i;:::-;1603:3;1587:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;1579:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;1647:26;1657:10;1669:3;1647:9;:26::i;:::-;904:777;;;857:824;:::o;16901:231:3:-;17047:8;16995:18;:39;17014:19;:17;:19::i;:::-;16995:39;;;;;;;;;;;;;;;:49;17035:8;16995:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17106:8;17070:55;;17085:19;:17;:19::i;:::-;17070:55;;;17116:8;17070:55;;;;;;:::i;:::-;;;;;;;;16901:231;;:::o;395:35:2:-;;;;:::o;23526:396:3:-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;23758:1;23740:2;:14;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;;;;;;;;;;;;;23773:143;23736:180;23526:396;;;;:::o;1788:102:2:-;1326:12:5;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1874:10:2::1;1862:9;:22;;;;;;;;;;;;:::i;:::-;;1788:102:::0;:::o;2405:94::-;1326:12:5;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2484:7:2::1;2473:8;:18;;;;2405:94:::0;:::o;1983:316::-;2057:13;2087:17;2095:8;2087:7;:17::i;:::-;2079:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;2179:5;2167:17;;:10;;;;;;;;;;;:17;;;2164:43;;2198:9;2191:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2164:43;2254:7;2263:19;:8;:17;:19::i;:::-;2237:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2216:77;;1983:316;;;;:::o;616:31::-;;;;;;;;;;;;;:::o;267:::-;;;;:::o;1894:85::-;1326:12:5;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1967:6:2::1;1954:10;;:19;;;;;;;;;;;;;;;;;;1894:85:::0;:::o;17282:162:3:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;2049:244:5:-;1326:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2158:1:::1;2138:22;;:8;:22;;::::0;2130:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2248:8;2219:38;;2240:6;;;;;;;;;;;2219:38;;;;;;;;;;;;2277:8;2268:6;;:17;;;;;;;;;;;;;;;;;;2049:244:::0;:::o;307:35:2:-;;;;:::o;443:27::-;;;;:::o;17693:277:3:-;17758:4;17812:7;17793:15;:13;:15::i;:::-;:26;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;;17943:1;2118:8;17895:17;:26;17913:7;17895:26;;;;;;;;;;;;:44;:49;17793:151;17774:170;;17693:277;;;:::o;39437:103::-;39497:7;39523:10;39516:17;;39437:103;:::o;601:98:1:-;654:7;681:10;674:17;;601:98;:::o;5426:90:3:-;5482:7;5426:90;:::o;12515:1249::-;12582:7;12601:12;12616:7;12601:22;;12681:4;12662:15;:13;:15::i;:::-;:23;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:17;:23;12786:4;12768:23;;;;;;;;;;;;12751:40;;12883:1;2118:8;12855:6;:24;:29;12851:831;;13510:111;13527:1;13517:6;:11;13510:111;;13569:17;:25;13587:6;;;;;;;13569:25;;;;;;;;;;;;13560:34;;13510:111;;;13653:6;13646:13;;;;;;12851:831;12729:971;12703:997;12658:1042;13726:31;;;;;;;;;;;;;;12515:1249;;;;:::o;18828:474::-;18927:27;18956:23;18995:38;19036:15;:24;19052:7;19036:24;;;;;;;;;;;18995:65;;19210:18;19187:41;;19266:19;19260:26;19241:45;;19173:123;18828:474;;;:::o;18074:646::-;18219:11;18381:16;18374:5;18370:28;18361:37;;18539:16;18528:9;18524:32;18511:45;;18687:15;18676:9;18673:30;18665:5;18654:9;18651:20;18648:56;18638:66;;18074:646;;;;;:::o;24566:154::-;;;;;:::o;38764:304::-;38895:7;38914:16;2513:3;38940:19;:41;;38914:68;;2513:3;39007:31;39018:4;39024:2;39028:9;39007:10;:31::i;:::-;38999:40;;:62;;38992:69;;;38764:304;;;;;:::o;14297:443::-;14377:14;14542:16;14535:5;14531:28;14522:37;;14717:5;14703:11;14678:23;14674:41;14671:52;14664:5;14661:63;14651:73;;14297:443;;;;:::o;25367:153::-;;;;;:::o;33423:110::-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::o;25948:697::-;26106:4;26151:2;26126:45;;;26172:19;:17;:19::i;:::-;26193:4;26199:7;26208:5;26126:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26421:1;26404:6;:13;:18;26400:229;;26449:40;;;;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;26292:54;;;26282:64;;;:6;:64;;;;26275:71;;;25948:697;;;;;;:::o;392:703:0:-;448:13;674:1;665:5;:10;661:51;;691:10;;;;;;;;;;;;;;;;;;;;;661:51;721:12;736:5;721:20;;751:14;775:75;790:1;782:4;:9;775:75;;807:8;;;;;:::i;:::-;;;;837:2;829:10;;;;;:::i;:::-;;;775:75;;;859:19;891:6;881:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;859:39;;908:150;924:1;915:5;:10;908:150;;951:1;941:11;;;;;:::i;:::-;;;1017:2;1009:5;:10;;;;:::i;:::-;996:2;:24;;;;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1045:2;1036:11;;;;;:::i;:::-;;;908:150;;;1081:6;1067:21;;;;;392:703;;;;:::o;38475:143:3:-;38608:6;38475:143;;;;;:::o;32675:669::-;32801:19;32807:2;32811:8;32801:5;:19::i;:::-;32877:1;32859:2;:14;;;:19;32855:473;;32898:11;32912:13;;32898:27;;32943:13;32965:8;32959:3;:14;32943:30;;32991:229;33021:62;33060:1;33064:2;33068:7;;;;;;33077:5;33021:30;:62::i;:::-;33016:165;;33118:40;;;;;;;;;;;;;;33016:165;33215:3;33207:5;:11;32991:229;;33300:3;33283:13;;:20;33279:34;;33305:8;;;33279:34;32880:448;;32855:473;32675:669;;;:::o;27091:2902::-;27163:20;27186:13;;27163:36;;27225:1;27213:8;:13;27209:44;;27235:18;;;;;;;;;;;;;;27209:44;27264:61;27294:1;27298:2;27302:12;27316:8;27264:21;:61::i;:::-;27797:1;1495:2;27767:1;:26;;27766:32;27754:8;:45;27728:18;:22;27747:2;27728:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28069:136;28105:2;28158:33;28181:1;28185:2;28189:1;28158:14;:33::i;:::-;28125:30;28146:8;28125:20;:30::i;:::-;:66;28069:18;:136::i;:::-;28035:17;:31;28053:12;28035:31;;;;;;;;;;;:170;;;;28220:16;28250:11;28279:8;28264:12;:23;28250:37;;28792:16;28788:2;28784:25;28772:37;;29156:12;29117:8;29077:1;29016:25;28958:1;28898;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29603:7;29599:15;29588:26;;29461:339;;;29465:75;29843:1;29831:8;:13;29827:45;;29853:19;;;;;;;;;;;;;;29827:45;29903:3;29887:13;:19;;;;27508:2409;;29926:60;29955:1;29959:2;29963:12;29977:8;29926:20;:60::i;:::-;27153:2840;27091:2902;;:::o;14837:318::-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:6:-;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:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:323::-;11697:6;11746:2;11734:9;11725:7;11721:23;11717:32;11714:119;;;11752:79;;:::i;:::-;11714:119;11872:1;11897:50;11939:7;11930:6;11919:9;11915:22;11897:50;:::i;:::-;11887:60;;11843:114;11641:323;;;;:::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:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:182::-;13102:34;13098:1;13090:6;13086:14;13079:58;12962:182;:::o;13150:366::-;13292:3;13313:67;13377:2;13372:3;13313:67;:::i;:::-;13306:74;;13389:93;13478:3;13389:93;:::i;:::-;13507:2;13502:3;13498:12;13491:19;;13150:366;;;:::o;13522:419::-;13688:4;13726:2;13715:9;13711:18;13703:26;;13775:9;13769:4;13765:20;13761:1;13750:9;13746:17;13739:47;13803:131;13929:4;13803:131;:::i;:::-;13795:139;;13522:419;;;:::o;13947:147::-;14048:11;14085:3;14070:18;;13947:147;;;;:::o;14100:114::-;;:::o;14220:398::-;14379:3;14400:83;14481:1;14476:3;14400:83;:::i;:::-;14393:90;;14492:93;14581:3;14492:93;:::i;:::-;14610:1;14605:3;14601:11;14594:18;;14220:398;;;:::o;14624:379::-;14808:3;14830:147;14973:3;14830:147;:::i;:::-;14823:154;;14994:3;14987:10;;14624:379;;;:::o;15009:166::-;15149:18;15145:1;15137:6;15133:14;15126:42;15009:166;:::o;15181:366::-;15323:3;15344:67;15408:2;15403:3;15344:67;:::i;:::-;15337:74;;15420:93;15509:3;15420:93;:::i;:::-;15538:2;15533:3;15529:12;15522:19;;15181:366;;;:::o;15553:419::-;15719:4;15757:2;15746:9;15742:18;15734:26;;15806:9;15800:4;15796:20;15792:1;15781:9;15777:17;15770:47;15834:131;15960:4;15834:131;:::i;:::-;15826:139;;15553:419;;;:::o;15978:180::-;16026:77;16023:1;16016:88;16123:4;16120:1;16113:15;16147:4;16144:1;16137:15;16164:305;16204:3;16223:20;16241:1;16223:20;:::i;:::-;16218:25;;16257:20;16275:1;16257:20;:::i;:::-;16252:25;;16411:1;16343:66;16339:74;16336:1;16333:81;16330:107;;;16417:18;;:::i;:::-;16330:107;16461:1;16458;16454:9;16447:16;;16164:305;;;;:::o;16475:169::-;16615:21;16611:1;16603:6;16599:14;16592:45;16475:169;:::o;16650:366::-;16792:3;16813:67;16877:2;16872:3;16813:67;:::i;:::-;16806:74;;16889:93;16978:3;16889:93;:::i;:::-;17007:2;17002:3;16998:12;16991:19;;16650:366;;;:::o;17022:419::-;17188:4;17226:2;17215:9;17211:18;17203:26;;17275:9;17269:4;17265:20;17261:1;17250:9;17246:17;17239:47;17303:131;17429:4;17303:131;:::i;:::-;17295:139;;17022:419;;;:::o;17447:155::-;17587:7;17583:1;17575:6;17571:14;17564:31;17447:155;:::o;17608:365::-;17750:3;17771:66;17835:1;17830:3;17771:66;:::i;:::-;17764:73;;17846:93;17935:3;17846:93;:::i;:::-;17964:2;17959:3;17955:12;17948:19;;17608:365;;;:::o;17979:419::-;18145:4;18183:2;18172:9;18168:18;18160:26;;18232:9;18226:4;18222:20;18218:1;18207:9;18203:17;18196:47;18260:131;18386:4;18260:131;:::i;:::-;18252:139;;17979:419;;;:::o;18404:174::-;18544:26;18540:1;18532:6;18528:14;18521:50;18404:174;:::o;18584:366::-;18726:3;18747:67;18811:2;18806:3;18747:67;:::i;:::-;18740:74;;18823:93;18912:3;18823:93;:::i;:::-;18941:2;18936:3;18932:12;18925:19;;18584:366;;;:::o;18956:419::-;19122:4;19160:2;19149:9;19145:18;19137:26;;19209:9;19203:4;19199:20;19195:1;19184:9;19180:17;19173:47;19237:131;19363:4;19237:131;:::i;:::-;19229:139;;18956:419;;;:::o;19381:348::-;19421:7;19444:20;19462:1;19444:20;:::i;:::-;19439:25;;19478:20;19496:1;19478:20;:::i;:::-;19473:25;;19666:1;19598:66;19594:74;19591:1;19588:81;19583:1;19576:9;19569:17;19565:105;19562:131;;;19673:18;;:::i;:::-;19562:131;19721:1;19718;19714:9;19703:20;;19381:348;;;;:::o;19735:179::-;19875:31;19871:1;19863:6;19859:14;19852:55;19735:179;:::o;19920:366::-;20062:3;20083:67;20147:2;20142:3;20083:67;:::i;:::-;20076:74;;20159:93;20248:3;20159:93;:::i;:::-;20277:2;20272:3;20268:12;20261:19;;19920:366;;;:::o;20292:419::-;20458:4;20496:2;20485:9;20481:18;20473:26;;20545:9;20539:4;20535:20;20531:1;20520:9;20516:17;20509:47;20573:131;20699:4;20573:131;:::i;:::-;20565:139;;20292:419;;;:::o;20717:157::-;20857:9;20853:1;20845:6;20841:14;20834:33;20717:157;:::o;20880:365::-;21022:3;21043:66;21107:1;21102:3;21043:66;:::i;:::-;21036:73;;21118:93;21207:3;21118:93;:::i;:::-;21236:2;21231:3;21227:12;21220:19;;20880:365;;;:::o;21251:419::-;21417:4;21455:2;21444:9;21440:18;21432:26;;21504:9;21498:4;21494:20;21490:1;21479:9;21475:17;21468:47;21532:131;21658:4;21532:131;:::i;:::-;21524:139;;21251:419;;;:::o;21676:234::-;21816:34;21812:1;21804:6;21800:14;21793:58;21885:17;21880:2;21872:6;21868:15;21861:42;21676:234;:::o;21916:366::-;22058:3;22079:67;22143:2;22138:3;22079:67;:::i;:::-;22072:74;;22155:93;22244:3;22155:93;:::i;:::-;22273:2;22268:3;22264:12;22257:19;;21916:366;;;:::o;22288:419::-;22454:4;22492:2;22481:9;22477:18;22469:26;;22541:9;22535:4;22531:20;22527:1;22516:9;22512:17;22505:47;22569:131;22695:4;22569:131;:::i;:::-;22561:139;;22288:419;;;:::o;22713:148::-;22815:11;22852:3;22837:18;;22713:148;;;;:::o;22867:141::-;22916:4;22939:3;22931:11;;22962:3;22959:1;22952:14;22996:4;22993:1;22983:18;22975:26;;22867:141;;;:::o;23038:845::-;23141:3;23178:5;23172:12;23207:36;23233:9;23207:36;:::i;:::-;23259:89;23341:6;23336:3;23259:89;:::i;:::-;23252:96;;23379:1;23368:9;23364:17;23395:1;23390:137;;;;23541:1;23536:341;;;;23357:520;;23390:137;23474:4;23470:9;23459;23455:25;23450:3;23443:38;23510:6;23505:3;23501:16;23494:23;;23390:137;;23536:341;23603:38;23635:5;23603:38;:::i;:::-;23663:1;23677:154;23691:6;23688:1;23685:13;23677:154;;;23765:7;23759:14;23755:1;23750:3;23746:11;23739:35;23815:1;23806:7;23802:15;23791:26;;23713:4;23710:1;23706:12;23701:17;;23677:154;;;23860:6;23855:3;23851:16;23844:23;;23543:334;;23357:520;;23145:738;;23038:845;;;;:::o;23889:377::-;23995:3;24023:39;24056:5;24023:39;:::i;:::-;24078:89;24160:6;24155:3;24078:89;:::i;:::-;24071:96;;24176:52;24221:6;24216:3;24209:4;24202:5;24198:16;24176:52;:::i;:::-;24253:6;24248:3;24244:16;24237:23;;23999:267;23889:377;;;;:::o;24272:155::-;24412:7;24408:1;24400:6;24396:14;24389:31;24272:155;:::o;24433:400::-;24593:3;24614:84;24696:1;24691:3;24614:84;:::i;:::-;24607:91;;24707:93;24796:3;24707:93;:::i;:::-;24825:1;24820:3;24816:11;24809:18;;24433:400;;;:::o;24839:695::-;25117:3;25139:92;25227:3;25218:6;25139:92;:::i;:::-;25132:99;;25248:95;25339:3;25330:6;25248:95;:::i;:::-;25241:102;;25360:148;25504:3;25360:148;:::i;:::-;25353:155;;25525:3;25518:10;;24839:695;;;;;:::o;25540:225::-;25680:34;25676:1;25668:6;25664:14;25657:58;25749:8;25744:2;25736:6;25732:15;25725:33;25540:225;:::o;25771:366::-;25913:3;25934:67;25998:2;25993:3;25934:67;:::i;:::-;25927:74;;26010:93;26099:3;26010:93;:::i;:::-;26128:2;26123:3;26119:12;26112:19;;25771:366;;;:::o;26143:419::-;26309:4;26347:2;26336:9;26332:18;26324:26;;26396:9;26390:4;26386:20;26382:1;26371:9;26367:17;26360:47;26424:131;26550:4;26424:131;:::i;:::-;26416:139;;26143:419;;;:::o;26568:98::-;26619:6;26653:5;26647:12;26637:22;;26568:98;;;:::o;26672:168::-;26755:11;26789:6;26784:3;26777:19;26829:4;26824:3;26820:14;26805:29;;26672:168;;;;:::o;26846:360::-;26932:3;26960:38;26992:5;26960:38;:::i;:::-;27014:70;27077:6;27072:3;27014:70;:::i;:::-;27007:77;;27093:52;27138:6;27133:3;27126:4;27119:5;27115:16;27093:52;:::i;:::-;27170:29;27192:6;27170:29;:::i;:::-;27165:3;27161:39;27154:46;;26936:270;26846:360;;;;:::o;27212:640::-;27407:4;27445:3;27434:9;27430:19;27422:27;;27459:71;27527:1;27516:9;27512:17;27503:6;27459:71;:::i;:::-;27540:72;27608:2;27597:9;27593:18;27584:6;27540:72;:::i;:::-;27622;27690:2;27679:9;27675:18;27666:6;27622:72;:::i;:::-;27741:9;27735:4;27731:20;27726:2;27715:9;27711:18;27704:48;27769:76;27840:4;27831:6;27769:76;:::i;:::-;27761:84;;27212:640;;;;;;;:::o;27858:141::-;27914:5;27945:6;27939:13;27930:22;;27961:32;27987:5;27961:32;:::i;:::-;27858:141;;;;:::o;28005:349::-;28074:6;28123:2;28111:9;28102:7;28098:23;28094:32;28091:119;;;28129:79;;:::i;:::-;28091:119;28249:1;28274:63;28329:7;28320:6;28309:9;28305:22;28274:63;:::i;:::-;28264:73;;28220:127;28005:349;;;;:::o;28360:233::-;28399:3;28422:24;28440:5;28422:24;:::i;:::-;28413:33;;28468:66;28461:5;28458:77;28455:103;;28538:18;;:::i;:::-;28455:103;28585:1;28578:5;28574:13;28567:20;;28360:233;;;:::o;28599:180::-;28647:77;28644:1;28637:88;28744:4;28741:1;28734:15;28768:4;28765:1;28758:15;28785:185;28825:1;28842:20;28860:1;28842:20;:::i;:::-;28837:25;;28876:20;28894:1;28876:20;:::i;:::-;28871:25;;28915:1;28905:35;;28920:18;;:::i;:::-;28905:35;28962:1;28959;28955:9;28950:14;;28785:185;;;;:::o;28976:191::-;29016:4;29036:20;29054:1;29036:20;:::i;:::-;29031:25;;29070:20;29088:1;29070:20;:::i;:::-;29065:25;;29109:1;29106;29103:8;29100:34;;;29114:18;;:::i;:::-;29100:34;29159:1;29156;29152:9;29144:17;;28976:191;;;;:::o;29173:176::-;29205:1;29222:20;29240:1;29222:20;:::i;:::-;29217:25;;29256:20;29274:1;29256:20;:::i;:::-;29251:25;;29295:1;29285:35;;29300:18;;:::i;:::-;29285:35;29341:1;29338;29334:9;29329:14;;29173:176;;;;:::o;29355:180::-;29403:77;29400:1;29393:88;29500:4;29497:1;29490:15;29524:4;29521:1;29514:15

Swarm Source

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