ETH Price: $3,140.43 (-8.62%)
Gas: 12 Gwei

Token

Diminishing bulls (DBULLS)
 

Overview

Max Total Supply

2,086 DBULLS

Holders

226

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DBULLS
0x38f376fbff5523909155dba72c2e235b4b39ece8
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:
DiminishingBulls

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 2 of 6: DiminishingBulls.sol
pragma solidity ^0.8.4;

import "./ERC721A.sol";
import "./Ownable.sol";
import "./MerkleProof.sol";

contract DiminishingBulls is Ownable, ERC721A {

    using MerkleProof for bytes32[];

    uint256 public _price = 0.0077 ether;

    bytes32 public _root;

    uint256 public constant MAX_SUPPLY = 2086;

    uint256 public constant FREE_MINT_SUPPLY = 666;

    string public baseTokenURI;

    bool  public _freeMintActive = false;

    bool  public _publicMintActive = false;

    mapping(address => bool) public _whitelistMinted;

    uint256 public _totalFreeMint;


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

    constructor(
    ) ERC721A("Diminishing bulls", "DBULLS") {

    }

    modifier contractCheck() {
        require(tx.origin == msg.sender, "beep boop");
        _;
    }

    modifier checkMaxSupply(uint256 _amount) {
        require(totalSupply() + _amount <= MAX_SUPPLY, "exceeds total supply");
        _;
    }

    modifier checkTxnValue(uint256 quantity) {
        require(msg.value == _price * quantity, "invalid transaction value");
        _;
    }

    modifier validateProof(bytes32[] calldata _proof) {
        require(
            MerkleProof.verify(
                _proof,
                _root,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "wallet not allowed"
        );

        _;
    }

    function setRoot(bytes32 _newRoot) public onlyOwner {
        _root = _newRoot;
    }

    function setPublicMintActive(bool active) public onlyOwner {
        _publicMintActive = active;
    }

    function setFreeMintActive(bool active) public onlyOwner {
        _freeMintActive = active;
    }


    function setPrice(uint256 _newPrice) public onlyOwner {
        _price = _newPrice;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

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

    function freeMint(bytes32[] calldata _proof, uint256 quantity)
    public
    contractCheck
    checkMaxSupply(quantity)
    validateProof(_proof)
    {
        require(_freeMintActive, "Free mint not started");
        require(quantity == 1, "Invalid quantity");
        require(_totalFreeMint + quantity <= FREE_MINT_SUPPLY, "exceeds free supply");
        require(_whitelistMinted[msg.sender] == false, "Wallet already claimed");
        _safeMint(msg.sender, 1);
        _totalFreeMint = _totalFreeMint + 1;
        _whitelistMinted[msg.sender] = true;
    }


    function mint(uint256 quantity)
    public
    payable
    contractCheck
    checkMaxSupply(quantity)
    checkTxnValue(quantity)
    {
        require(_publicMintActive, "Public mint not started");
        require(quantity <= 10, "Invalid quantity");
        _safeMint(msg.sender, quantity);
    }


}

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

pragma solidity ^0.8.4;

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

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

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

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

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

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

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 6: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

pragma solidity ^0.8.4;

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_freeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_publicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whitelistMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setFreeMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setPublicMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052661b5b1bf4c540006009556000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055503480156200005257600080fd5b506040518060400160405280601181526020017f44696d696e697368696e672062756c6c730000000000000000000000000000008152506040518060400160405280600681526020017f4442554c4c530000000000000000000000000000000000000000000000000000815250620000df620000d36200012f60201b60201c565b6200013760201b60201c565b8160039080519060200190620000f792919062000200565b5080600490805190602001906200011092919062000200565b5062000121620001fb60201b60201c565b600181905550505062000315565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b8280546200020e90620002b0565b90600052602060002090601f0160209004810192826200023257600085556200027e565b82601f106200024d57805160ff19168380011785556200027e565b828001600101855582156200027e579182015b828111156200027d57825182559160200191906001019062000260565b5b5090506200028d919062000291565b5090565b5b80821115620002ac57600081600090555060010162000292565b5090565b60006002820490506001821680620002c957607f821691505b60208210811415620002e057620002df620002e6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61384280620003256000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063b1645eb9116100a0578063c87b56dd1161006f578063c87b56dd146106ec578063d547cfb714610729578063dab5f34014610754578063e985e9c51461077d578063f2fde38b146107ba576101f9565b8063b1645eb914610642578063b88d4fde1461066d578063c2de867414610696578063c61b5862146106c1576101f9565b806395d89b41116100dc57806395d89b4114610595578063a0712d68146105c0578063a22cb465146105dc578063ab6c825714610605576101f9565b806370a08231146104ed578063715018a61461052a5780638da5cb5b1461054157806391b7f5ed1461056c576101f9565b806332cb6b0c1161019057806342842e0e1161015f57806342842e0e1461040a5780634f9b563c1461043357806355f804b31461045c5780636352211e1461048557806363eb8bb6146104c2576101f9565b806332cb6b0c146103745780633615ab451461039f5780633ccfd60b146103c85780633cdc728b146103df576101f9565b806318160ddd116101cc57806318160ddd146102cc578063235b6ea1146102f757806323b872dd146103225780632b707c711461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612bbc565b6107e3565b6040516102329190613010565b60405180910390f35b34801561024757600080fd5b50610250610875565b60405161025d9190613046565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612c4f565b610907565b60405161029a9190612fa9565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612ad6565b610983565b005b3480156102d857600080fd5b506102e1610b2a565b6040516102ee91906131c8565b60405180910390f35b34801561030357600080fd5b5061030c610b41565b60405161031991906131c8565b60405180910390f35b34801561032e57600080fd5b50610349600480360381019061034491906129d0565b610b47565b005b34801561035757600080fd5b50610372600480360381019061036d9190612b6a565b610b57565b005b34801561038057600080fd5b50610389610bf0565b60405161039691906131c8565b60405180910390f35b3480156103ab57600080fd5b506103c660048036038101906103c19190612b12565b610bf6565b005b3480156103d457600080fd5b506103dd610f68565b005b3480156103eb57600080fd5b506103f461105d565b60405161040191906131c8565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c91906129d0565b611063565b005b34801561043f57600080fd5b5061045a60048036038101906104559190612b6a565b611083565b005b34801561046857600080fd5b50610483600480360381019061047e9190612c0e565b61111c565b005b34801561049157600080fd5b506104ac60048036038101906104a79190612c4f565b6111b2565b6040516104b99190612fa9565b60405180910390f35b3480156104ce57600080fd5b506104d76111c4565b6040516104e491906131c8565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f919061296b565b6111ca565b60405161052191906131c8565b60405180910390f35b34801561053657600080fd5b5061053f61125f565b005b34801561054d57600080fd5b506105566112e7565b6040516105639190612fa9565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190612c4f565b611310565b005b3480156105a157600080fd5b506105aa611396565b6040516105b79190613046565b60405180910390f35b6105da60048036038101906105d59190612c4f565b611428565b005b3480156105e857600080fd5b5061060360048036038101906105fe9190612a9a565b6115e0565b005b34801561061157600080fd5b5061062c6004803603810190610627919061296b565b611758565b6040516106399190613010565b60405180910390f35b34801561064e57600080fd5b50610657611778565b6040516106649190613010565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f9190612a1f565b61178b565b005b3480156106a257600080fd5b506106ab6117fe565b6040516106b89190613010565b60405180910390f35b3480156106cd57600080fd5b506106d6611811565b6040516106e3919061302b565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e9190612c4f565b611817565b6040516107209190613046565b60405180910390f35b34801561073557600080fd5b5061073e6118b6565b60405161074b9190613046565b60405180910390f35b34801561076057600080fd5b5061077b60048036038101906107769190612b93565b611944565b005b34801561078957600080fd5b506107a4600480360381019061079f9190612994565b6119ca565b6040516107b19190613010565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc919061296b565b611a5e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461088490613428565b80601f01602080910402602001604051908101604052809291908181526020018280546108b090613428565b80156108fd5780601f106108d2576101008083540402835291602001916108fd565b820191906000526020600020905b8154815290600101906020018083116108e057829003601f168201915b5050505050905090565b600061091282611b56565b610948576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098e82611bb5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a15611c83565b73ffffffffffffffffffffffffffffffffffffffff1614610a7857610a4181610a3c611c83565b6119ca565b610a77576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b34611c8b565b6002546001540303905090565b60095481565b610b52838383611c90565b505050565b610b5f612058565b73ffffffffffffffffffffffffffffffffffffffff16610b7d6112e7565b73ffffffffffffffffffffffffffffffffffffffff1614610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca90613148565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b61082681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b906131a8565b60405180910390fd5b8061082681610c71610b2a565b610c7b91906132b8565b1115610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390613128565b60405180910390fd5b8383610d32828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5433604051602001610d179190612f29565b60405160208183030381529060405280519060200120612060565b610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d68906130c8565b60405180910390fd5b600c60009054906101000a900460ff16610dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db7906130e8565b60405180910390fd5b60018414610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90613108565b60405180910390fd5b61029a84600e54610e1491906132b8565b1115610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90613188565b60405180910390fd5b60001515600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90613168565b60405180910390fd5b610ef3336001612077565b6001600e54610f0291906132b8565b600e819055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050505050565b610f70612058565b73ffffffffffffffffffffffffffffffffffffffff16610f8e6112e7565b73ffffffffffffffffffffffffffffffffffffffff1614610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb90613148565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161100a90612f94565b60006040518083038185875af1925050503d8060008114611047576040519150601f19603f3d011682016040523d82523d6000602084013e61104c565b606091505b505090508061105a57600080fd5b50565b600e5481565b61107e8383836040518060200160405280600081525061178b565b505050565b61108b612058565b73ffffffffffffffffffffffffffffffffffffffff166110a96112e7565b73ffffffffffffffffffffffffffffffffffffffff16146110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f690613148565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b611124612058565b73ffffffffffffffffffffffffffffffffffffffff166111426112e7565b73ffffffffffffffffffffffffffffffffffffffff1614611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90613148565b60405180910390fd5b80600b90805190602001906111ae929190612730565b5050565b60006111bd82611bb5565b9050919050565b61029a81565b6000806111d683612095565b141561120e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611267612058565b73ffffffffffffffffffffffffffffffffffffffff166112856112e7565b73ffffffffffffffffffffffffffffffffffffffff16146112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d290613148565b60405180910390fd5b6112e5600061209f565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611318612058565b73ffffffffffffffffffffffffffffffffffffffff166113366112e7565b73ffffffffffffffffffffffffffffffffffffffff161461138c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138390613148565b60405180910390fd5b8060098190555050565b6060600480546113a590613428565b80601f01602080910402602001604051908101604052809291908181526020018280546113d190613428565b801561141e5780601f106113f35761010080835404028352916020019161141e565b820191906000526020600020905b81548152906001019060200180831161140157829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d906131a8565b60405180910390fd5b80610826816114a3610b2a565b6114ad91906132b8565b11156114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e590613128565b60405180910390fd5b81806009546114fd919061330e565b341461153e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611535906130a8565b60405180910390fd5b600c60019054906101000a900460ff1661158d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158490613088565b60405180910390fd5b600a8311156115d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c890613108565b60405180910390fd5b6115db3384612077565b505050565b6115e8611c83565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561164d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061165a611c83565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611707611c83565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161174c9190613010565b60405180910390a35050565b600d6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611796848484611c90565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117f8576117c184848484612163565b6117f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c60009054906101000a900460ff1681565b600a5481565b606061182282611b56565b611858576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118626122c3565b905060008151141561188357604051806020016040528060008152506118ae565b8061188d84612355565b60405160200161189e929190612f70565b6040516020818303038152906040525b915050919050565b600b80546118c390613428565b80601f01602080910402602001604051908101604052809291908181526020018280546118ef90613428565b801561193c5780601f106119115761010080835404028352916020019161193c565b820191906000526020600020905b81548152906001019060200180831161191f57829003601f168201915b505050505081565b61194c612058565b73ffffffffffffffffffffffffffffffffffffffff1661196a6112e7565b73ffffffffffffffffffffffffffffffffffffffff16146119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b790613148565b60405180910390fd5b80600a8190555050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a66612058565b73ffffffffffffffffffffffffffffffffffffffff16611a846112e7565b73ffffffffffffffffffffffffffffffffffffffff1614611ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad190613148565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4190613068565b60405180910390fd5b611b538161209f565b50565b600081611b61611c8b565b11158015611b70575060015482105b8015611bae575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611bc4611c8b565b11611c4c57600154811015611c4b5760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c49575b6000811415611c3f576005600083600190039350838152602001908152602001600020549050611c14565b8092505050611c7e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611c9b82611bb5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d02576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006007600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16611d5b611c83565b73ffffffffffffffffffffffffffffffffffffffff161480611d8a5750611d8986611d84611c83565b6119ca565b5b80611dc75750611d98611c83565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611e00576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611e0b86612095565b1415611e43576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e5086868660016123af565b6000611e5b83612095565b14611e97576007600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611f5e87612095565b1717600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611fe8576000600185019050600060056000838152602001908152602001600020541415611fe6576001548114611fe5578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461205086868660016123b5565b505050505050565b600033905090565b60008261206d85846123bb565b1490509392505050565b612091828260405180602001604052806000815250612494565b5050565b6000819050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612189611c83565b8786866040518563ffffffff1660e01b81526004016121ab9493929190612fc4565b602060405180830381600087803b1580156121c557600080fd5b505af19250505080156121f657506040513d601f19601f820116820180604052508101906121f39190612be5565b60015b612270573d8060008114612226576040519150601f19603f3d011682016040523d82523d6000602084013e61222b565b606091505b50600081511415612268576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b80546122d290613428565b80601f01602080910402602001604051908101604052809291908181526020018280546122fe90613428565b801561234b5780601f106123205761010080835404028352916020019161234b565b820191906000526020600020905b81548152906001019060200180831161232e57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561239b57600183039250600a81066030018353600a8104905061237b565b508181036020830392508083525050919050565b50505050565b50505050565b60008082905060005b8451811015612489576000858281518110612408577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161244957828160405160200161242c929190612f44565b604051602081830303815290604052805190602001209250612475565b808360405160200161245c929190612f44565b6040516020818303038152906040528051906020012092505b5080806124819061348b565b9150506123c4565b508091505092915050565b6000600154905060006124a685612095565b14156124de576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612519576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61252660008583866123af565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161258b60018514612726565b901b60a042901b61259b86612095565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461269f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461264f6000878480600101955087612163565b612685576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106125e057826001541461269a57600080fd5b61270a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106126a0575b81600181905550505061272060008583866123b5565b50505050565b6000819050919050565b82805461273c90613428565b90600052602060002090601f01602090048101928261275e57600085556127a5565b82601f1061277757805160ff19168380011785556127a5565b828001600101855582156127a5579182015b828111156127a4578251825591602001919060010190612789565b5b5090506127b291906127b6565b5090565b5b808211156127cf5760008160009055506001016127b7565b5090565b60006127e66127e184613208565b6131e3565b9050828152602081018484840111156127fe57600080fd5b6128098482856133e6565b509392505050565b600061282461281f84613239565b6131e3565b90508281526020810184848401111561283c57600080fd5b6128478482856133e6565b509392505050565b60008135905061285e81613799565b92915050565b60008083601f84011261287657600080fd5b8235905067ffffffffffffffff81111561288f57600080fd5b6020830191508360208202830111156128a757600080fd5b9250929050565b6000813590506128bd816137b0565b92915050565b6000813590506128d2816137c7565b92915050565b6000813590506128e7816137de565b92915050565b6000815190506128fc816137de565b92915050565b600082601f83011261291357600080fd5b81356129238482602086016127d3565b91505092915050565b600082601f83011261293d57600080fd5b813561294d848260208601612811565b91505092915050565b600081359050612965816137f5565b92915050565b60006020828403121561297d57600080fd5b600061298b8482850161284f565b91505092915050565b600080604083850312156129a757600080fd5b60006129b58582860161284f565b92505060206129c68582860161284f565b9150509250929050565b6000806000606084860312156129e557600080fd5b60006129f38682870161284f565b9350506020612a048682870161284f565b9250506040612a1586828701612956565b9150509250925092565b60008060008060808587031215612a3557600080fd5b6000612a438782880161284f565b9450506020612a548782880161284f565b9350506040612a6587828801612956565b925050606085013567ffffffffffffffff811115612a8257600080fd5b612a8e87828801612902565b91505092959194509250565b60008060408385031215612aad57600080fd5b6000612abb8582860161284f565b9250506020612acc858286016128ae565b9150509250929050565b60008060408385031215612ae957600080fd5b6000612af78582860161284f565b9250506020612b0885828601612956565b9150509250929050565b600080600060408486031215612b2757600080fd5b600084013567ffffffffffffffff811115612b4157600080fd5b612b4d86828701612864565b93509350506020612b6086828701612956565b9150509250925092565b600060208284031215612b7c57600080fd5b6000612b8a848285016128ae565b91505092915050565b600060208284031215612ba557600080fd5b6000612bb3848285016128c3565b91505092915050565b600060208284031215612bce57600080fd5b6000612bdc848285016128d8565b91505092915050565b600060208284031215612bf757600080fd5b6000612c05848285016128ed565b91505092915050565b600060208284031215612c2057600080fd5b600082013567ffffffffffffffff811115612c3a57600080fd5b612c468482850161292c565b91505092915050565b600060208284031215612c6157600080fd5b6000612c6f84828501612956565b91505092915050565b612c8181613368565b82525050565b612c98612c9382613368565b6134d4565b82525050565b612ca78161337a565b82525050565b612cb681613386565b82525050565b612ccd612cc882613386565b6134e6565b82525050565b6000612cde8261326a565b612ce88185613280565b9350612cf88185602086016133f5565b612d018161358f565b840191505092915050565b6000612d1782613275565b612d21818561329c565b9350612d318185602086016133f5565b612d3a8161358f565b840191505092915050565b6000612d5082613275565b612d5a81856132ad565b9350612d6a8185602086016133f5565b80840191505092915050565b6000612d8360268361329c565b9150612d8e826135ad565b604082019050919050565b6000612da660178361329c565b9150612db1826135fc565b602082019050919050565b6000612dc960198361329c565b9150612dd482613625565b602082019050919050565b6000612dec60128361329c565b9150612df78261364e565b602082019050919050565b6000612e0f60158361329c565b9150612e1a82613677565b602082019050919050565b6000612e3260108361329c565b9150612e3d826136a0565b602082019050919050565b6000612e5560148361329c565b9150612e60826136c9565b602082019050919050565b6000612e7860208361329c565b9150612e83826136f2565b602082019050919050565b6000612e9b60168361329c565b9150612ea68261371b565b602082019050919050565b6000612ebe600083613291565b9150612ec982613744565b600082019050919050565b6000612ee160138361329c565b9150612eec82613747565b602082019050919050565b6000612f0460098361329c565b9150612f0f82613770565b602082019050919050565b612f23816133dc565b82525050565b6000612f358284612c87565b60148201915081905092915050565b6000612f508285612cbc565b602082019150612f608284612cbc565b6020820191508190509392505050565b6000612f7c8285612d45565b9150612f888284612d45565b91508190509392505050565b6000612f9f82612eb1565b9150819050919050565b6000602082019050612fbe6000830184612c78565b92915050565b6000608082019050612fd96000830187612c78565b612fe66020830186612c78565b612ff36040830185612f1a565b81810360608301526130058184612cd3565b905095945050505050565b60006020820190506130256000830184612c9e565b92915050565b60006020820190506130406000830184612cad565b92915050565b600060208201905081810360008301526130608184612d0c565b905092915050565b6000602082019050818103600083015261308181612d76565b9050919050565b600060208201905081810360008301526130a181612d99565b9050919050565b600060208201905081810360008301526130c181612dbc565b9050919050565b600060208201905081810360008301526130e181612ddf565b9050919050565b6000602082019050818103600083015261310181612e02565b9050919050565b6000602082019050818103600083015261312181612e25565b9050919050565b6000602082019050818103600083015261314181612e48565b9050919050565b6000602082019050818103600083015261316181612e6b565b9050919050565b6000602082019050818103600083015261318181612e8e565b9050919050565b600060208201905081810360008301526131a181612ed4565b9050919050565b600060208201905081810360008301526131c181612ef7565b9050919050565b60006020820190506131dd6000830184612f1a565b92915050565b60006131ed6131fe565b90506131f9828261345a565b919050565b6000604051905090565b600067ffffffffffffffff82111561322357613222613560565b5b61322c8261358f565b9050602081019050919050565b600067ffffffffffffffff82111561325457613253613560565b5b61325d8261358f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006132c3826133dc565b91506132ce836133dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561330357613302613502565b5b828201905092915050565b6000613319826133dc565b9150613324836133dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561335d5761335c613502565b5b828202905092915050565b6000613373826133bc565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134135780820151818401526020810190506133f8565b83811115613422576000848401525b50505050565b6000600282049050600182168061344057607f821691505b6020821081141561345457613453613531565b5b50919050565b6134638261358f565b810181811067ffffffffffffffff8211171561348257613481613560565b5b80604052505050565b6000613496826133dc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134c9576134c8613502565b5b600182019050919050565b60006134df826134f0565b9050919050565b6000819050919050565b60006134fb826135a0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e74206e6f742073746172746564000000000000000000600082015250565b7f696e76616c6964207472616e73616374696f6e2076616c756500000000000000600082015250565b7f77616c6c6574206e6f7420616c6c6f7765640000000000000000000000000000600082015250565b7f46726565206d696e74206e6f7420737461727465640000000000000000000000600082015250565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b7f6578636565647320746f74616c20737570706c79000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f57616c6c657420616c726561647920636c61696d656400000000000000000000600082015250565b50565b7f65786365656473206672656520737570706c7900000000000000000000000000600082015250565b7f6265657020626f6f700000000000000000000000000000000000000000000000600082015250565b6137a281613368565b81146137ad57600080fd5b50565b6137b98161337a565b81146137c457600080fd5b50565b6137d081613386565b81146137db57600080fd5b50565b6137e781613390565b81146137f257600080fd5b50565b6137fe816133dc565b811461380957600080fd5b5056fea26469706673582212208910ff6788a62aaa420a8d7b1eb24b7a691cd528eb8c524a1ea45d9561fed65b64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063b1645eb9116100a0578063c87b56dd1161006f578063c87b56dd146106ec578063d547cfb714610729578063dab5f34014610754578063e985e9c51461077d578063f2fde38b146107ba576101f9565b8063b1645eb914610642578063b88d4fde1461066d578063c2de867414610696578063c61b5862146106c1576101f9565b806395d89b41116100dc57806395d89b4114610595578063a0712d68146105c0578063a22cb465146105dc578063ab6c825714610605576101f9565b806370a08231146104ed578063715018a61461052a5780638da5cb5b1461054157806391b7f5ed1461056c576101f9565b806332cb6b0c1161019057806342842e0e1161015f57806342842e0e1461040a5780634f9b563c1461043357806355f804b31461045c5780636352211e1461048557806363eb8bb6146104c2576101f9565b806332cb6b0c146103745780633615ab451461039f5780633ccfd60b146103c85780633cdc728b146103df576101f9565b806318160ddd116101cc57806318160ddd146102cc578063235b6ea1146102f757806323b872dd146103225780632b707c711461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612bbc565b6107e3565b6040516102329190613010565b60405180910390f35b34801561024757600080fd5b50610250610875565b60405161025d9190613046565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612c4f565b610907565b60405161029a9190612fa9565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612ad6565b610983565b005b3480156102d857600080fd5b506102e1610b2a565b6040516102ee91906131c8565b60405180910390f35b34801561030357600080fd5b5061030c610b41565b60405161031991906131c8565b60405180910390f35b34801561032e57600080fd5b50610349600480360381019061034491906129d0565b610b47565b005b34801561035757600080fd5b50610372600480360381019061036d9190612b6a565b610b57565b005b34801561038057600080fd5b50610389610bf0565b60405161039691906131c8565b60405180910390f35b3480156103ab57600080fd5b506103c660048036038101906103c19190612b12565b610bf6565b005b3480156103d457600080fd5b506103dd610f68565b005b3480156103eb57600080fd5b506103f461105d565b60405161040191906131c8565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c91906129d0565b611063565b005b34801561043f57600080fd5b5061045a60048036038101906104559190612b6a565b611083565b005b34801561046857600080fd5b50610483600480360381019061047e9190612c0e565b61111c565b005b34801561049157600080fd5b506104ac60048036038101906104a79190612c4f565b6111b2565b6040516104b99190612fa9565b60405180910390f35b3480156104ce57600080fd5b506104d76111c4565b6040516104e491906131c8565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f919061296b565b6111ca565b60405161052191906131c8565b60405180910390f35b34801561053657600080fd5b5061053f61125f565b005b34801561054d57600080fd5b506105566112e7565b6040516105639190612fa9565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190612c4f565b611310565b005b3480156105a157600080fd5b506105aa611396565b6040516105b79190613046565b60405180910390f35b6105da60048036038101906105d59190612c4f565b611428565b005b3480156105e857600080fd5b5061060360048036038101906105fe9190612a9a565b6115e0565b005b34801561061157600080fd5b5061062c6004803603810190610627919061296b565b611758565b6040516106399190613010565b60405180910390f35b34801561064e57600080fd5b50610657611778565b6040516106649190613010565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f9190612a1f565b61178b565b005b3480156106a257600080fd5b506106ab6117fe565b6040516106b89190613010565b60405180910390f35b3480156106cd57600080fd5b506106d6611811565b6040516106e3919061302b565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e9190612c4f565b611817565b6040516107209190613046565b60405180910390f35b34801561073557600080fd5b5061073e6118b6565b60405161074b9190613046565b60405180910390f35b34801561076057600080fd5b5061077b60048036038101906107769190612b93565b611944565b005b34801561078957600080fd5b506107a4600480360381019061079f9190612994565b6119ca565b6040516107b19190613010565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc919061296b565b611a5e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461088490613428565b80601f01602080910402602001604051908101604052809291908181526020018280546108b090613428565b80156108fd5780601f106108d2576101008083540402835291602001916108fd565b820191906000526020600020905b8154815290600101906020018083116108e057829003601f168201915b5050505050905090565b600061091282611b56565b610948576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098e82611bb5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a15611c83565b73ffffffffffffffffffffffffffffffffffffffff1614610a7857610a4181610a3c611c83565b6119ca565b610a77576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b34611c8b565b6002546001540303905090565b60095481565b610b52838383611c90565b505050565b610b5f612058565b73ffffffffffffffffffffffffffffffffffffffff16610b7d6112e7565b73ffffffffffffffffffffffffffffffffffffffff1614610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca90613148565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b61082681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b906131a8565b60405180910390fd5b8061082681610c71610b2a565b610c7b91906132b8565b1115610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390613128565b60405180910390fd5b8383610d32828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5433604051602001610d179190612f29565b60405160208183030381529060405280519060200120612060565b610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d68906130c8565b60405180910390fd5b600c60009054906101000a900460ff16610dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db7906130e8565b60405180910390fd5b60018414610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90613108565b60405180910390fd5b61029a84600e54610e1491906132b8565b1115610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90613188565b60405180910390fd5b60001515600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90613168565b60405180910390fd5b610ef3336001612077565b6001600e54610f0291906132b8565b600e819055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050505050565b610f70612058565b73ffffffffffffffffffffffffffffffffffffffff16610f8e6112e7565b73ffffffffffffffffffffffffffffffffffffffff1614610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb90613148565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161100a90612f94565b60006040518083038185875af1925050503d8060008114611047576040519150601f19603f3d011682016040523d82523d6000602084013e61104c565b606091505b505090508061105a57600080fd5b50565b600e5481565b61107e8383836040518060200160405280600081525061178b565b505050565b61108b612058565b73ffffffffffffffffffffffffffffffffffffffff166110a96112e7565b73ffffffffffffffffffffffffffffffffffffffff16146110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f690613148565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b611124612058565b73ffffffffffffffffffffffffffffffffffffffff166111426112e7565b73ffffffffffffffffffffffffffffffffffffffff1614611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90613148565b60405180910390fd5b80600b90805190602001906111ae929190612730565b5050565b60006111bd82611bb5565b9050919050565b61029a81565b6000806111d683612095565b141561120e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611267612058565b73ffffffffffffffffffffffffffffffffffffffff166112856112e7565b73ffffffffffffffffffffffffffffffffffffffff16146112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d290613148565b60405180910390fd5b6112e5600061209f565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611318612058565b73ffffffffffffffffffffffffffffffffffffffff166113366112e7565b73ffffffffffffffffffffffffffffffffffffffff161461138c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138390613148565b60405180910390fd5b8060098190555050565b6060600480546113a590613428565b80601f01602080910402602001604051908101604052809291908181526020018280546113d190613428565b801561141e5780601f106113f35761010080835404028352916020019161141e565b820191906000526020600020905b81548152906001019060200180831161140157829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d906131a8565b60405180910390fd5b80610826816114a3610b2a565b6114ad91906132b8565b11156114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e590613128565b60405180910390fd5b81806009546114fd919061330e565b341461153e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611535906130a8565b60405180910390fd5b600c60019054906101000a900460ff1661158d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158490613088565b60405180910390fd5b600a8311156115d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c890613108565b60405180910390fd5b6115db3384612077565b505050565b6115e8611c83565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561164d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061165a611c83565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611707611c83565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161174c9190613010565b60405180910390a35050565b600d6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611796848484611c90565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117f8576117c184848484612163565b6117f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c60009054906101000a900460ff1681565b600a5481565b606061182282611b56565b611858576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118626122c3565b905060008151141561188357604051806020016040528060008152506118ae565b8061188d84612355565b60405160200161189e929190612f70565b6040516020818303038152906040525b915050919050565b600b80546118c390613428565b80601f01602080910402602001604051908101604052809291908181526020018280546118ef90613428565b801561193c5780601f106119115761010080835404028352916020019161193c565b820191906000526020600020905b81548152906001019060200180831161191f57829003601f168201915b505050505081565b61194c612058565b73ffffffffffffffffffffffffffffffffffffffff1661196a6112e7565b73ffffffffffffffffffffffffffffffffffffffff16146119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b790613148565b60405180910390fd5b80600a8190555050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a66612058565b73ffffffffffffffffffffffffffffffffffffffff16611a846112e7565b73ffffffffffffffffffffffffffffffffffffffff1614611ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad190613148565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4190613068565b60405180910390fd5b611b538161209f565b50565b600081611b61611c8b565b11158015611b70575060015482105b8015611bae575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611bc4611c8b565b11611c4c57600154811015611c4b5760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c49575b6000811415611c3f576005600083600190039350838152602001908152602001600020549050611c14565b8092505050611c7e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611c9b82611bb5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d02576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006007600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16611d5b611c83565b73ffffffffffffffffffffffffffffffffffffffff161480611d8a5750611d8986611d84611c83565b6119ca565b5b80611dc75750611d98611c83565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611e00576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611e0b86612095565b1415611e43576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e5086868660016123af565b6000611e5b83612095565b14611e97576007600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611f5e87612095565b1717600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611fe8576000600185019050600060056000838152602001908152602001600020541415611fe6576001548114611fe5578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461205086868660016123b5565b505050505050565b600033905090565b60008261206d85846123bb565b1490509392505050565b612091828260405180602001604052806000815250612494565b5050565b6000819050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612189611c83565b8786866040518563ffffffff1660e01b81526004016121ab9493929190612fc4565b602060405180830381600087803b1580156121c557600080fd5b505af19250505080156121f657506040513d601f19601f820116820180604052508101906121f39190612be5565b60015b612270573d8060008114612226576040519150601f19603f3d011682016040523d82523d6000602084013e61222b565b606091505b50600081511415612268576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b80546122d290613428565b80601f01602080910402602001604051908101604052809291908181526020018280546122fe90613428565b801561234b5780601f106123205761010080835404028352916020019161234b565b820191906000526020600020905b81548152906001019060200180831161232e57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561239b57600183039250600a81066030018353600a8104905061237b565b508181036020830392508083525050919050565b50505050565b50505050565b60008082905060005b8451811015612489576000858281518110612408577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161244957828160405160200161242c929190612f44565b604051602081830303815290604052805190602001209250612475565b808360405160200161245c929190612f44565b6040516020818303038152906040528051906020012092505b5080806124819061348b565b9150506123c4565b508091505092915050565b6000600154905060006124a685612095565b14156124de576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612519576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61252660008583866123af565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161258b60018514612726565b901b60a042901b61259b86612095565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461269f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461264f6000878480600101955087612163565b612685576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106125e057826001541461269a57600080fd5b61270a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106126a0575b81600181905550505061272060008583866123b5565b50505050565b6000819050919050565b82805461273c90613428565b90600052602060002090601f01602090048101928261275e57600085556127a5565b82601f1061277757805160ff19168380011785556127a5565b828001600101855582156127a5579182015b828111156127a4578251825591602001919060010190612789565b5b5090506127b291906127b6565b5090565b5b808211156127cf5760008160009055506001016127b7565b5090565b60006127e66127e184613208565b6131e3565b9050828152602081018484840111156127fe57600080fd5b6128098482856133e6565b509392505050565b600061282461281f84613239565b6131e3565b90508281526020810184848401111561283c57600080fd5b6128478482856133e6565b509392505050565b60008135905061285e81613799565b92915050565b60008083601f84011261287657600080fd5b8235905067ffffffffffffffff81111561288f57600080fd5b6020830191508360208202830111156128a757600080fd5b9250929050565b6000813590506128bd816137b0565b92915050565b6000813590506128d2816137c7565b92915050565b6000813590506128e7816137de565b92915050565b6000815190506128fc816137de565b92915050565b600082601f83011261291357600080fd5b81356129238482602086016127d3565b91505092915050565b600082601f83011261293d57600080fd5b813561294d848260208601612811565b91505092915050565b600081359050612965816137f5565b92915050565b60006020828403121561297d57600080fd5b600061298b8482850161284f565b91505092915050565b600080604083850312156129a757600080fd5b60006129b58582860161284f565b92505060206129c68582860161284f565b9150509250929050565b6000806000606084860312156129e557600080fd5b60006129f38682870161284f565b9350506020612a048682870161284f565b9250506040612a1586828701612956565b9150509250925092565b60008060008060808587031215612a3557600080fd5b6000612a438782880161284f565b9450506020612a548782880161284f565b9350506040612a6587828801612956565b925050606085013567ffffffffffffffff811115612a8257600080fd5b612a8e87828801612902565b91505092959194509250565b60008060408385031215612aad57600080fd5b6000612abb8582860161284f565b9250506020612acc858286016128ae565b9150509250929050565b60008060408385031215612ae957600080fd5b6000612af78582860161284f565b9250506020612b0885828601612956565b9150509250929050565b600080600060408486031215612b2757600080fd5b600084013567ffffffffffffffff811115612b4157600080fd5b612b4d86828701612864565b93509350506020612b6086828701612956565b9150509250925092565b600060208284031215612b7c57600080fd5b6000612b8a848285016128ae565b91505092915050565b600060208284031215612ba557600080fd5b6000612bb3848285016128c3565b91505092915050565b600060208284031215612bce57600080fd5b6000612bdc848285016128d8565b91505092915050565b600060208284031215612bf757600080fd5b6000612c05848285016128ed565b91505092915050565b600060208284031215612c2057600080fd5b600082013567ffffffffffffffff811115612c3a57600080fd5b612c468482850161292c565b91505092915050565b600060208284031215612c6157600080fd5b6000612c6f84828501612956565b91505092915050565b612c8181613368565b82525050565b612c98612c9382613368565b6134d4565b82525050565b612ca78161337a565b82525050565b612cb681613386565b82525050565b612ccd612cc882613386565b6134e6565b82525050565b6000612cde8261326a565b612ce88185613280565b9350612cf88185602086016133f5565b612d018161358f565b840191505092915050565b6000612d1782613275565b612d21818561329c565b9350612d318185602086016133f5565b612d3a8161358f565b840191505092915050565b6000612d5082613275565b612d5a81856132ad565b9350612d6a8185602086016133f5565b80840191505092915050565b6000612d8360268361329c565b9150612d8e826135ad565b604082019050919050565b6000612da660178361329c565b9150612db1826135fc565b602082019050919050565b6000612dc960198361329c565b9150612dd482613625565b602082019050919050565b6000612dec60128361329c565b9150612df78261364e565b602082019050919050565b6000612e0f60158361329c565b9150612e1a82613677565b602082019050919050565b6000612e3260108361329c565b9150612e3d826136a0565b602082019050919050565b6000612e5560148361329c565b9150612e60826136c9565b602082019050919050565b6000612e7860208361329c565b9150612e83826136f2565b602082019050919050565b6000612e9b60168361329c565b9150612ea68261371b565b602082019050919050565b6000612ebe600083613291565b9150612ec982613744565b600082019050919050565b6000612ee160138361329c565b9150612eec82613747565b602082019050919050565b6000612f0460098361329c565b9150612f0f82613770565b602082019050919050565b612f23816133dc565b82525050565b6000612f358284612c87565b60148201915081905092915050565b6000612f508285612cbc565b602082019150612f608284612cbc565b6020820191508190509392505050565b6000612f7c8285612d45565b9150612f888284612d45565b91508190509392505050565b6000612f9f82612eb1565b9150819050919050565b6000602082019050612fbe6000830184612c78565b92915050565b6000608082019050612fd96000830187612c78565b612fe66020830186612c78565b612ff36040830185612f1a565b81810360608301526130058184612cd3565b905095945050505050565b60006020820190506130256000830184612c9e565b92915050565b60006020820190506130406000830184612cad565b92915050565b600060208201905081810360008301526130608184612d0c565b905092915050565b6000602082019050818103600083015261308181612d76565b9050919050565b600060208201905081810360008301526130a181612d99565b9050919050565b600060208201905081810360008301526130c181612dbc565b9050919050565b600060208201905081810360008301526130e181612ddf565b9050919050565b6000602082019050818103600083015261310181612e02565b9050919050565b6000602082019050818103600083015261312181612e25565b9050919050565b6000602082019050818103600083015261314181612e48565b9050919050565b6000602082019050818103600083015261316181612e6b565b9050919050565b6000602082019050818103600083015261318181612e8e565b9050919050565b600060208201905081810360008301526131a181612ed4565b9050919050565b600060208201905081810360008301526131c181612ef7565b9050919050565b60006020820190506131dd6000830184612f1a565b92915050565b60006131ed6131fe565b90506131f9828261345a565b919050565b6000604051905090565b600067ffffffffffffffff82111561322357613222613560565b5b61322c8261358f565b9050602081019050919050565b600067ffffffffffffffff82111561325457613253613560565b5b61325d8261358f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006132c3826133dc565b91506132ce836133dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561330357613302613502565b5b828201905092915050565b6000613319826133dc565b9150613324836133dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561335d5761335c613502565b5b828202905092915050565b6000613373826133bc565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134135780820151818401526020810190506133f8565b83811115613422576000848401525b50505050565b6000600282049050600182168061344057607f821691505b6020821081141561345457613453613531565b5b50919050565b6134638261358f565b810181811067ffffffffffffffff8211171561348257613481613560565b5b80604052505050565b6000613496826133dc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134c9576134c8613502565b5b600182019050919050565b60006134df826134f0565b9050919050565b6000819050919050565b60006134fb826135a0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e74206e6f742073746172746564000000000000000000600082015250565b7f696e76616c6964207472616e73616374696f6e2076616c756500000000000000600082015250565b7f77616c6c6574206e6f7420616c6c6f7765640000000000000000000000000000600082015250565b7f46726565206d696e74206e6f7420737461727465640000000000000000000000600082015250565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b7f6578636565647320746f74616c20737570706c79000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f57616c6c657420616c726561647920636c61696d656400000000000000000000600082015250565b50565b7f65786365656473206672656520737570706c7900000000000000000000000000600082015250565b7f6265657020626f6f700000000000000000000000000000000000000000000000600082015250565b6137a281613368565b81146137ad57600080fd5b50565b6137b98161337a565b81146137c457600080fd5b50565b6137d081613386565b81146137db57600080fd5b50565b6137e781613390565b81146137f257600080fd5b50565b6137fe816133dc565b811461380957600080fd5b5056fea26469706673582212208910ff6788a62aaa420a8d7b1eb24b7a691cd528eb8c524a1ea45d9561fed65b64736f6c63430008040033

Deployed Bytecode Sourcemap

102:2880:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4874:607:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9772:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11773:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11249:463;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3957:309;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;193:36:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12633:164:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1535:102:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;263:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2111:562;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1948:157;;;;;;;;;;;;;:::i;:::-;;540:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12863:179:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1643:98:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1843:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9568:142:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;311:46:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5540:231:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1598:92:5;;;;;;;;;;;;;:::i;:::-;;966:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1748:89:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9934:102:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2680:298:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12040:303:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;485:48:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;440:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13108:385:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;397:36:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;236:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10102:313:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;364:26:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1444:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12409:162:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1839:189:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4874:607:2;4959:4;5269:10;5254:25;;:11;:25;;;;:101;;;;5345:10;5330:25;;:11;:25;;;;5254:101;:177;;;;5421:10;5406:25;;:11;:25;;;;5254:177;5235:196;;4874:607;;;:::o;9772:98::-;9826:13;9858:5;9851:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9772:98;:::o;11773:200::-;11841:7;11865:16;11873:7;11865;:16::i;:::-;11860:64;;11890:34;;;;;;;;;;;;;;11860:64;11942:15;:24;11958:7;11942:24;;;;;;;;;;;;;;;;;;;;;11935:31;;11773:200;;;:::o;11249:463::-;11321:13;11353:27;11372:7;11353:18;:27::i;:::-;11321:61;;11402:5;11396:11;;:2;:11;;;11392:48;;;11416:24;;;;;;;;;;;;;;11392:48;11478:5;11455:28;;:19;:17;:19::i;:::-;:28;;;11451:172;;11502:44;11519:5;11526:19;:17;:19::i;:::-;11502:16;:44::i;:::-;11497:126;;11573:35;;;;;;;;;;;;;;11497:126;11451:172;11660:2;11633:15;:24;11649:7;11633:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11697:7;11693:2;11677:28;;11686:5;11677:28;;;;;;;;;;;;11249:463;;;:::o;3957:309::-;4010:7;4234:15;:13;:15::i;:::-;4219:12;;4203:13;;:28;:46;4196:53;;3957:309;:::o;193:36:1:-;;;;:::o;12633:164:2:-;12762:28;12772:4;12778:2;12782:7;12762:9;:28::i;:::-;12633:164;;;:::o;1535:102:1:-;1189:12:5;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1624:6:1::1;1604:17;;:26;;;;;;;;;;;;;;;;;;1535:102:::0;:::o;263:41::-;300:4;263:41;:::o;2111:562::-;822:10;809:23;;:9;:23;;;801:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;2222:8:::1;300:4;945:7;929:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:37;;921:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;2250:6:::2;;1239:136;1275:6;;1239:136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1299:5;;1349:10;1332:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;1322:39;;;;;;1239:18;:136::i;:::-;1218:201;;;;;;;;;;;;:::i;:::-;;;;;;;;;2280:15:::3;;;;;;;;;;;2272:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;2351:1;2339:8;:13;2331:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;354:3;2408:8;2391:14;;:25;;;;:::i;:::-;:45;;2383:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;2510:5;2478:37;;:16;:28;2495:10;2478:28;;;;;;;;;;;;;;;;;;;;;;;;;:37;;;2470:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;2552:24;2562:10;2574:1;2552:9;:24::i;:::-;2620:1;2603:14;;:18;;;;:::i;:::-;2586:14;:35;;;;2662:4;2631:16;:28;2648:10;2631:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;1001:1:::2;;856::::1;2111:562:::0;;;:::o;1948:157::-;1189:12:5;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1996:12:1::1;2021:10;2013:24;;2046:21;2013:59;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1995:77;;;2090:7;2082:16;;;::::0;::::1;;1248:1:5;1948:157:1:o:0;540:29::-;;;;:::o;12863:179:2:-;12996:39;13013:4;13019:2;13023:7;12996:39;;;;;;;;;;;;:16;:39::i;:::-;12863:179;;;:::o;1643:98:1:-;1189:12:5;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1728:6:1::1;1710:15;;:24;;;;;;;;;;;;;;;;;;1643:98:::0;:::o;1843:99::-;1189:12:5;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1928:7:1::1;1913:12;:22;;;;;;;;;;;;:::i;:::-;;1843:99:::0;:::o;9568:142:2:-;9632:7;9674:27;9693:7;9674:18;:27::i;:::-;9651:52;;9568:142;;;:::o;311:46:1:-;354:3;311:46;:::o;5540:231:2:-;5604:7;5655:1;5627:24;5645:5;5627:17;:24::i;:::-;:29;5623:70;;;5665:28;;;;;;;;;;;;;;5623:70;1017:13;5710:18;:25;5729:5;5710:25;;;;;;;;;;;;;;;;:54;5703:61;;5540:231;;;:::o;1598:92:5:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;966:85::-;1012:7;1038:6;;;;;;;;;;;1031:13;;966:85;:::o;1748:89:1:-;1189:12:5;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1821:9:1::1;1812:6;:18;;;;1748:89:::0;:::o;9934:102:2:-;9990:13;10022:7;10015:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9934:102;:::o;2680:298:1:-;822:10;809:23;;:9;:23;;;801:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;2772:8:::1;300:4;945:7;929:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:37;;921:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;2800:8:::2;1096;1087:6;;:17;;;;:::i;:::-;1074:9;:30;1066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2832:17:::3;;;;;;;;;;;2824:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;2907:2;2895:8;:14;;2887:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;2940:31;2950:10;2962:8;2940:9;:31::i;:::-;1001:1:::2;856::::1;2680:298:::0;:::o;12040:303:2:-;12150:19;:17;:19::i;:::-;12138:31;;:8;:31;;;12134:61;;;12178:17;;;;;;;;;;;;;;12134:61;12258:8;12206:18;:39;12225:19;:17;:19::i;:::-;12206:39;;;;;;;;;;;;;;;:49;12246:8;12206:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;12317:8;12281:55;;12296:19;:17;:19::i;:::-;12281:55;;;12327:8;12281:55;;;;;;:::i;:::-;;;;;;;;12040:303;;:::o;485:48:1:-;;;;;;;;;;;;;;;;;;;;;;:::o;440:38::-;;;;;;;;;;;;;:::o;13108:385:2:-;13269:28;13279:4;13285:2;13289:7;13269:9;:28::i;:::-;13329:1;13311:2;:14;;;:19;13307:180;;13349:56;13380:4;13386:2;13390:7;13399:5;13349:30;:56::i;:::-;13344:143;;13432:40;;;;;;;;;;;;;;13344:143;13307:180;13108:385;;;;:::o;397:36:1:-;;;;;;;;;;;;;:::o;236:20::-;;;;:::o;10102:313:2:-;10175:13;10205:16;10213:7;10205;:16::i;:::-;10200:59;;10230:29;;;;;;;;;;;;;;10200:59;10270:21;10294:10;:8;:10::i;:::-;10270:34;;10346:1;10327:7;10321:21;:26;;:87;;;;;;;;;;;;;;;;;10374:7;10383:18;10393:7;10383:9;:18::i;:::-;10357:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10321:87;10314:94;;;10102:313;;;:::o;364:26:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1444:85::-;1189:12:5;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1514:8:1::1;1506:5;:16;;;;1444:85:::0;:::o;12409:162:2:-;12506:4;12529:18;:25;12548:5;12529:25;;;;;;;;;;;;;;;:35;12555:8;12529:35;;;;;;;;;;;;;;;;;;;;;;;;;12522:42;;12409:162;;;;:::o;1839:189:5:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1947:1:::1;1927:22;;:8;:22;;;;1919:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;13739:268:2:-;13796:4;13850:7;13831:15;:13;:15::i;:::-;:26;;:65;;;;;13883:13;;13873:7;:23;13831:65;:150;;;;;13980:1;1769:8;13933:17;:26;13951:7;13933:26;;;;;;;;;;;;:43;:48;13831:150;13812:169;;13739:268;;;:::o;7145:1105::-;7212:7;7231:12;7246:7;7231:22;;7311:4;7292:15;:13;:15::i;:::-;:23;7288:898;;7344:13;;7337:4;:20;7333:853;;;7381:14;7398:17;:23;7416:4;7398:23;;;;;;;;;;;;7381:40;;7512:1;1769:8;7485:6;:23;:28;7481:687;;;7996:111;8013:1;8003:6;:11;7996:111;;;8055:17;:25;8073:6;;;;;;;8055:25;;;;;;;;;;;;8046:34;;7996:111;;;8139:6;8132:13;;;;;;7481:687;7333:853;;7288:898;8212:31;;;;;;;;;;;;;;7145:1105;;;;:::o;27642:103::-;27702:7;27728:10;27721:17;;27642:103;:::o;3497:90::-;3553:7;3497:90;:::o;18859:2595::-;18969:27;18999;19018:7;18999:18;:27::i;:::-;18969:57;;19082:4;19041:45;;19057:19;19041:45;;;19037:86;;19095:28;;;;;;;;;;;;;;19037:86;19134:23;19160:15;:24;19176:7;19160:24;;;;;;;;;;;;;;;;;;;;;19134:50;;19195:22;19244:4;19221:27;;:19;:17;:19::i;:::-;:27;;;:86;;;;19264:43;19281:4;19287:19;:17;:19::i;:::-;19264:16;:43::i;:::-;19221:86;:140;;;;19342:19;:17;:19::i;:::-;19323:38;;:15;:38;;;19221:140;19195:167;;19378:17;19373:66;;19404:35;;;;;;;;;;;;;;19373:66;19478:1;19453:21;19471:2;19453:17;:21::i;:::-;:26;19449:62;;;19488:23;;;;;;;;;;;;;;19449:62;19522:43;19544:4;19550:2;19554:7;19563:1;19522:21;:43::i;:::-;19670:1;19632:34;19650:15;19632:17;:34::i;:::-;:39;19628:101;;19694:15;:24;19710:7;19694:24;;;;;;;;;;;;19687:31;;;;;;;;;;;19628:101;20089:18;:24;20108:4;20089:24;;;;;;;;;;;;;;;;20087:26;;;;;;;;;;;;20157:18;:22;20176:2;20157:22;;;;;;;;;;;;;;;;20155:24;;;;;;;;;;;2041:8;1656:3;20529:15;:41;;20488:21;20506:2;20488:17;:21::i;:::-;:83;:126;20443:17;:26;20461:7;20443:26;;;;;;;;;;;:171;;;;20781:1;2041:8;20731:19;:46;:51;20727:616;;;20802:19;20834:1;20824:7;:11;20802:33;;20989:1;20955:17;:30;20973:11;20955:30;;;;;;;;;;;;:35;20951:378;;;21091:13;;21076:11;:28;21072:239;;21269:19;21236:17;:30;21254:11;21236:30;;;;;;;;;;;:52;;;;21072:239;20951:378;20727:616;;21387:7;21383:2;21368:27;;21377:4;21368:27;;;;;;;;;;;;21405:42;21426:4;21432:2;21436:7;21445:1;21405:20;:42::i;:::-;18859:2595;;;;;;:::o;586:96:0:-;639:7;665:10;658:17;;586:96;:::o;847:184:4:-;968:4;1020;991:25;1004:5;1011:4;991:12;:25::i;:::-;:33;984:40;;847:184;;;;;:::o;14086:102:2:-;14154:27;14164:2;14168:8;14154:27;;;;;;;;;;;;:9;:27::i;:::-;14086:102;;:::o;10828:144::-;10892:14;10951:5;10941:15;;10927:39;;;:::o;2034:169:5:-;2089:16;2108:6;;;;;;;;;;;2089:25;;2133:8;2124:6;;:17;;;;;;;;;;;;;;;;;;2187:8;2156:40;;2177:8;2156:40;;;;;;;;;;;;2034:169;;:::o;25182:697:2:-;25340:4;25385:2;25360:45;;;25406:19;:17;:19::i;:::-;25427:4;25433:7;25442:5;25360:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;25356:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25655:1;25638:6;:13;:18;25634:229;;;25683:40;;;;;;;;;;;;;;25634:229;25823:6;25817:13;25808:6;25804:2;25800:15;25793:38;25356:517;25526:54;;;25516:64;;;:6;:64;;;;25509:71;;;25182:697;;;;;;:::o;577:111:1:-;637:13;669:12;662:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;577:111;:::o;27846:1904:2:-;27903:17;28316:3;28309:4;28303:11;28299:21;28292:28;;28405:3;28399:4;28392:17;28508:3;28956:5;29084:1;29079:3;29075:11;29068:18;;29219:2;29213:4;29209:13;29205:2;29201:22;29196:3;29188:36;29259:2;29253:4;29249:13;29241:21;;28850:666;29277:4;28850:666;;;29447:1;29442:3;29438:11;29431:18;;29497:2;29491:4;29487:13;29483:2;29479:22;29474:3;29466:36;29370:2;29364:4;29360:13;29352:21;;28850:666;;;28854:422;29553:3;29548;29544:13;29666:2;29661:3;29657:12;29650:19;;29727:6;29722:3;29715:19;27941:1803;;;;;:::o;26510:154::-;;;;;:::o;27305:153::-;;;;;:::o;1383:688:4:-;1466:7;1485:20;1508:4;1485:27;;1527:9;1522:514;1546:5;:12;1542:1;:16;1522:514;;;1579:20;1602:5;1608:1;1602:8;;;;;;;;;;;;;;;;;;;;;;1579:31;;1644:12;1628;:28;1624:402;;1796:12;1810;1779:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1769:55;;;;;;1754:70;;1624:402;;;1983:12;1997;1966:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1956:55;;;;;;1941:70;;1624:402;1522:514;1560:3;;;;;:::i;:::-;;;;1522:514;;;;2052:12;2045:19;;;1383:688;;;;:::o;14548:2194:2:-;14666:20;14689:13;;14666:36;;14741:1;14716:21;14734:2;14716:17;:21::i;:::-;:26;14712:58;;;14751:19;;;;;;;;;;;;;;14712:58;14796:1;14784:8;:13;14780:44;;;14806:18;;;;;;;;;;;;;;14780:44;14835:61;14865:1;14869:2;14873:12;14887:8;14835:21;:61::i;:::-;15428:1;1151:2;15399:1;:25;;15398:31;15386:8;:44;15360:18;:22;15379:2;15360:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;1909:3;15819:29;15846:1;15834:8;:13;15819:14;:29::i;:::-;:56;;1656:3;15757:15;:41;;15716:21;15734:2;15716:17;:21::i;:::-;:83;:160;15666:17;:31;15684:12;15666:31;;;;;;;;;;;:210;;;;15891:20;15914:12;15891:35;;15940:11;15969:8;15954:12;:23;15940:37;;16014:1;15996:2;:14;;;:19;15992:622;;16035:308;16090:12;16086:2;16065:38;;16082:1;16065:38;;;;;;;;;;;;16130:69;16169:1;16173:2;16177:14;;;;;;16193:5;16130:30;:69::i;:::-;16125:172;;16234:40;;;;;;;;;;;;;;16125:172;16338:3;16323:12;:18;16035:308;;16422:12;16405:13;;:29;16401:43;;16436:8;;;16401:43;15992:622;;;16483:117;16538:14;;;;;;16534:2;16513:40;;16530:1;16513:40;;;;;;;;;;;;16595:3;16580:12;:18;16483:117;;15992:622;16643:12;16627:13;:28;;;;14548:2194;;16675:60;16704:1;16708:2;16712:12;16726:8;16675:20;:60::i;:::-;14548:2194;;;;:::o;11054:138::-;11112:14;11171:5;11161:15;;11147:39;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:6:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;869:367::-;942:8;952:6;1002:3;995:4;987:6;983:17;979:27;969:2;;1020:1;1017;1010:12;969:2;1056:6;1043:20;1033:30;;1086:18;1078:6;1075:30;1072:2;;;1118:1;1115;1108:12;1072:2;1155:4;1147:6;1143:17;1131:29;;1209:3;1201:4;1193:6;1189:17;1179:8;1175:32;1172:41;1169:2;;;1226:1;1223;1216:12;1169:2;959:277;;;;;:::o;1242:133::-;1285:5;1323:6;1310:20;1301:29;;1339:30;1363:5;1339:30;:::i;:::-;1291:84;;;;:::o;1381:139::-;1427:5;1465:6;1452:20;1443:29;;1481:33;1508:5;1481:33;:::i;:::-;1433:87;;;;:::o;1526:137::-;1571:5;1609:6;1596:20;1587:29;;1625:32;1651:5;1625:32;:::i;:::-;1577:86;;;;:::o;1669:141::-;1725:5;1756:6;1750:13;1741:22;;1772:32;1798:5;1772:32;:::i;:::-;1731:79;;;;:::o;1829:271::-;1884:5;1933:3;1926:4;1918:6;1914:17;1910:27;1900:2;;1951:1;1948;1941:12;1900:2;1991:6;1978:20;2016:78;2090:3;2082:6;2075:4;2067:6;2063:17;2016:78;:::i;:::-;2007:87;;1890:210;;;;;:::o;2120:273::-;2176:5;2225:3;2218:4;2210:6;2206:17;2202:27;2192:2;;2243:1;2240;2233:12;2192:2;2283:6;2270:20;2308:79;2383:3;2375:6;2368:4;2360:6;2356:17;2308:79;:::i;:::-;2299:88;;2182:211;;;;;:::o;2399:139::-;2445:5;2483:6;2470:20;2461:29;;2499:33;2526:5;2499:33;:::i;:::-;2451:87;;;;:::o;2544:262::-;2603:6;2652:2;2640:9;2631:7;2627:23;2623:32;2620:2;;;2668:1;2665;2658:12;2620:2;2711:1;2736:53;2781:7;2772:6;2761:9;2757:22;2736:53;:::i;:::-;2726:63;;2682:117;2610:196;;;;:::o;2812:407::-;2880:6;2888;2937:2;2925:9;2916:7;2912:23;2908:32;2905:2;;;2953:1;2950;2943:12;2905:2;2996:1;3021:53;3066:7;3057:6;3046:9;3042:22;3021:53;:::i;:::-;3011:63;;2967:117;3123:2;3149:53;3194:7;3185:6;3174:9;3170:22;3149:53;:::i;:::-;3139:63;;3094:118;2895:324;;;;;:::o;3225:552::-;3302:6;3310;3318;3367:2;3355:9;3346:7;3342:23;3338:32;3335:2;;;3383:1;3380;3373:12;3335:2;3426:1;3451:53;3496:7;3487:6;3476:9;3472:22;3451:53;:::i;:::-;3441:63;;3397:117;3553:2;3579:53;3624:7;3615:6;3604:9;3600:22;3579:53;:::i;:::-;3569:63;;3524:118;3681:2;3707:53;3752:7;3743:6;3732:9;3728:22;3707:53;:::i;:::-;3697:63;;3652:118;3325:452;;;;;:::o;3783:809::-;3878:6;3886;3894;3902;3951:3;3939:9;3930:7;3926:23;3922:33;3919:2;;;3968:1;3965;3958:12;3919:2;4011:1;4036:53;4081:7;4072:6;4061:9;4057:22;4036:53;:::i;:::-;4026:63;;3982:117;4138:2;4164:53;4209:7;4200:6;4189:9;4185:22;4164:53;:::i;:::-;4154:63;;4109:118;4266:2;4292:53;4337:7;4328:6;4317:9;4313:22;4292:53;:::i;:::-;4282:63;;4237:118;4422:2;4411:9;4407:18;4394:32;4453:18;4445:6;4442:30;4439:2;;;4485:1;4482;4475:12;4439:2;4513:62;4567:7;4558:6;4547:9;4543:22;4513:62;:::i;:::-;4503:72;;4365:220;3909:683;;;;;;;:::o;4598:401::-;4663:6;4671;4720:2;4708:9;4699:7;4695:23;4691:32;4688:2;;;4736:1;4733;4726:12;4688:2;4779:1;4804:53;4849:7;4840:6;4829:9;4825:22;4804:53;:::i;:::-;4794:63;;4750:117;4906:2;4932:50;4974:7;4965:6;4954:9;4950:22;4932:50;:::i;:::-;4922:60;;4877:115;4678:321;;;;;:::o;5005:407::-;5073:6;5081;5130:2;5118:9;5109:7;5105:23;5101:32;5098:2;;;5146:1;5143;5136:12;5098:2;5189:1;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5160:117;5316:2;5342:53;5387:7;5378:6;5367:9;5363:22;5342:53;:::i;:::-;5332:63;;5287:118;5088:324;;;;;:::o;5418:570::-;5513:6;5521;5529;5578:2;5566:9;5557:7;5553:23;5549:32;5546:2;;;5594:1;5591;5584:12;5546:2;5665:1;5654:9;5650:17;5637:31;5695:18;5687:6;5684:30;5681:2;;;5727:1;5724;5717:12;5681:2;5763:80;5835:7;5826:6;5815:9;5811:22;5763:80;:::i;:::-;5745:98;;;;5608:245;5892:2;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5863:118;5536:452;;;;;:::o;5994:256::-;6050:6;6099:2;6087:9;6078:7;6074:23;6070:32;6067:2;;;6115:1;6112;6105:12;6067:2;6158:1;6183:50;6225:7;6216:6;6205:9;6201:22;6183:50;:::i;:::-;6173:60;;6129:114;6057:193;;;;:::o;6256:262::-;6315:6;6364:2;6352:9;6343:7;6339:23;6335:32;6332:2;;;6380:1;6377;6370:12;6332:2;6423:1;6448:53;6493:7;6484:6;6473:9;6469:22;6448:53;:::i;:::-;6438:63;;6394:117;6322:196;;;;:::o;6524:260::-;6582:6;6631:2;6619:9;6610:7;6606:23;6602:32;6599:2;;;6647:1;6644;6637:12;6599:2;6690:1;6715:52;6759:7;6750:6;6739:9;6735:22;6715:52;:::i;:::-;6705:62;;6661:116;6589:195;;;;:::o;6790:282::-;6859:6;6908:2;6896:9;6887:7;6883:23;6879:32;6876:2;;;6924:1;6921;6914:12;6876:2;6967:1;6992:63;7047:7;7038:6;7027:9;7023:22;6992:63;:::i;:::-;6982:73;;6938:127;6866:206;;;;:::o;7078:375::-;7147:6;7196:2;7184:9;7175:7;7171:23;7167:32;7164:2;;;7212:1;7209;7202:12;7164:2;7283:1;7272:9;7268:17;7255:31;7313:18;7305:6;7302:30;7299:2;;;7345:1;7342;7335:12;7299:2;7373:63;7428:7;7419:6;7408:9;7404:22;7373:63;:::i;:::-;7363:73;;7226:220;7154:299;;;;:::o;7459:262::-;7518:6;7567:2;7555:9;7546:7;7542:23;7538:32;7535:2;;;7583:1;7580;7573:12;7535:2;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7525:196;;;;:::o;7727:118::-;7814:24;7832:5;7814:24;:::i;:::-;7809:3;7802:37;7792:53;;:::o;7851:157::-;7956:45;7976:24;7994:5;7976:24;:::i;:::-;7956:45;:::i;:::-;7951:3;7944:58;7934:74;;:::o;8014:109::-;8095:21;8110:5;8095:21;:::i;:::-;8090:3;8083:34;8073:50;;:::o;8129:118::-;8216:24;8234:5;8216:24;:::i;:::-;8211:3;8204:37;8194:53;;:::o;8253:157::-;8358:45;8378:24;8396:5;8378:24;:::i;:::-;8358:45;:::i;:::-;8353:3;8346:58;8336:74;;:::o;8416:360::-;8502:3;8530:38;8562:5;8530:38;:::i;:::-;8584:70;8647:6;8642:3;8584:70;:::i;:::-;8577:77;;8663:52;8708:6;8703:3;8696:4;8689:5;8685:16;8663:52;:::i;:::-;8740:29;8762:6;8740:29;:::i;:::-;8735:3;8731:39;8724:46;;8506:270;;;;;:::o;8782:364::-;8870:3;8898:39;8931:5;8898:39;:::i;:::-;8953:71;9017:6;9012:3;8953:71;:::i;:::-;8946:78;;9033:52;9078:6;9073:3;9066:4;9059:5;9055:16;9033:52;:::i;:::-;9110:29;9132:6;9110:29;:::i;:::-;9105:3;9101:39;9094:46;;8874:272;;;;;:::o;9152:377::-;9258:3;9286:39;9319:5;9286:39;:::i;:::-;9341:89;9423:6;9418:3;9341:89;:::i;:::-;9334:96;;9439:52;9484:6;9479:3;9472:4;9465:5;9461:16;9439:52;:::i;:::-;9516:6;9511:3;9507:16;9500:23;;9262:267;;;;;:::o;9535:366::-;9677:3;9698:67;9762:2;9757:3;9698:67;:::i;:::-;9691:74;;9774:93;9863:3;9774:93;:::i;:::-;9892:2;9887:3;9883:12;9876:19;;9681:220;;;:::o;9907:366::-;10049:3;10070:67;10134:2;10129:3;10070:67;:::i;:::-;10063:74;;10146:93;10235:3;10146:93;:::i;:::-;10264:2;10259:3;10255:12;10248:19;;10053:220;;;:::o;10279:366::-;10421:3;10442:67;10506:2;10501:3;10442:67;:::i;:::-;10435:74;;10518:93;10607:3;10518:93;:::i;:::-;10636:2;10631:3;10627:12;10620:19;;10425:220;;;:::o;10651:366::-;10793:3;10814:67;10878:2;10873:3;10814:67;:::i;:::-;10807:74;;10890:93;10979:3;10890:93;:::i;:::-;11008:2;11003:3;10999:12;10992:19;;10797:220;;;:::o;11023:366::-;11165:3;11186:67;11250:2;11245:3;11186:67;:::i;:::-;11179:74;;11262:93;11351:3;11262:93;:::i;:::-;11380:2;11375:3;11371:12;11364:19;;11169:220;;;:::o;11395:366::-;11537:3;11558:67;11622:2;11617:3;11558:67;:::i;:::-;11551:74;;11634:93;11723:3;11634:93;:::i;:::-;11752:2;11747:3;11743:12;11736:19;;11541:220;;;:::o;11767:366::-;11909:3;11930:67;11994:2;11989:3;11930:67;:::i;:::-;11923:74;;12006:93;12095:3;12006:93;:::i;:::-;12124:2;12119:3;12115:12;12108:19;;11913:220;;;:::o;12139:366::-;12281:3;12302:67;12366:2;12361:3;12302:67;:::i;:::-;12295:74;;12378:93;12467:3;12378:93;:::i;:::-;12496:2;12491:3;12487:12;12480:19;;12285:220;;;:::o;12511:366::-;12653:3;12674:67;12738:2;12733:3;12674:67;:::i;:::-;12667:74;;12750:93;12839:3;12750:93;:::i;:::-;12868:2;12863:3;12859:12;12852:19;;12657:220;;;:::o;12883:398::-;13042:3;13063:83;13144:1;13139:3;13063:83;:::i;:::-;13056:90;;13155:93;13244:3;13155:93;:::i;:::-;13273:1;13268:3;13264:11;13257:18;;13046:235;;;:::o;13287:366::-;13429:3;13450:67;13514:2;13509:3;13450:67;:::i;:::-;13443:74;;13526:93;13615:3;13526:93;:::i;:::-;13644:2;13639:3;13635:12;13628:19;;13433:220;;;:::o;13659:365::-;13801:3;13822:66;13886:1;13881:3;13822:66;:::i;:::-;13815:73;;13897:93;13986:3;13897:93;:::i;:::-;14015:2;14010:3;14006:12;13999:19;;13805:219;;;:::o;14030:118::-;14117:24;14135:5;14117:24;:::i;:::-;14112:3;14105:37;14095:53;;:::o;14154:256::-;14266:3;14281:75;14352:3;14343:6;14281:75;:::i;:::-;14381:2;14376:3;14372:12;14365:19;;14401:3;14394:10;;14270:140;;;;:::o;14416:397::-;14556:3;14571:75;14642:3;14633:6;14571:75;:::i;:::-;14671:2;14666:3;14662:12;14655:19;;14684:75;14755:3;14746:6;14684:75;:::i;:::-;14784:2;14779:3;14775:12;14768:19;;14804:3;14797:10;;14560:253;;;;;:::o;14819:435::-;14999:3;15021:95;15112:3;15103:6;15021:95;:::i;:::-;15014:102;;15133:95;15224:3;15215:6;15133:95;:::i;:::-;15126:102;;15245:3;15238:10;;15003:251;;;;;:::o;15260:379::-;15444:3;15466:147;15609:3;15466:147;:::i;:::-;15459:154;;15630:3;15623:10;;15448:191;;;:::o;15645:222::-;15738:4;15776:2;15765:9;15761:18;15753:26;;15789:71;15857:1;15846:9;15842:17;15833:6;15789:71;:::i;:::-;15743:124;;;;:::o;15873:640::-;16068:4;16106:3;16095:9;16091:19;16083:27;;16120:71;16188:1;16177:9;16173:17;16164:6;16120:71;:::i;:::-;16201:72;16269:2;16258:9;16254:18;16245:6;16201:72;:::i;:::-;16283;16351:2;16340:9;16336:18;16327:6;16283:72;:::i;:::-;16402:9;16396:4;16392:20;16387:2;16376:9;16372:18;16365:48;16430:76;16501:4;16492:6;16430:76;:::i;:::-;16422:84;;16073:440;;;;;;;:::o;16519:210::-;16606:4;16644:2;16633:9;16629:18;16621:26;;16657:65;16719:1;16708:9;16704:17;16695:6;16657:65;:::i;:::-;16611:118;;;;:::o;16735:222::-;16828:4;16866:2;16855:9;16851:18;16843:26;;16879:71;16947:1;16936:9;16932:17;16923:6;16879:71;:::i;:::-;16833:124;;;;:::o;16963:313::-;17076:4;17114:2;17103:9;17099:18;17091:26;;17163:9;17157:4;17153:20;17149:1;17138:9;17134:17;17127:47;17191:78;17264:4;17255:6;17191:78;:::i;:::-;17183:86;;17081:195;;;;:::o;17282:419::-;17448:4;17486:2;17475:9;17471:18;17463:26;;17535:9;17529:4;17525:20;17521:1;17510:9;17506:17;17499:47;17563:131;17689:4;17563:131;:::i;:::-;17555:139;;17453:248;;;:::o;17707:419::-;17873:4;17911:2;17900:9;17896:18;17888:26;;17960:9;17954:4;17950:20;17946:1;17935:9;17931:17;17924:47;17988:131;18114:4;17988:131;:::i;:::-;17980:139;;17878:248;;;:::o;18132:419::-;18298:4;18336:2;18325:9;18321:18;18313:26;;18385:9;18379:4;18375:20;18371:1;18360:9;18356:17;18349:47;18413:131;18539:4;18413:131;:::i;:::-;18405:139;;18303:248;;;:::o;18557:419::-;18723:4;18761:2;18750:9;18746:18;18738:26;;18810:9;18804:4;18800:20;18796:1;18785:9;18781:17;18774:47;18838:131;18964:4;18838:131;:::i;:::-;18830:139;;18728:248;;;:::o;18982:419::-;19148:4;19186:2;19175:9;19171:18;19163:26;;19235:9;19229:4;19225:20;19221:1;19210:9;19206:17;19199:47;19263:131;19389:4;19263:131;:::i;:::-;19255:139;;19153:248;;;:::o;19407:419::-;19573:4;19611:2;19600:9;19596:18;19588:26;;19660:9;19654:4;19650:20;19646:1;19635:9;19631:17;19624:47;19688:131;19814:4;19688:131;:::i;:::-;19680:139;;19578:248;;;:::o;19832:419::-;19998:4;20036:2;20025:9;20021:18;20013:26;;20085:9;20079:4;20075:20;20071:1;20060:9;20056:17;20049:47;20113:131;20239:4;20113:131;:::i;:::-;20105:139;;20003:248;;;:::o;20257:419::-;20423:4;20461:2;20450:9;20446:18;20438:26;;20510:9;20504:4;20500:20;20496:1;20485:9;20481:17;20474:47;20538:131;20664:4;20538:131;:::i;:::-;20530:139;;20428:248;;;:::o;20682:419::-;20848:4;20886:2;20875:9;20871:18;20863:26;;20935:9;20929:4;20925:20;20921:1;20910:9;20906:17;20899:47;20963:131;21089:4;20963:131;:::i;:::-;20955:139;;20853:248;;;:::o;21107:419::-;21273:4;21311:2;21300:9;21296:18;21288:26;;21360:9;21354:4;21350:20;21346:1;21335:9;21331:17;21324:47;21388:131;21514:4;21388:131;:::i;:::-;21380:139;;21278:248;;;:::o;21532:419::-;21698:4;21736:2;21725:9;21721:18;21713:26;;21785:9;21779:4;21775:20;21771:1;21760:9;21756:17;21749:47;21813:131;21939:4;21813:131;:::i;:::-;21805:139;;21703:248;;;:::o;21957:222::-;22050:4;22088:2;22077:9;22073:18;22065:26;;22101:71;22169:1;22158:9;22154:17;22145:6;22101:71;:::i;:::-;22055:124;;;;:::o;22185:129::-;22219:6;22246:20;;:::i;:::-;22236:30;;22275:33;22303:4;22295:6;22275:33;:::i;:::-;22226:88;;;:::o;22320:75::-;22353:6;22386:2;22380:9;22370:19;;22360:35;:::o;22401:307::-;22462:4;22552:18;22544:6;22541:30;22538:2;;;22574:18;;:::i;:::-;22538:2;22612:29;22634:6;22612:29;:::i;:::-;22604:37;;22696:4;22690;22686:15;22678:23;;22467:241;;;:::o;22714:308::-;22776:4;22866:18;22858:6;22855:30;22852:2;;;22888:18;;:::i;:::-;22852:2;22926:29;22948:6;22926:29;:::i;:::-;22918:37;;23010:4;23004;23000:15;22992:23;;22781:241;;;:::o;23028:98::-;23079:6;23113:5;23107:12;23097:22;;23086:40;;;:::o;23132:99::-;23184:6;23218:5;23212:12;23202:22;;23191:40;;;:::o;23237:168::-;23320:11;23354:6;23349:3;23342:19;23394:4;23389:3;23385:14;23370:29;;23332:73;;;;:::o;23411:147::-;23512:11;23549:3;23534:18;;23524:34;;;;:::o;23564:169::-;23648:11;23682:6;23677:3;23670:19;23722:4;23717:3;23713:14;23698:29;;23660:73;;;;:::o;23739:148::-;23841:11;23878:3;23863:18;;23853:34;;;;:::o;23893:305::-;23933:3;23952:20;23970:1;23952:20;:::i;:::-;23947:25;;23986:20;24004:1;23986:20;:::i;:::-;23981:25;;24140:1;24072:66;24068:74;24065:1;24062:81;24059:2;;;24146:18;;:::i;:::-;24059:2;24190:1;24187;24183:9;24176:16;;23937:261;;;;:::o;24204:348::-;24244:7;24267:20;24285:1;24267:20;:::i;:::-;24262:25;;24301:20;24319:1;24301:20;:::i;:::-;24296:25;;24489:1;24421:66;24417:74;24414:1;24411:81;24406:1;24399:9;24392:17;24388:105;24385:2;;;24496:18;;:::i;:::-;24385:2;24544:1;24541;24537:9;24526:20;;24252:300;;;;:::o;24558:96::-;24595:7;24624:24;24642:5;24624:24;:::i;:::-;24613:35;;24603:51;;;:::o;24660:90::-;24694:7;24737:5;24730:13;24723:21;24712:32;;24702:48;;;:::o;24756:77::-;24793:7;24822:5;24811:16;;24801:32;;;:::o;24839:149::-;24875:7;24915:66;24908:5;24904:78;24893:89;;24883:105;;;:::o;24994:126::-;25031:7;25071:42;25064:5;25060:54;25049:65;;25039:81;;;:::o;25126:77::-;25163:7;25192:5;25181:16;;25171:32;;;:::o;25209:154::-;25293:6;25288:3;25283;25270:30;25355:1;25346:6;25341:3;25337:16;25330:27;25260:103;;;:::o;25369:307::-;25437:1;25447:113;25461:6;25458:1;25455:13;25447:113;;;25546:1;25541:3;25537:11;25531:18;25527:1;25522:3;25518:11;25511:39;25483:2;25480:1;25476:10;25471:15;;25447:113;;;25578:6;25575:1;25572:13;25569:2;;;25658:1;25649:6;25644:3;25640:16;25633:27;25569:2;25418:258;;;;:::o;25682:320::-;25726:6;25763:1;25757:4;25753:12;25743:22;;25810:1;25804:4;25800:12;25831:18;25821:2;;25887:4;25879:6;25875:17;25865:27;;25821:2;25949;25941:6;25938:14;25918:18;25915:38;25912:2;;;25968:18;;:::i;:::-;25912:2;25733:269;;;;:::o;26008:281::-;26091:27;26113:4;26091:27;:::i;:::-;26083:6;26079:40;26221:6;26209:10;26206:22;26185:18;26173:10;26170:34;26167:62;26164:2;;;26232:18;;:::i;:::-;26164:2;26272:10;26268:2;26261:22;26051:238;;;:::o;26295:233::-;26334:3;26357:24;26375:5;26357:24;:::i;:::-;26348:33;;26403:66;26396:5;26393:77;26390:2;;;26473:18;;:::i;:::-;26390:2;26520:1;26513:5;26509:13;26502:20;;26338:190;;;:::o;26534:100::-;26573:7;26602:26;26622:5;26602:26;:::i;:::-;26591:37;;26581:53;;;:::o;26640:79::-;26679:7;26708:5;26697:16;;26687:32;;;:::o;26725:94::-;26764:7;26793:20;26807:5;26793:20;:::i;:::-;26782:31;;26772:47;;;:::o;26825:180::-;26873:77;26870:1;26863:88;26970:4;26967:1;26960:15;26994:4;26991:1;26984:15;27011:180;27059:77;27056:1;27049:88;27156:4;27153:1;27146:15;27180:4;27177:1;27170:15;27197:180;27245:77;27242:1;27235:88;27342:4;27339:1;27332:15;27366:4;27363:1;27356:15;27383:102;27424:6;27475:2;27471:7;27466:2;27459:5;27455:14;27451:28;27441:38;;27431:54;;;:::o;27491:94::-;27524:8;27572:5;27568:2;27564:14;27543:35;;27533:52;;;:::o;27591:225::-;27731:34;27727:1;27719:6;27715:14;27708:58;27800:8;27795:2;27787:6;27783:15;27776:33;27697:119;:::o;27822:173::-;27962:25;27958:1;27950:6;27946:14;27939:49;27928:67;:::o;28001:175::-;28141:27;28137:1;28129:6;28125:14;28118:51;28107:69;:::o;28182:168::-;28322:20;28318:1;28310:6;28306:14;28299:44;28288:62;:::o;28356:171::-;28496:23;28492:1;28484:6;28480:14;28473:47;28462:65;:::o;28533:166::-;28673:18;28669:1;28661:6;28657:14;28650:42;28639:60;:::o;28705:170::-;28845:22;28841:1;28833:6;28829:14;28822:46;28811:64;:::o;28881:182::-;29021:34;29017:1;29009:6;29005:14;28998:58;28987:76;:::o;29069:172::-;29209:24;29205:1;29197:6;29193:14;29186:48;29175:66;:::o;29247:114::-;29353:8;:::o;29367:169::-;29507:21;29503:1;29495:6;29491:14;29484:45;29473:63;:::o;29542:159::-;29682:11;29678:1;29670:6;29666:14;29659:35;29648:53;:::o;29707:122::-;29780:24;29798:5;29780:24;:::i;:::-;29773:5;29770:35;29760:2;;29819:1;29816;29809:12;29760:2;29750:79;:::o;29835:116::-;29905:21;29920:5;29905:21;:::i;:::-;29898:5;29895:32;29885:2;;29941:1;29938;29931:12;29885:2;29875:76;:::o;29957:122::-;30030:24;30048:5;30030:24;:::i;:::-;30023:5;30020:35;30010:2;;30069:1;30066;30059:12;30010:2;30000:79;:::o;30085:120::-;30157:23;30174:5;30157:23;:::i;:::-;30150:5;30147:34;30137:2;;30195:1;30192;30185:12;30137:2;30127:78;:::o;30211:122::-;30284:24;30302:5;30284:24;:::i;:::-;30277:5;30274:35;30264:2;;30323:1;30320;30313:12;30264:2;30254:79;:::o

Swarm Source

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