ETH Price: $2,536.10 (-5.30%)
Gas: 2 Gwei

Token

Poorlydrawn.wtf (PD.WTF)
 

Overview

Max Total Supply

390 PD.WTF

Holders

155

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
cryptonautb.eth
Balance
2 PD.WTF
0x23046D9aa616A390Aab7fAbAFC944A593141a66a
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:
Poorlydrawn

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 7 of 7: Poorlydrawn.sol
// SPDX-License-Identifier: None

pragma solidity ^0.8.4;

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

contract Poorlydrawn is ERC721A, ERC721AQueryable, Ownable {
  uint256 public mintPrice = 0.0035 ether;
  uint256 public maxSupply = 5000;
  uint256 public maxPerTxn = 10;
  uint256 public maxFree = 1;

  string tokenBaseUri = "";

  bool public paused = true;

  address public immutable proxyRegistryAddress;

  mapping(address => uint256) private _freeMintedCount;

  constructor(address _proxyRegistryAddress) ERC721A("Poorlydrawn.wtf", "PD.WTF") {
    proxyRegistryAddress = _proxyRegistryAddress;
  }

  function mint(uint256 _quantity) external payable {
    require(!paused, "Minting is paused");

    uint256 _totalSupply = totalSupply();

    require(_totalSupply + _quantity <= maxSupply, "Exceeds Supply");
    require(_quantity <= maxPerTxn, "Exceeds max per tx");

    // Free Mints
    uint256 payForCount = _quantity;
    uint256 freeMintCount = _freeMintedCount[msg.sender];

    if (freeMintCount < maxFree) {
      payForCount = _quantity - maxFree;
      _freeMintedCount[msg.sender] = maxFree;
    }

    require(msg.value >= payForCount * mintPrice, "Ether sent is not correct");

    _mint(msg.sender, _quantity);
  }

  function freeMintedCount(address owner) external view returns (uint256) {
    return _freeMintedCount[owner];
  }

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

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

  function isApprovedForAll(address owner, address operator)
    public
    view
    override(ERC721A)
    returns (bool)
  {
    OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(
      proxyRegistryAddress
    );

    if (address(proxyRegistry.proxies(owner)) == operator) {
      return true;
    }

    return super.isApprovedForAll(owner, operator);
  }

  function setBaseURI(string calldata _newBaseUri) external onlyOwner {
    tokenBaseUri = _newBaseUri;
  }

  function setMaxFree(uint256 _maxFree) public onlyOwner {
    maxFree = _maxFree;
  }

  function setMintPrice(uint256 _mintPrice) public onlyOwner {
    mintPrice = _mintPrice;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function flipSale() external onlyOwner {
    paused = !paused;
  }

  function collectReserves() external onlyOwner {
    require(totalSupply() <= maxSupply, "No more nfts");
    _mint(msg.sender, 100);
  }

    function airdrop(address _to, uint256 _mintAmount) external onlyOwner {
    require(totalSupply() <= maxSupply, "No more nfts");
    _mint(_to, _mintAmount);
  }

  function withdraw() external onlyOwner {
    require(
      payable(owner()).send(address(this).balance),
      "Withdraw Unsuccessful"
    );
  }
}

contract OwnableDelegateProxy {}

contract OpenSeaProxyRegistry {
  mapping(address => OwnableDelegateProxy) public proxies;
}

File 1 of 7: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 2 of 7: 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 (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.4;

import './IERC721AQueryable.sol';
import './ERC721A.sol';

/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

File 4 of 7: 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 7: IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

File 6 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"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":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"collectReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"freeMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","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":"_newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFree","type":"uint256"}],"name":"setMaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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"}]

60a0604052660c6f3b40b6c000600955611388600a55600a600b556001600c5560405180602001604052806000815250600d90805190602001906200004692919062000280565b506001600e60006101000a81548160ff0219169083151502179055503480156200006f57600080fd5b506040516200422a3803806200422a833981810160405281019062000095919062000347565b6040518060400160405280600f81526020017f506f6f726c79647261776e2e77746600000000000000000000000000000000008152506040518060400160405280600681526020017f50442e575446000000000000000000000000000000000000000000000000000081525081600290805190602001906200011992919062000280565b5080600390805190602001906200013292919062000280565b5062000143620001a960201b60201c565b60008190555050506200016b6200015f620001b260201b60201c565b620001ba60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250505062000426565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028e90620003a7565b90600052602060002090601f016020900481019282620002b25760008555620002fe565b82601f10620002cd57805160ff1916838001178555620002fe565b82800160010185558215620002fe579182015b82811115620002fd578251825591602001919060010190620002e0565b5b5090506200030d919062000311565b5090565b5b808211156200032c57600081600090555060010162000312565b5090565b60008151905062000341816200040c565b92915050565b6000602082840312156200035a57600080fd5b60006200036a8482850162000330565b91505092915050565b6000620003808262000387565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620003c057607f821691505b60208210811415620003d757620003d6620003dd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b620004178162000373565b81146200042357600080fd5b50565b60805160601c613dde6200044c60003960008181611d300152611de30152613dde6000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107c4578063d755bf99146107ef578063e985e9c514610818578063f2fde38b14610855578063f4a0a5281461087e5761021a565b8063a22cb465146106cd578063b88d4fde146106f6578063c23dc68f1461071f578063c87b56dd1461075c578063cd7c0326146107995761021a565b80638da5cb5b116100f25780638da5cb5b146105e157806395d89b411461060c578063981332351461063757806399a2557a14610674578063a0712d68146106b15761021a565b8063715018a61461054d5780637ba5e621146105645780638462151c1461057b5780638ba4cc3c146105b85761021a565b806342842e0e116101a65780635c975abb116101755780635c975abb146104545780636352211e1461047f5780636817c76c146104bc5780636f8b44b0146104e757806370a08231146105105761021a565b806342842e0e1461039a578063485a68a3146103c357806355f804b3146103ee5780635bbb2177146104175761021a565b8063095ea7b3116101ed578063095ea7b3146102db57806318160ddd1461030457806323b872dd1461032f5780633cb51994146103585780633ccfd60b146103835761021a565b806301ffc9a71461021f578063029877b61461025c57806306fdde0314610273578063081812fc1461029e575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906130b9565b6108a7565b6040516102539190613633565b60405180910390f35b34801561026857600080fd5b50610271610939565b005b34801561027f57600080fd5b50610288610a0e565b604051610295919061364e565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190613179565b610aa0565b6040516102d29190613588565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd9190612fed565b610b1c565b005b34801561031057600080fd5b50610319610cc3565b604051610326919061378b565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190612ee7565b610cda565b005b34801561036457600080fd5b5061036d610cea565b60405161037a919061378b565b60405180910390f35b34801561038f57600080fd5b50610398610cf0565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190612ee7565b610de9565b005b3480156103cf57600080fd5b506103d8610e09565b6040516103e5919061378b565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613134565b610e0f565b005b34801561042357600080fd5b5061043e60048036038101906104399190613078565b610ea1565b60405161044b91906135ef565b60405180910390f35b34801561046057600080fd5b50610469610fd4565b6040516104769190613633565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a19190613179565b610fe7565b6040516104b39190613588565b60405180910390f35b3480156104c857600080fd5b506104d1610ff9565b6040516104de919061378b565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190613179565b610fff565b005b34801561051c57600080fd5b5061053760048036038101906105329190612e82565b611085565b604051610544919061378b565b60405180910390f35b34801561055957600080fd5b5061056261113e565b005b34801561057057600080fd5b506105796111c6565b005b34801561058757600080fd5b506105a2600480360381019061059d9190612e82565b61126e565b6040516105af9190613611565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190612fed565b611404565b005b3480156105ed57600080fd5b506105f66114da565b6040516106039190613588565b60405180910390f35b34801561061857600080fd5b50610621611504565b60405161062e919061364e565b60405180910390f35b34801561064357600080fd5b5061065e60048036038101906106599190612e82565b611596565b60405161066b919061378b565b60405180910390f35b34801561068057600080fd5b5061069b60048036038101906106969190613029565b6115df565b6040516106a89190613611565b60405180910390f35b6106cb60048036038101906106c69190613179565b61183f565b005b3480156106d957600080fd5b506106f460048036038101906106ef9190612fb1565b611a3a565b005b34801561070257600080fd5b5061071d60048036038101906107189190612f36565b611bb2565b005b34801561072b57600080fd5b5061074660048036038101906107419190613179565b611c25565b6040516107539190613770565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190613179565b611c8f565b604051610790919061364e565b60405180910390f35b3480156107a557600080fd5b506107ae611d2e565b6040516107bb9190613588565b60405180910390f35b3480156107d057600080fd5b506107d9611d52565b6040516107e6919061378b565b60405180910390f35b3480156107fb57600080fd5b5061081660048036038101906108119190613179565b611d58565b005b34801561082457600080fd5b5061083f600480360381019061083a9190612eab565b611dde565b60405161084c9190613633565b60405180910390f35b34801561086157600080fd5b5061087c60048036038101906108779190612e82565b611ede565b005b34801561088a57600080fd5b506108a560048036038101906108a09190613179565b611fd6565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109325750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61094161205c565b73ffffffffffffffffffffffffffffffffffffffff1661095f6114da565b73ffffffffffffffffffffffffffffffffffffffff16146109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac906136f0565b60405180910390fd5b600a546109c0610cc3565b1115610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f890613750565b60405180910390fd5b610a0c336064612064565b565b606060028054610a1d90613a9d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4990613a9d565b8015610a965780601f10610a6b57610100808354040283529160200191610a96565b820191906000526020600020905b815481529060010190602001808311610a7957829003601f168201915b5050505050905090565b6000610aab82612238565b610ae1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2782612297565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b8f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bae612365565b73ffffffffffffffffffffffffffffffffffffffff1614610c1157610bda81610bd5612365565b611dde565b610c10576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ccd61236d565b6001546000540303905090565b610ce5838383612376565b505050565b600b5481565b610cf861205c565b73ffffffffffffffffffffffffffffffffffffffff16610d166114da565b73ffffffffffffffffffffffffffffffffffffffff1614610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d63906136f0565b60405180910390fd5b610d746114da565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde906136d0565b60405180910390fd5b565b610e0483838360405180602001604052806000815250611bb2565b505050565b600c5481565b610e1761205c565b73ffffffffffffffffffffffffffffffffffffffff16610e356114da565b73ffffffffffffffffffffffffffffffffffffffff1614610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e82906136f0565b60405180910390fd5b8181600d9190610e9c929190612bd6565b505050565b606060008251905060008167ffffffffffffffff811115610eeb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610f2457816020015b610f11612c5c565b815260200190600190039081610f095790505b50905060005b828114610fc957610f7a858281518110610f6d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611c25565b828281518110610fb3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181905250806001019050610f2a565b508092505050919050565b600e60009054906101000a900460ff1681565b6000610ff282612297565b9050919050565b60095481565b61100761205c565b73ffffffffffffffffffffffffffffffffffffffff166110256114da565b73ffffffffffffffffffffffffffffffffffffffff161461107b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611072906136f0565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ed576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61114661205c565b73ffffffffffffffffffffffffffffffffffffffff166111646114da565b73ffffffffffffffffffffffffffffffffffffffff16146111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b1906136f0565b60405180910390fd5b6111c46000612720565b565b6111ce61205c565b73ffffffffffffffffffffffffffffffffffffffff166111ec6114da565b73ffffffffffffffffffffffffffffffffffffffff1614611242576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611239906136f0565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6060600080600061127e85611085565b905060008167ffffffffffffffff8111156112c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112f05781602001602082028036833780820191505090505b5090506112fb612c5c565b600061130561236d565b90505b8386146113f657611318816127e6565b9150816040015115611329576113eb565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461136957816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156113ea57808387806001019850815181106113dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b5b806001019050611308565b508195505050505050919050565b61140c61205c565b73ffffffffffffffffffffffffffffffffffffffff1661142a6114da565b73ffffffffffffffffffffffffffffffffffffffff1614611480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611477906136f0565b60405180910390fd5b600a5461148b610cc3565b11156114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390613750565b60405180910390fd5b6114d68282612064565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461151390613a9d565b80601f016020809104026020016040519081016040528092919081815260200182805461153f90613a9d565b801561158c5780601f106115615761010080835404028352916020019161158c565b820191906000526020600020905b81548152906001019060200180831161156f57829003601f168201915b5050505050905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606081831061161a576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611625612811565b905061162f61236d565b8510156116415761163e61236d565b94505b8084111561164d578093505b600061165887611085565b90508486101561167b576000868603905081811015611675578091505b50611680565b600090505b60008167ffffffffffffffff8111156116c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116f05781602001602082028036833780820191505090505b50905060008214156117085780945050505050611838565b600061171388611c25565b90506000816040015161172857816000015190505b60008990505b88811415801561173e5750848714155b1561182a5761174c816127e6565b925082604001511561175d5761181f565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461179d57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561181e5780848880600101995081518110611811577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b5b80600101905061172e565b508583528296505050505050505b9392505050565b600e60009054906101000a900460ff161561188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613730565b60405180910390fd5b6000611899610cc3565b9050600a5482826118aa91906138dd565b11156118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290613670565b60405180910390fd5b600b54821115611930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611927906136b0565b60405180910390fd5b60008290506000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c548110156119da57600c5484611991919061398d565b9150600c54600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600954826119e89190613933565b341015611a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2190613710565b60405180910390fd5b611a343385612064565b50505050565b611a42612365565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ab4612365565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b61612365565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ba69190613633565b60405180910390a35050565b611bbd848484612376565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c1f57611be88484848461281a565b611c1e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611c2d612c5c565b611c35612c5c565b611c3d61236d565b831080611c515750611c4d612811565b8310155b15611c5f5780915050611c8a565b611c68836127e6565b9050806040015115611c7d5780915050611c8a565b611c868361297a565b9150505b919050565b6060611c9a82612238565b611cd0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611cda61299a565b9050600081511415611cfb5760405180602001604052806000815250611d26565b80611d0584612a2c565b604051602001611d16929190613559565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a5481565b611d6061205c565b73ffffffffffffffffffffffffffffffffffffffff16611d7e6114da565b73ffffffffffffffffffffffffffffffffffffffff1614611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb906136f0565b60405180910390fd5b80600c8190555050565b6000807f000000000000000000000000000000000000000000000000000000000000000090508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611e549190613588565b60206040518083038186803b158015611e6c57600080fd5b505afa158015611e80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ea4919061310b565b73ffffffffffffffffffffffffffffffffffffffff161415611eca576001915050611ed8565b611ed48484612a86565b9150505b92915050565b611ee661205c565b73ffffffffffffffffffffffffffffffffffffffff16611f046114da565b73ffffffffffffffffffffffffffffffffffffffff1614611f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f51906136f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc190613690565b60405180910390fd5b611fd381612720565b50565b611fde61205c565b73ffffffffffffffffffffffffffffffffffffffff16611ffc6114da565b73ffffffffffffffffffffffffffffffffffffffff1614612052576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612049906136f0565b60405180910390fd5b8060098190555050565b600033905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120d1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561210c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121196000848385612b1a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161217e60018414612b20565b901b60a042901b61218e85612b2a565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106121b4578160008190555050506122336000848385612b34565b505050565b60008161224361236d565b11158015612252575060005482105b8015612290575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806122a661236d565b1161232e5760005481101561232d5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561232b575b60008114156123215760046000836001900393508381526020019081526020016000205490506122f6565b8092505050612360565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061238182612297565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146123e8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612409612365565b73ffffffffffffffffffffffffffffffffffffffff161480612438575061243785612432612365565b611dde565b5b8061247d5750612446612365565b73ffffffffffffffffffffffffffffffffffffffff1661246584610aa0565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806124b6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561251d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61252a8585856001612b1a565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61262786612b2a565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156126b15760006001840190506000600460008381526020019081526020016000205414156126af5760005481146126ae578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127198585856001612b34565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127ee612c5c565b61280a6004600084815260200190815260200160002054612b3a565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612840612365565b8786866040518563ffffffff1660e01b815260040161286294939291906135a3565b602060405180830381600087803b15801561287c57600080fd5b505af19250505080156128ad57506040513d601f19601f820116820180604052508101906128aa91906130e2565b60015b612927573d80600081146128dd576040519150601f19603f3d011682016040523d82523d6000602084013e6128e2565b606091505b5060008151141561291f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b612982612c5c565b61299361298e83612297565b612b3a565b9050919050565b6060600d80546129a990613a9d565b80601f01602080910402602001604051908101604052809291908181526020018280546129d590613a9d565b8015612a225780601f106129f757610100808354040283529160200191612a22565b820191906000526020600020905b815481529060010190602001808311612a0557829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015612a7257600183039250600a81066030018353600a81049050612a52565b508181036020830392508083525050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b6000819050919050565b6000819050919050565b50505050565b612b42612c5c565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c010000000000000000000000000000000000000000000000000000000083161415816040019015159081151581525050919050565b828054612be290613a9d565b90600052602060002090601f016020900481019282612c045760008555612c4b565b82601f10612c1d57803560ff1916838001178555612c4b565b82800160010185558215612c4b579182015b82811115612c4a578235825591602001919060010190612c2f565b5b509050612c589190612c9f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612cb8576000816000905550600101612ca0565b5090565b6000612ccf612cca846137cb565b6137a6565b90508083825260208201905082856020860282011115612cee57600080fd5b60005b85811015612d1e5781612d048882612e6d565b845260208401935060208301925050600181019050612cf1565b5050509392505050565b6000612d3b612d36846137f7565b6137a6565b905082815260208101848484011115612d5357600080fd5b612d5e848285613a5b565b509392505050565b600081359050612d7581613d35565b92915050565b600082601f830112612d8c57600080fd5b8135612d9c848260208601612cbc565b91505092915050565b600081359050612db481613d4c565b92915050565b600081359050612dc981613d63565b92915050565b600081519050612dde81613d63565b92915050565b600082601f830112612df557600080fd5b8135612e05848260208601612d28565b91505092915050565b600081519050612e1d81613d7a565b92915050565b60008083601f840112612e3557600080fd5b8235905067ffffffffffffffff811115612e4e57600080fd5b602083019150836001820283011115612e6657600080fd5b9250929050565b600081359050612e7c81613d91565b92915050565b600060208284031215612e9457600080fd5b6000612ea284828501612d66565b91505092915050565b60008060408385031215612ebe57600080fd5b6000612ecc85828601612d66565b9250506020612edd85828601612d66565b9150509250929050565b600080600060608486031215612efc57600080fd5b6000612f0a86828701612d66565b9350506020612f1b86828701612d66565b9250506040612f2c86828701612e6d565b9150509250925092565b60008060008060808587031215612f4c57600080fd5b6000612f5a87828801612d66565b9450506020612f6b87828801612d66565b9350506040612f7c87828801612e6d565b925050606085013567ffffffffffffffff811115612f9957600080fd5b612fa587828801612de4565b91505092959194509250565b60008060408385031215612fc457600080fd5b6000612fd285828601612d66565b9250506020612fe385828601612da5565b9150509250929050565b6000806040838503121561300057600080fd5b600061300e85828601612d66565b925050602061301f85828601612e6d565b9150509250929050565b60008060006060848603121561303e57600080fd5b600061304c86828701612d66565b935050602061305d86828701612e6d565b925050604061306e86828701612e6d565b9150509250925092565b60006020828403121561308a57600080fd5b600082013567ffffffffffffffff8111156130a457600080fd5b6130b084828501612d7b565b91505092915050565b6000602082840312156130cb57600080fd5b60006130d984828501612dba565b91505092915050565b6000602082840312156130f457600080fd5b600061310284828501612dcf565b91505092915050565b60006020828403121561311d57600080fd5b600061312b84828501612e0e565b91505092915050565b6000806020838503121561314757600080fd5b600083013567ffffffffffffffff81111561316157600080fd5b61316d85828601612e23565b92509250509250929050565b60006020828403121561318b57600080fd5b600061319984828501612e6d565b91505092915050565b60006131ae83836134a8565b60608301905092915050565b60006131c6838361352c565b60208301905092915050565b6131db816139c1565b82525050565b6131ea816139c1565b82525050565b60006131fb82613848565b613205818561388e565b935061321083613828565b8060005b8381101561324157815161322888826131a2565b975061323383613874565b925050600181019050613214565b5085935050505092915050565b600061325982613853565b613263818561389f565b935061326e83613838565b8060005b8381101561329f57815161328688826131ba565b975061329183613881565b925050600181019050613272565b5085935050505092915050565b6132b5816139d3565b82525050565b6132c4816139d3565b82525050565b60006132d58261385e565b6132df81856138b0565b93506132ef818560208601613a6a565b6132f881613b8d565b840191505092915050565b600061330e82613869565b61331881856138c1565b9350613328818560208601613a6a565b61333181613b8d565b840191505092915050565b600061334782613869565b61335181856138d2565b9350613361818560208601613a6a565b80840191505092915050565b600061337a600e836138c1565b915061338582613b9e565b602082019050919050565b600061339d6026836138c1565b91506133a882613bc7565b604082019050919050565b60006133c06012836138c1565b91506133cb82613c16565b602082019050919050565b60006133e36015836138c1565b91506133ee82613c3f565b602082019050919050565b60006134066005836138d2565b915061341182613c68565b600582019050919050565b60006134296020836138c1565b915061343482613c91565b602082019050919050565b600061344c6019836138c1565b915061345782613cba565b602082019050919050565b600061346f6011836138c1565b915061347a82613ce3565b602082019050919050565b6000613492600c836138c1565b915061349d82613d0c565b602082019050919050565b6060820160008201516134be60008501826131d2565b5060208201516134d1602085018261354a565b5060408201516134e460408501826132ac565b50505050565b60608201600082015161350060008501826131d2565b506020820151613513602085018261354a565b50604082015161352660408501826132ac565b50505050565b61353581613a3d565b82525050565b61354481613a3d565b82525050565b61355381613a47565b82525050565b6000613565828561333c565b9150613571828461333c565b915061357c826133f9565b91508190509392505050565b600060208201905061359d60008301846131e1565b92915050565b60006080820190506135b860008301876131e1565b6135c560208301866131e1565b6135d2604083018561353b565b81810360608301526135e481846132ca565b905095945050505050565b6000602082019050818103600083015261360981846131f0565b905092915050565b6000602082019050818103600083015261362b818461324e565b905092915050565b600060208201905061364860008301846132bb565b92915050565b600060208201905081810360008301526136688184613303565b905092915050565b600060208201905081810360008301526136898161336d565b9050919050565b600060208201905081810360008301526136a981613390565b9050919050565b600060208201905081810360008301526136c9816133b3565b9050919050565b600060208201905081810360008301526136e9816133d6565b9050919050565b600060208201905081810360008301526137098161341c565b9050919050565b600060208201905081810360008301526137298161343f565b9050919050565b6000602082019050818103600083015261374981613462565b9050919050565b6000602082019050818103600083015261376981613485565b9050919050565b600060608201905061378560008301846134ea565b92915050565b60006020820190506137a0600083018461353b565b92915050565b60006137b06137c1565b90506137bc8282613acf565b919050565b6000604051905090565b600067ffffffffffffffff8211156137e6576137e5613b5e565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561381257613811613b5e565b5b61381b82613b8d565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138e882613a3d565b91506138f383613a3d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561392857613927613b00565b5b828201905092915050565b600061393e82613a3d565b915061394983613a3d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561398257613981613b00565b5b828202905092915050565b600061399882613a3d565b91506139a383613a3d565b9250828210156139b6576139b5613b00565b5b828203905092915050565b60006139cc82613a1d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613a16826139c1565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613a88578082015181840152602081019050613a6d565b83811115613a97576000848401525b50505050565b60006002820490506001821680613ab557607f821691505b60208210811415613ac957613ac8613b2f565b5b50919050565b613ad882613b8d565b810181811067ffffffffffffffff82111715613af757613af6613b5e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4578636565647320537570706c79000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178207065722074780000000000000000000000000000600082015250565b7f576974686472617720556e7375636365737366756c0000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4d696e74696e6720697320706175736564000000000000000000000000000000600082015250565b7f4e6f206d6f7265206e6674730000000000000000000000000000000000000000600082015250565b613d3e816139c1565b8114613d4957600080fd5b50565b613d55816139d3565b8114613d6057600080fd5b50565b613d6c816139df565b8114613d7757600080fd5b50565b613d8381613a0b565b8114613d8e57600080fd5b50565b613d9a81613a3d565b8114613da557600080fd5b5056fea264697066735822122008ae6e2bca8f70d29083a51daa5619dd714aaa274ffbf5e8c9450155092b406064736f6c63430008040033000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063715018a611610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107c4578063d755bf99146107ef578063e985e9c514610818578063f2fde38b14610855578063f4a0a5281461087e5761021a565b8063a22cb465146106cd578063b88d4fde146106f6578063c23dc68f1461071f578063c87b56dd1461075c578063cd7c0326146107995761021a565b80638da5cb5b116100f25780638da5cb5b146105e157806395d89b411461060c578063981332351461063757806399a2557a14610674578063a0712d68146106b15761021a565b8063715018a61461054d5780637ba5e621146105645780638462151c1461057b5780638ba4cc3c146105b85761021a565b806342842e0e116101a65780635c975abb116101755780635c975abb146104545780636352211e1461047f5780636817c76c146104bc5780636f8b44b0146104e757806370a08231146105105761021a565b806342842e0e1461039a578063485a68a3146103c357806355f804b3146103ee5780635bbb2177146104175761021a565b8063095ea7b3116101ed578063095ea7b3146102db57806318160ddd1461030457806323b872dd1461032f5780633cb51994146103585780633ccfd60b146103835761021a565b806301ffc9a71461021f578063029877b61461025c57806306fdde0314610273578063081812fc1461029e575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906130b9565b6108a7565b6040516102539190613633565b60405180910390f35b34801561026857600080fd5b50610271610939565b005b34801561027f57600080fd5b50610288610a0e565b604051610295919061364e565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190613179565b610aa0565b6040516102d29190613588565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd9190612fed565b610b1c565b005b34801561031057600080fd5b50610319610cc3565b604051610326919061378b565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190612ee7565b610cda565b005b34801561036457600080fd5b5061036d610cea565b60405161037a919061378b565b60405180910390f35b34801561038f57600080fd5b50610398610cf0565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190612ee7565b610de9565b005b3480156103cf57600080fd5b506103d8610e09565b6040516103e5919061378b565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613134565b610e0f565b005b34801561042357600080fd5b5061043e60048036038101906104399190613078565b610ea1565b60405161044b91906135ef565b60405180910390f35b34801561046057600080fd5b50610469610fd4565b6040516104769190613633565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a19190613179565b610fe7565b6040516104b39190613588565b60405180910390f35b3480156104c857600080fd5b506104d1610ff9565b6040516104de919061378b565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190613179565b610fff565b005b34801561051c57600080fd5b5061053760048036038101906105329190612e82565b611085565b604051610544919061378b565b60405180910390f35b34801561055957600080fd5b5061056261113e565b005b34801561057057600080fd5b506105796111c6565b005b34801561058757600080fd5b506105a2600480360381019061059d9190612e82565b61126e565b6040516105af9190613611565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190612fed565b611404565b005b3480156105ed57600080fd5b506105f66114da565b6040516106039190613588565b60405180910390f35b34801561061857600080fd5b50610621611504565b60405161062e919061364e565b60405180910390f35b34801561064357600080fd5b5061065e60048036038101906106599190612e82565b611596565b60405161066b919061378b565b60405180910390f35b34801561068057600080fd5b5061069b60048036038101906106969190613029565b6115df565b6040516106a89190613611565b60405180910390f35b6106cb60048036038101906106c69190613179565b61183f565b005b3480156106d957600080fd5b506106f460048036038101906106ef9190612fb1565b611a3a565b005b34801561070257600080fd5b5061071d60048036038101906107189190612f36565b611bb2565b005b34801561072b57600080fd5b5061074660048036038101906107419190613179565b611c25565b6040516107539190613770565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190613179565b611c8f565b604051610790919061364e565b60405180910390f35b3480156107a557600080fd5b506107ae611d2e565b6040516107bb9190613588565b60405180910390f35b3480156107d057600080fd5b506107d9611d52565b6040516107e6919061378b565b60405180910390f35b3480156107fb57600080fd5b5061081660048036038101906108119190613179565b611d58565b005b34801561082457600080fd5b5061083f600480360381019061083a9190612eab565b611dde565b60405161084c9190613633565b60405180910390f35b34801561086157600080fd5b5061087c60048036038101906108779190612e82565b611ede565b005b34801561088a57600080fd5b506108a560048036038101906108a09190613179565b611fd6565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109325750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61094161205c565b73ffffffffffffffffffffffffffffffffffffffff1661095f6114da565b73ffffffffffffffffffffffffffffffffffffffff16146109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac906136f0565b60405180910390fd5b600a546109c0610cc3565b1115610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f890613750565b60405180910390fd5b610a0c336064612064565b565b606060028054610a1d90613a9d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4990613a9d565b8015610a965780601f10610a6b57610100808354040283529160200191610a96565b820191906000526020600020905b815481529060010190602001808311610a7957829003601f168201915b5050505050905090565b6000610aab82612238565b610ae1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2782612297565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b8f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bae612365565b73ffffffffffffffffffffffffffffffffffffffff1614610c1157610bda81610bd5612365565b611dde565b610c10576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ccd61236d565b6001546000540303905090565b610ce5838383612376565b505050565b600b5481565b610cf861205c565b73ffffffffffffffffffffffffffffffffffffffff16610d166114da565b73ffffffffffffffffffffffffffffffffffffffff1614610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d63906136f0565b60405180910390fd5b610d746114da565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde906136d0565b60405180910390fd5b565b610e0483838360405180602001604052806000815250611bb2565b505050565b600c5481565b610e1761205c565b73ffffffffffffffffffffffffffffffffffffffff16610e356114da565b73ffffffffffffffffffffffffffffffffffffffff1614610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e82906136f0565b60405180910390fd5b8181600d9190610e9c929190612bd6565b505050565b606060008251905060008167ffffffffffffffff811115610eeb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610f2457816020015b610f11612c5c565b815260200190600190039081610f095790505b50905060005b828114610fc957610f7a858281518110610f6d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611c25565b828281518110610fb3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181905250806001019050610f2a565b508092505050919050565b600e60009054906101000a900460ff1681565b6000610ff282612297565b9050919050565b60095481565b61100761205c565b73ffffffffffffffffffffffffffffffffffffffff166110256114da565b73ffffffffffffffffffffffffffffffffffffffff161461107b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611072906136f0565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ed576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61114661205c565b73ffffffffffffffffffffffffffffffffffffffff166111646114da565b73ffffffffffffffffffffffffffffffffffffffff16146111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b1906136f0565b60405180910390fd5b6111c46000612720565b565b6111ce61205c565b73ffffffffffffffffffffffffffffffffffffffff166111ec6114da565b73ffffffffffffffffffffffffffffffffffffffff1614611242576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611239906136f0565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6060600080600061127e85611085565b905060008167ffffffffffffffff8111156112c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112f05781602001602082028036833780820191505090505b5090506112fb612c5c565b600061130561236d565b90505b8386146113f657611318816127e6565b9150816040015115611329576113eb565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461136957816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156113ea57808387806001019850815181106113dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b5b806001019050611308565b508195505050505050919050565b61140c61205c565b73ffffffffffffffffffffffffffffffffffffffff1661142a6114da565b73ffffffffffffffffffffffffffffffffffffffff1614611480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611477906136f0565b60405180910390fd5b600a5461148b610cc3565b11156114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390613750565b60405180910390fd5b6114d68282612064565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461151390613a9d565b80601f016020809104026020016040519081016040528092919081815260200182805461153f90613a9d565b801561158c5780601f106115615761010080835404028352916020019161158c565b820191906000526020600020905b81548152906001019060200180831161156f57829003601f168201915b5050505050905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606081831061161a576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611625612811565b905061162f61236d565b8510156116415761163e61236d565b94505b8084111561164d578093505b600061165887611085565b90508486101561167b576000868603905081811015611675578091505b50611680565b600090505b60008167ffffffffffffffff8111156116c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116f05781602001602082028036833780820191505090505b50905060008214156117085780945050505050611838565b600061171388611c25565b90506000816040015161172857816000015190505b60008990505b88811415801561173e5750848714155b1561182a5761174c816127e6565b925082604001511561175d5761181f565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461179d57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561181e5780848880600101995081518110611811577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b5b80600101905061172e565b508583528296505050505050505b9392505050565b600e60009054906101000a900460ff161561188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613730565b60405180910390fd5b6000611899610cc3565b9050600a5482826118aa91906138dd565b11156118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290613670565b60405180910390fd5b600b54821115611930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611927906136b0565b60405180910390fd5b60008290506000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c548110156119da57600c5484611991919061398d565b9150600c54600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600954826119e89190613933565b341015611a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2190613710565b60405180910390fd5b611a343385612064565b50505050565b611a42612365565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ab4612365565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b61612365565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ba69190613633565b60405180910390a35050565b611bbd848484612376565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c1f57611be88484848461281a565b611c1e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611c2d612c5c565b611c35612c5c565b611c3d61236d565b831080611c515750611c4d612811565b8310155b15611c5f5780915050611c8a565b611c68836127e6565b9050806040015115611c7d5780915050611c8a565b611c868361297a565b9150505b919050565b6060611c9a82612238565b611cd0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611cda61299a565b9050600081511415611cfb5760405180602001604052806000815250611d26565b80611d0584612a2c565b604051602001611d16929190613559565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c181565b600a5481565b611d6061205c565b73ffffffffffffffffffffffffffffffffffffffff16611d7e6114da565b73ffffffffffffffffffffffffffffffffffffffff1614611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb906136f0565b60405180910390fd5b80600c8190555050565b6000807f000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611e549190613588565b60206040518083038186803b158015611e6c57600080fd5b505afa158015611e80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ea4919061310b565b73ffffffffffffffffffffffffffffffffffffffff161415611eca576001915050611ed8565b611ed48484612a86565b9150505b92915050565b611ee661205c565b73ffffffffffffffffffffffffffffffffffffffff16611f046114da565b73ffffffffffffffffffffffffffffffffffffffff1614611f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f51906136f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc190613690565b60405180910390fd5b611fd381612720565b50565b611fde61205c565b73ffffffffffffffffffffffffffffffffffffffff16611ffc6114da565b73ffffffffffffffffffffffffffffffffffffffff1614612052576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612049906136f0565b60405180910390fd5b8060098190555050565b600033905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120d1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561210c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121196000848385612b1a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161217e60018414612b20565b901b60a042901b61218e85612b2a565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106121b4578160008190555050506122336000848385612b34565b505050565b60008161224361236d565b11158015612252575060005482105b8015612290575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806122a661236d565b1161232e5760005481101561232d5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561232b575b60008114156123215760046000836001900393508381526020019081526020016000205490506122f6565b8092505050612360565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061238182612297565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146123e8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612409612365565b73ffffffffffffffffffffffffffffffffffffffff161480612438575061243785612432612365565b611dde565b5b8061247d5750612446612365565b73ffffffffffffffffffffffffffffffffffffffff1661246584610aa0565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806124b6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561251d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61252a8585856001612b1a565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61262786612b2a565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156126b15760006001840190506000600460008381526020019081526020016000205414156126af5760005481146126ae578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127198585856001612b34565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127ee612c5c565b61280a6004600084815260200190815260200160002054612b3a565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612840612365565b8786866040518563ffffffff1660e01b815260040161286294939291906135a3565b602060405180830381600087803b15801561287c57600080fd5b505af19250505080156128ad57506040513d601f19601f820116820180604052508101906128aa91906130e2565b60015b612927573d80600081146128dd576040519150601f19603f3d011682016040523d82523d6000602084013e6128e2565b606091505b5060008151141561291f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b612982612c5c565b61299361298e83612297565b612b3a565b9050919050565b6060600d80546129a990613a9d565b80601f01602080910402602001604051908101604052809291908181526020018280546129d590613a9d565b8015612a225780601f106129f757610100808354040283529160200191612a22565b820191906000526020600020905b815481529060010190602001808311612a0557829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015612a7257600183039250600a81066030018353600a81049050612a52565b508181036020830392508083525050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b6000819050919050565b6000819050919050565b50505050565b612b42612c5c565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c010000000000000000000000000000000000000000000000000000000083161415816040019015159081151581525050919050565b828054612be290613a9d565b90600052602060002090601f016020900481019282612c045760008555612c4b565b82601f10612c1d57803560ff1916838001178555612c4b565b82800160010185558215612c4b579182015b82811115612c4a578235825591602001919060010190612c2f565b5b509050612c589190612c9f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612cb8576000816000905550600101612ca0565b5090565b6000612ccf612cca846137cb565b6137a6565b90508083825260208201905082856020860282011115612cee57600080fd5b60005b85811015612d1e5781612d048882612e6d565b845260208401935060208301925050600181019050612cf1565b5050509392505050565b6000612d3b612d36846137f7565b6137a6565b905082815260208101848484011115612d5357600080fd5b612d5e848285613a5b565b509392505050565b600081359050612d7581613d35565b92915050565b600082601f830112612d8c57600080fd5b8135612d9c848260208601612cbc565b91505092915050565b600081359050612db481613d4c565b92915050565b600081359050612dc981613d63565b92915050565b600081519050612dde81613d63565b92915050565b600082601f830112612df557600080fd5b8135612e05848260208601612d28565b91505092915050565b600081519050612e1d81613d7a565b92915050565b60008083601f840112612e3557600080fd5b8235905067ffffffffffffffff811115612e4e57600080fd5b602083019150836001820283011115612e6657600080fd5b9250929050565b600081359050612e7c81613d91565b92915050565b600060208284031215612e9457600080fd5b6000612ea284828501612d66565b91505092915050565b60008060408385031215612ebe57600080fd5b6000612ecc85828601612d66565b9250506020612edd85828601612d66565b9150509250929050565b600080600060608486031215612efc57600080fd5b6000612f0a86828701612d66565b9350506020612f1b86828701612d66565b9250506040612f2c86828701612e6d565b9150509250925092565b60008060008060808587031215612f4c57600080fd5b6000612f5a87828801612d66565b9450506020612f6b87828801612d66565b9350506040612f7c87828801612e6d565b925050606085013567ffffffffffffffff811115612f9957600080fd5b612fa587828801612de4565b91505092959194509250565b60008060408385031215612fc457600080fd5b6000612fd285828601612d66565b9250506020612fe385828601612da5565b9150509250929050565b6000806040838503121561300057600080fd5b600061300e85828601612d66565b925050602061301f85828601612e6d565b9150509250929050565b60008060006060848603121561303e57600080fd5b600061304c86828701612d66565b935050602061305d86828701612e6d565b925050604061306e86828701612e6d565b9150509250925092565b60006020828403121561308a57600080fd5b600082013567ffffffffffffffff8111156130a457600080fd5b6130b084828501612d7b565b91505092915050565b6000602082840312156130cb57600080fd5b60006130d984828501612dba565b91505092915050565b6000602082840312156130f457600080fd5b600061310284828501612dcf565b91505092915050565b60006020828403121561311d57600080fd5b600061312b84828501612e0e565b91505092915050565b6000806020838503121561314757600080fd5b600083013567ffffffffffffffff81111561316157600080fd5b61316d85828601612e23565b92509250509250929050565b60006020828403121561318b57600080fd5b600061319984828501612e6d565b91505092915050565b60006131ae83836134a8565b60608301905092915050565b60006131c6838361352c565b60208301905092915050565b6131db816139c1565b82525050565b6131ea816139c1565b82525050565b60006131fb82613848565b613205818561388e565b935061321083613828565b8060005b8381101561324157815161322888826131a2565b975061323383613874565b925050600181019050613214565b5085935050505092915050565b600061325982613853565b613263818561389f565b935061326e83613838565b8060005b8381101561329f57815161328688826131ba565b975061329183613881565b925050600181019050613272565b5085935050505092915050565b6132b5816139d3565b82525050565b6132c4816139d3565b82525050565b60006132d58261385e565b6132df81856138b0565b93506132ef818560208601613a6a565b6132f881613b8d565b840191505092915050565b600061330e82613869565b61331881856138c1565b9350613328818560208601613a6a565b61333181613b8d565b840191505092915050565b600061334782613869565b61335181856138d2565b9350613361818560208601613a6a565b80840191505092915050565b600061337a600e836138c1565b915061338582613b9e565b602082019050919050565b600061339d6026836138c1565b91506133a882613bc7565b604082019050919050565b60006133c06012836138c1565b91506133cb82613c16565b602082019050919050565b60006133e36015836138c1565b91506133ee82613c3f565b602082019050919050565b60006134066005836138d2565b915061341182613c68565b600582019050919050565b60006134296020836138c1565b915061343482613c91565b602082019050919050565b600061344c6019836138c1565b915061345782613cba565b602082019050919050565b600061346f6011836138c1565b915061347a82613ce3565b602082019050919050565b6000613492600c836138c1565b915061349d82613d0c565b602082019050919050565b6060820160008201516134be60008501826131d2565b5060208201516134d1602085018261354a565b5060408201516134e460408501826132ac565b50505050565b60608201600082015161350060008501826131d2565b506020820151613513602085018261354a565b50604082015161352660408501826132ac565b50505050565b61353581613a3d565b82525050565b61354481613a3d565b82525050565b61355381613a47565b82525050565b6000613565828561333c565b9150613571828461333c565b915061357c826133f9565b91508190509392505050565b600060208201905061359d60008301846131e1565b92915050565b60006080820190506135b860008301876131e1565b6135c560208301866131e1565b6135d2604083018561353b565b81810360608301526135e481846132ca565b905095945050505050565b6000602082019050818103600083015261360981846131f0565b905092915050565b6000602082019050818103600083015261362b818461324e565b905092915050565b600060208201905061364860008301846132bb565b92915050565b600060208201905081810360008301526136688184613303565b905092915050565b600060208201905081810360008301526136898161336d565b9050919050565b600060208201905081810360008301526136a981613390565b9050919050565b600060208201905081810360008301526136c9816133b3565b9050919050565b600060208201905081810360008301526136e9816133d6565b9050919050565b600060208201905081810360008301526137098161341c565b9050919050565b600060208201905081810360008301526137298161343f565b9050919050565b6000602082019050818103600083015261374981613462565b9050919050565b6000602082019050818103600083015261376981613485565b9050919050565b600060608201905061378560008301846134ea565b92915050565b60006020820190506137a0600083018461353b565b92915050565b60006137b06137c1565b90506137bc8282613acf565b919050565b6000604051905090565b600067ffffffffffffffff8211156137e6576137e5613b5e565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561381257613811613b5e565b5b61381b82613b8d565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138e882613a3d565b91506138f383613a3d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561392857613927613b00565b5b828201905092915050565b600061393e82613a3d565b915061394983613a3d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561398257613981613b00565b5b828202905092915050565b600061399882613a3d565b91506139a383613a3d565b9250828210156139b6576139b5613b00565b5b828203905092915050565b60006139cc82613a1d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613a16826139c1565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613a88578082015181840152602081019050613a6d565b83811115613a97576000848401525b50505050565b60006002820490506001821680613ab557607f821691505b60208210811415613ac957613ac8613b2f565b5b50919050565b613ad882613b8d565b810181811067ffffffffffffffff82111715613af757613af6613b5e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4578636565647320537570706c79000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178207065722074780000000000000000000000000000600082015250565b7f576974686472617720556e7375636365737366756c0000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4d696e74696e6720697320706175736564000000000000000000000000000000600082015250565b7f4e6f206d6f7265206e6674730000000000000000000000000000000000000000600082015250565b613d3e816139c1565b8114613d4957600080fd5b50565b613d55816139d3565b8114613d6057600080fd5b50565b613d6c816139df565b8114613d7757600080fd5b50565b613d8381613a0b565b8114613d8e57600080fd5b50565b613d9a81613a3d565b8114613da557600080fd5b5056fea264697066735822122008ae6e2bca8f70d29083a51daa5619dd714aaa274ffbf5e8c9450155092b406064736f6c63430008040033

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1


Deployed Bytecode Sourcemap

141:2733:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4880:607:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2419:136:6;;;;;;;;;;;;;:::i;:::-;;9768:98:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11778:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11254:463;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3963:309;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12638:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;282:29:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2726:146;;;;;;;;;;;;;:::i;:::-;;12868:179:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;315:26:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1960:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1501:459:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;375:25:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9564:142:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;204:39:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2253:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5546:221:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1661:101:5;;;;;;;;;;;;;:::i;:::-;;2349:66:6;;;;;;;;;;;;;:::i;:::-;;5219:871:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2561:161:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1029:85:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9930:102:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1285:113:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2336:2446:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;651:630:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12045:303:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13113:385;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;938:410:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10098:322:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;405:45:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;247:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2069:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1592:364;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1911:198:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2157:92:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4880:607:1;4965:4;5275:10;5260:25;;:11;:25;;;;:101;;;;5351:10;5336:25;;:11;:25;;;;5260:101;:177;;;;5427:10;5412:25;;:11;:25;;;;5260:177;5241:196;;4880:607;;;:::o;2419:136:6:-;1252:12:5;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2496:9:6::1;;2479:13;:11;:13::i;:::-;:26;;2471:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;2528:22;2534:10;2546:3;2528:5;:22::i;:::-;2419:136::o:0;9768:98:1:-;9822:13;9854:5;9847:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9768:98;:::o;11778:200::-;11846:7;11870:16;11878:7;11870;:16::i;:::-;11865:64;;11895:34;;;;;;;;;;;;;;11865:64;11947:15;:24;11963:7;11947:24;;;;;;;;;;;;;;;;;;;;;11940:31;;11778:200;;;:::o;11254:463::-;11326:13;11358:27;11377:7;11358:18;:27::i;:::-;11326:61;;11407:5;11401:11;;:2;:11;;;11397:48;;;11421:24;;;;;;;;;;;;;;11397:48;11483:5;11460:28;;:19;:17;:19::i;:::-;:28;;;11456:172;;11507:44;11524:5;11531:19;:17;:19::i;:::-;11507:16;:44::i;:::-;11502:126;;11578:35;;;;;;;;;;;;;;11502:126;11456:172;11665:2;11638:15;:24;11654:7;11638:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11702:7;11698:2;11682:28;;11691:5;11682:28;;;;;;;;;;;;11254:463;;;:::o;3963:309::-;4016:7;4240:15;:13;:15::i;:::-;4225:12;;4209:13;;:28;:46;4202:53;;3963:309;:::o;12638:164::-;12767:28;12777:4;12783:2;12787:7;12767:9;:28::i;:::-;12638:164;;;:::o;282:29:6:-;;;;:::o;2726:146::-;1252:12:5;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2794:7:6::1;:5;:7::i;:::-;2786:21;;:44;2808:21;2786:44;;;;;;;;;;;;;;;;;;;;;;;2771:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;2726:146::o:0;12868:179:1:-;13001:39;13018:4;13024:2;13028:7;13001:39;;;;;;;;;;;;:16;:39::i;:::-;12868:179;;;:::o;315:26:6:-;;;;:::o;1960:105::-;1252:12:5;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2049:11:6::1;;2034:12;:26;;;;;;;:::i;:::-;;1960:105:::0;;:::o;1501:459:2:-;1590:23;1649:22;1674:8;:15;1649:40;;1703:34;1761:14;1740:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1703:73;;1795:9;1790:123;1811:14;1806:1;:19;1790:123;;1866:32;1886:8;1895:1;1886:11;;;;;;;;;;;;;;;;;;;;;;1866:19;:32::i;:::-;1850:10;1861:1;1850:13;;;;;;;;;;;;;;;;;;;;;:48;;;;1827:3;;;;;1790:123;;;;1933:10;1926:17;;;;1501:459;;;:::o;375:25:6:-;;;;;;;;;;;;;:::o;9564:142:1:-;9628:7;9670:27;9689:7;9670:18;:27::i;:::-;9647:52;;9564:142;;;:::o;204:39:6:-;;;;:::o;2253:92::-;1252:12:5;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2330:10:6::1;2318:9;:22;;;;2253:92:::0;:::o;5546:221:1:-;5610:7;5650:1;5633:19;;:5;:19;;;5629:60;;;5661:28;;;;;;;;;;;;;;5629:60;1017:13;5706:18;:25;5725:5;5706:25;;;;;;;;;;;;;;;;:54;5699:61;;5546:221;;;:::o;1661:101:5:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;2349:66:6:-;1252:12:5;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2404:6:6::1;;;;;;;;;;;2403:7;2394:6;;:16;;;;;;;;;;;;;;;;;;2349:66::o:0;5219:871:2:-;5289:16;5341:19;5374:25;5413:22;5438:16;5448:5;5438:9;:16::i;:::-;5413:41;;5468:25;5510:14;5496:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5468:57;;5539:31;;:::i;:::-;5589:9;5601:15;:13;:15::i;:::-;5589:27;;5584:461;5633:14;5618:11;:29;5584:461;;5684:15;5697:1;5684:12;:15::i;:::-;5672:27;;5721:9;:16;;;5717:71;;;5761:8;;5717:71;5835:1;5809:28;;:9;:14;;;:28;;;5805:109;;5881:9;:14;;;5861:34;;5805:109;5956:5;5935:26;;:17;:26;;;5931:100;;;6011:1;5985:8;5994:13;;;;;;5985:23;;;;;;;;;;;;;;;;;;;;;:27;;;;;5931:100;5584:461;5649:3;;;;;5584:461;;;;6065:8;6058:15;;;;;;;5219:871;;;:::o;2561:161:6:-;1252:12:5;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2662:9:6::1;;2645:13;:11;:13::i;:::-;:26;;2637:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;2694:23;2700:3;2705:11;2694:5;:23::i;:::-;2561:161:::0;;:::o;1029:85:5:-;1075:7;1101:6;;;;;;;;;;;1094:13;;1029:85;:::o;9930:102:1:-;9986:13;10018:7;10011:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9930:102;:::o;1285:113:6:-;1348:7;1370:16;:23;1387:5;1370:23;;;;;;;;;;;;;;;;1363:30;;1285:113;;;:::o;2336:2446:2:-;2467:16;2532:4;2523:5;:13;2519:45;;2545:19;;;;;;;;;;;;;;2519:45;2578:19;2611:17;2631:14;:12;:14::i;:::-;2611:34;;2729:15;:13;:15::i;:::-;2721:5;:23;2717:85;;;2772:15;:13;:15::i;:::-;2764:23;;2717:85;2876:9;2869:4;:16;2865:71;;;2912:9;2905:16;;2865:71;2949:25;2977:16;2987:5;2977:9;:16::i;:::-;2949:44;;3168:4;3160:5;:12;3156:271;;;3192:19;3221:5;3214:4;:12;3192:34;;3262:17;3248:11;:31;3244:109;;;3323:11;3303:31;;3244:109;3156:271;;;;3411:1;3391:21;;3156:271;3440:25;3482:17;3468:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3440:60;;3539:1;3518:17;:22;3514:76;;;3567:8;3560:15;;;;;;;;3514:76;3731:31;3765:26;3785:5;3765:19;:26::i;:::-;3731:60;;3805:25;4047:9;:16;;;4042:90;;4103:9;:14;;;4083:34;;4042:90;4150:9;4162:5;4150:17;;4145:467;4174:4;4169:1;:9;;:45;;;;;4197:17;4182:11;:32;;4169:45;4145:467;;;4251:15;4264:1;4251:12;:15::i;:::-;4239:27;;4288:9;:16;;;4284:71;;;4328:8;;4284:71;4402:1;4376:28;;:9;:14;;;:28;;;4372:109;;4448:9;:14;;;4428:34;;4372:109;4523:5;4502:26;;:17;:26;;;4498:100;;;4578:1;4552:8;4561:13;;;;;;4552:23;;;;;;;;;;;;;;;;;;;;;:27;;;;;4498:100;4145:467;4216:3;;;;;4145:467;;;;4711:11;4701:8;4694:29;4757:8;4750:15;;;;;;;;2336:2446;;;;;;:::o;651:630:6:-;716:6;;;;;;;;;;;715:7;707:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;751:20;774:13;:11;:13::i;:::-;751:36;;830:9;;817;802:12;:24;;;;:::i;:::-;:37;;794:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;885:9;;872;:22;;864:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;942:19;964:9;942:31;;979:21;1003:16;:28;1020:10;1003:28;;;;;;;;;;;;;;;;979:52;;1058:7;;1042:13;:23;1038:123;;;1101:7;;1089:9;:19;;;;:::i;:::-;1075:33;;1147:7;;1116:16;:28;1133:10;1116:28;;;;;;;;;;;;;;;:38;;;;1038:123;1202:9;;1188:11;:23;;;;:::i;:::-;1175:9;:36;;1167:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1248:28;1254:10;1266:9;1248:5;:28::i;:::-;651:630;;;;:::o;12045:303:1:-;12155:19;:17;:19::i;:::-;12143:31;;:8;:31;;;12139:61;;;12183:17;;;;;;;;;;;;;;12139:61;12263:8;12211:18;:39;12230:19;:17;:19::i;:::-;12211:39;;;;;;;;;;;;;;;:49;12251:8;12211:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;12322:8;12286:55;;12301:19;:17;:19::i;:::-;12286:55;;;12332:8;12286:55;;;;;;:::i;:::-;;;;;;;;12045:303;;:::o;13113:385::-;13274:28;13284:4;13290:2;13294:7;13274:9;:28::i;:::-;13334:1;13316:2;:14;;;:19;13312:180;;13354:56;13385:4;13391:2;13395:7;13404:5;13354:30;:56::i;:::-;13349:143;;13437:40;;;;;;;;;;;;;;13349:143;13312:180;13113:385;;;;:::o;938:410:2:-;1014:21;;:::i;:::-;1047:31;;:::i;:::-;1102:15;:13;:15::i;:::-;1092:7;:25;:54;;;;1132:14;:12;:14::i;:::-;1121:7;:25;;1092:54;1088:101;;;1169:9;1162:16;;;;;1088:101;1210:21;1223:7;1210:12;:21::i;:::-;1198:33;;1245:9;:16;;;1241:63;;;1284:9;1277:16;;;;;1241:63;1320:21;1333:7;1320:12;:21::i;:::-;1313:28;;;938:410;;;;:::o;10098:322:1:-;10171:13;10201:16;10209:7;10201;:16::i;:::-;10196:59;;10226:29;;;;;;;;;;;;;;10196:59;10266:21;10290:10;:8;:10::i;:::-;10266:34;;10342:1;10323:7;10317:21;:26;;:96;;;;;;;;;;;;;;;;;10370:7;10379:18;10389:7;10379:9;:18::i;:::-;10353:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10317:96;10310:103;;;10098:322;;;:::o;405:45:6:-;;;:::o;247:31::-;;;;:::o;2069:84::-;1252:12:5;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2140:8:6::1;2130:7;:18;;;;2069:84:::0;:::o;1592:364::-;1706:4;1720:34;1785:20;1720:91;;1863:8;1822:49;;1830:13;:21;;;1852:5;1830:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1822:49;;;1818:81;;;1888:4;1881:11;;;;;1818:81;1912:39;1935:5;1942:8;1912:22;:39::i;:::-;1905:46;;;1592:364;;;;;:::o;1911:198:5:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2019:1:::1;1999:22;;:8;:22;;;;1991:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;2157:92:6:-;1252:12:5;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2234:10:6::1;2222:9;:22;;;;2157:92:::0;:::o;640:96:0:-;693:7;719:10;712:17;;640:96;:::o;16984:1618:1:-;17048:20;17071:13;;17048:36;;17112:1;17098:16;;:2;:16;;;17094:48;;;17123:19;;;;;;;;;;;;;;17094:48;17168:1;17156:8;:13;17152:44;;;17178:18;;;;;;;;;;;;;;17152:44;17207:61;17237:1;17241:2;17245:12;17259:8;17207:21;:61::i;:::-;17800:1;1151:2;17771:1;:25;;17770:31;17758:8;:44;17732:18;:22;17751:2;17732:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;1913:3;18191:29;18218:1;18206:8;:13;18191:14;:29::i;:::-;:56;;1656:3;18129:15;:41;;18088:21;18106:2;18088:17;:21::i;:::-;:83;:160;18038:17;:31;18056:12;18038:31;;;;;;;;;;;:210;;;;18263:20;18286:12;18263:35;;18312:11;18341:8;18326:12;:23;18312:37;;18364:109;18415:14;;;;;;18411:2;18390:40;;18407:1;18390:40;;;;;;;;;;;;18468:3;18453:12;:18;18364:109;;18503:12;18487:13;:28;;;;16984:1618;;18535:60;18564:1;18568:2;18572:12;18586:8;18535:20;:60::i;:::-;16984:1618;;;:::o;13744:268::-;13801:4;13855:7;13836:15;:13;:15::i;:::-;:26;;:65;;;;;13888:13;;13878:7;:23;13836:65;:150;;;;;13985:1;1769:8;13938:17;:26;13956:7;13938:26;;;;;;;;;;;;:43;:48;13836:150;13817:169;;13744:268;;;:::o;7141:1105::-;7208:7;7227:12;7242:7;7227:22;;7307:4;7288:15;:13;:15::i;:::-;:23;7284:898;;7340:13;;7333:4;:20;7329:853;;;7377:14;7394:17;:23;7412:4;7394:23;;;;;;;;;;;;7377:40;;7508:1;1769:8;7481:6;:23;:28;7477:687;;;7992:111;8009:1;7999:6;:11;7992:111;;;8051:17;:25;8069:6;;;;;;;8051:25;;;;;;;;;;;;8042:34;;7992:111;;;8135:6;8128:13;;;;;;7477:687;7329:853;;7284:898;8208:31;;;;;;;;;;;;;;7141:1105;;;;:::o;27369:103::-;27429:7;27455:10;27448:17;;27369:103;:::o;1402:85:6:-;1459:7;1481:1;1474:8;;1402:85;:::o;18844:2460:1:-;18954:27;18984;19003:7;18984:18;:27::i;:::-;18954:57;;19067:4;19026:45;;19042:19;19026:45;;;19022:86;;19080:28;;;;;;;;;;;;;;19022:86;19119:22;19168:4;19145:27;;:19;:17;:19::i;:::-;:27;;;:86;;;;19188:43;19205:4;19211:19;:17;:19::i;:::-;19188:16;:43::i;:::-;19145:86;:145;;;;19271:19;:17;:19::i;:::-;19247:43;;:20;19259:7;19247:11;:20::i;:::-;:43;;;19145:145;19119:172;;19307:17;19302:66;;19333:35;;;;;;;;;;;;;;19302:66;19396:1;19382:16;;:2;:16;;;19378:52;;;19407:23;;;;;;;;;;;;;;19378:52;19441:43;19463:4;19469:2;19473:7;19482:1;19441:21;:43::i;:::-;19554:15;:24;19570:7;19554:24;;;;;;;;;;;;19547:31;;;;;;;;;;;19939:18;:24;19958:4;19939:24;;;;;;;;;;;;;;;;19937:26;;;;;;;;;;;;20007:18;:22;20026:2;20007:22;;;;;;;;;;;;;;;;20005:24;;;;;;;;;;;2045:8;1656:3;20379:15;:41;;20338:21;20356:2;20338:17;:21::i;:::-;:83;:126;20293:17;:26;20311:7;20293:26;;;;;;;;;;;:171;;;;20631:1;2045:8;20581:19;:46;:51;20577:616;;;20652:19;20684:1;20674:7;:11;20652:33;;20839:1;20805:17;:30;20823:11;20805:30;;;;;;;;;;;;:35;20801:378;;;20941:13;;20926:11;:28;20922:239;;21119:19;21086:17;:30;21104:11;21086:30;;;;;;;;;;;:52;;;;20922:239;20801:378;20577:616;;21237:7;21233:2;21218:27;;21227:4;21218:27;;;;;;;;;;;;21255:42;21276:4;21282:2;21286:7;21295:1;21255:20;:42::i;:::-;18844:2460;;;;;:::o;2263:187:5:-;2336:16;2355:6;;;;;;;;;;;2336:25;;2380:8;2371:6;;:17;;;;;;;;;;;;;;;;;;2434:8;2403:40;;2424:8;2403:40;;;;;;;;;;;;2263:187;;:::o;8712:151:1:-;8772:21;;:::i;:::-;8812:44;8831:17;:24;8849:5;8831:24;;;;;;;;;;;;8812:18;:44::i;:::-;8805:51;;8712:151;;;:::o;3666:93::-;3713:7;3739:13;;3732:20;;3666:93;:::o;24909:697::-;25067:4;25112:2;25087:45;;;25133:19;:17;:19::i;:::-;25154:4;25160:7;25169:5;25087:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;25083:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25382:1;25365:6;:13;:18;25361:229;;;25410:40;;;;;;;;;;;;;;25361:229;25550:6;25544:13;25535:6;25531:2;25527:15;25520:38;25083:517;25253:54;;;25243:64;;;:6;:64;;;;25236:71;;;24909:697;;;;;;:::o;9351:156::-;9413:21;;:::i;:::-;9453:47;9472:27;9491:7;9472:18;:27::i;:::-;9453:18;:47::i;:::-;9446:54;;9351:156;;;:::o;1491:97:6:-;1543:13;1571:12;1564:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1491:97;:::o;27573:1920:1:-;27630:17;28045:3;28038:4;28032:11;28028:21;28021:28;;28134:3;28128:4;28121:17;28237:3;28686:5;28814:1;28809:3;28805:11;28798:18;;28949:2;28943:4;28939:13;28935:2;28931:22;28926:3;28918:36;28989:2;28983:4;28979:13;28971:21;;28579:668;29007:4;28579:668;;;29178:1;29173:3;29169:11;29162:18;;29228:2;29222:4;29218:13;29214:2;29210:22;29205:3;29197:36;29101:2;29095:4;29091:13;29083:21;;28579:668;;;28583:423;29296:3;29291;29287:13;29409:2;29404:3;29400:12;29393:19;;29470:6;29465:3;29458:19;27668:1819;;;;;:::o;12414:162::-;12511:4;12534:18;:25;12553:5;12534:25;;;;;;;;;;;;;;;:35;12560:8;12534:35;;;;;;;;;;;;;;;;;;;;;;;;;12527:42;;12414:162;;;;:::o;26237:154::-;;;;;:::o;11059:138::-;11117:14;11176:5;11166:15;;11152:39;;;:::o;10833:144::-;10897:14;10956:5;10946:15;;10932:39;;;:::o;27032:153::-;;;;;:::o;8335:291::-;8401:31;;:::i;:::-;8477:6;8444:9;:14;;:41;;;;;;;;;;;1656:3;8529:6;:32;;8495:9;:24;;:67;;;;;;;;;;;8618:1;1769:8;8591:6;:23;:28;;8572:9;:16;;:47;;;;;;;;;;;8335:291;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:655:7:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;685:343::-;762:5;787:65;803:48;844:6;803:48;:::i;:::-;787:65;:::i;:::-;778:74;;875:6;868:5;861:21;913:4;906:5;902:16;951:3;942:6;937:3;933:16;930:25;927:2;;;968:1;965;958:12;927:2;981:41;1015:6;1010:3;1005;981:41;:::i;:::-;768:260;;;;;;:::o;1034:139::-;1080:5;1118:6;1105:20;1096:29;;1134:33;1161:5;1134:33;:::i;:::-;1086:87;;;;:::o;1196:303::-;1267:5;1316:3;1309:4;1301:6;1297:17;1293:27;1283:2;;1334:1;1331;1324:12;1283:2;1374:6;1361:20;1399:94;1489:3;1481:6;1474:4;1466:6;1462:17;1399:94;:::i;:::-;1390:103;;1273:226;;;;;:::o;1505:133::-;1548:5;1586:6;1573:20;1564:29;;1602:30;1626:5;1602:30;:::i;:::-;1554:84;;;;:::o;1644:137::-;1689:5;1727:6;1714:20;1705:29;;1743:32;1769:5;1743:32;:::i;:::-;1695:86;;;;:::o;1787:141::-;1843:5;1874:6;1868:13;1859:22;;1890:32;1916:5;1890:32;:::i;:::-;1849:79;;;;:::o;1947:271::-;2002:5;2051:3;2044:4;2036:6;2032:17;2028:27;2018:2;;2069:1;2066;2059:12;2018:2;2109:6;2096:20;2134:78;2208:3;2200:6;2193:4;2185:6;2181:17;2134:78;:::i;:::-;2125:87;;2008:210;;;;;:::o;2224:201::-;2310:5;2341:6;2335:13;2326:22;;2357:62;2413:5;2357:62;:::i;:::-;2316:109;;;;:::o;2445:352::-;2503:8;2513:6;2563:3;2556:4;2548:6;2544:17;2540:27;2530:2;;2581:1;2578;2571:12;2530:2;2617:6;2604:20;2594:30;;2647:18;2639:6;2636:30;2633:2;;;2679:1;2676;2669:12;2633:2;2716:4;2708:6;2704:17;2692:29;;2770:3;2762:4;2754:6;2750:17;2740:8;2736:32;2733:41;2730:2;;;2787:1;2784;2777:12;2730:2;2520:277;;;;;:::o;2803:139::-;2849:5;2887:6;2874:20;2865:29;;2903:33;2930:5;2903:33;:::i;:::-;2855:87;;;;:::o;2948:262::-;3007:6;3056:2;3044:9;3035:7;3031:23;3027:32;3024:2;;;3072:1;3069;3062:12;3024:2;3115:1;3140:53;3185:7;3176:6;3165:9;3161:22;3140:53;:::i;:::-;3130:63;;3086:117;3014:196;;;;:::o;3216:407::-;3284:6;3292;3341:2;3329:9;3320:7;3316:23;3312:32;3309:2;;;3357:1;3354;3347:12;3309:2;3400:1;3425:53;3470:7;3461:6;3450:9;3446:22;3425:53;:::i;:::-;3415:63;;3371:117;3527:2;3553:53;3598:7;3589:6;3578:9;3574:22;3553:53;:::i;:::-;3543:63;;3498:118;3299:324;;;;;:::o;3629:552::-;3706:6;3714;3722;3771:2;3759:9;3750:7;3746:23;3742:32;3739:2;;;3787:1;3784;3777:12;3739:2;3830:1;3855:53;3900:7;3891:6;3880:9;3876:22;3855:53;:::i;:::-;3845:63;;3801:117;3957:2;3983:53;4028:7;4019:6;4008:9;4004:22;3983:53;:::i;:::-;3973:63;;3928:118;4085:2;4111:53;4156:7;4147:6;4136:9;4132:22;4111:53;:::i;:::-;4101:63;;4056:118;3729:452;;;;;:::o;4187:809::-;4282:6;4290;4298;4306;4355:3;4343:9;4334:7;4330:23;4326:33;4323:2;;;4372:1;4369;4362:12;4323:2;4415:1;4440:53;4485:7;4476:6;4465:9;4461:22;4440:53;:::i;:::-;4430:63;;4386:117;4542:2;4568:53;4613:7;4604:6;4593:9;4589:22;4568:53;:::i;:::-;4558:63;;4513:118;4670:2;4696:53;4741:7;4732:6;4721:9;4717:22;4696:53;:::i;:::-;4686:63;;4641:118;4826:2;4815:9;4811:18;4798:32;4857:18;4849:6;4846:30;4843:2;;;4889:1;4886;4879:12;4843:2;4917:62;4971:7;4962:6;4951:9;4947:22;4917:62;:::i;:::-;4907:72;;4769:220;4313:683;;;;;;;:::o;5002:401::-;5067:6;5075;5124:2;5112:9;5103:7;5099:23;5095:32;5092:2;;;5140:1;5137;5130:12;5092:2;5183:1;5208:53;5253:7;5244:6;5233:9;5229:22;5208:53;:::i;:::-;5198:63;;5154:117;5310:2;5336:50;5378:7;5369:6;5358:9;5354:22;5336:50;:::i;:::-;5326:60;;5281:115;5082:321;;;;;:::o;5409:407::-;5477:6;5485;5534:2;5522:9;5513:7;5509:23;5505:32;5502:2;;;5550:1;5547;5540:12;5502:2;5593:1;5618:53;5663:7;5654:6;5643:9;5639:22;5618:53;:::i;:::-;5608:63;;5564:117;5720:2;5746:53;5791:7;5782:6;5771:9;5767:22;5746:53;:::i;:::-;5736:63;;5691:118;5492:324;;;;;:::o;5822:552::-;5899:6;5907;5915;5964:2;5952:9;5943:7;5939:23;5935:32;5932:2;;;5980:1;5977;5970:12;5932:2;6023:1;6048:53;6093:7;6084:6;6073:9;6069:22;6048:53;:::i;:::-;6038:63;;5994:117;6150:2;6176:53;6221:7;6212:6;6201:9;6197:22;6176:53;:::i;:::-;6166:63;;6121:118;6278:2;6304:53;6349:7;6340:6;6329:9;6325:22;6304:53;:::i;:::-;6294:63;;6249:118;5922:452;;;;;:::o;6380:405::-;6464:6;6513:2;6501:9;6492:7;6488:23;6484:32;6481:2;;;6529:1;6526;6519:12;6481:2;6600:1;6589:9;6585:17;6572:31;6630:18;6622:6;6619:30;6616:2;;;6662:1;6659;6652:12;6616:2;6690:78;6760:7;6751:6;6740:9;6736:22;6690:78;:::i;:::-;6680:88;;6543:235;6471:314;;;;:::o;6791:260::-;6849:6;6898:2;6886:9;6877:7;6873:23;6869:32;6866:2;;;6914:1;6911;6904:12;6866:2;6957:1;6982:52;7026:7;7017:6;7006:9;7002:22;6982:52;:::i;:::-;6972:62;;6928:116;6856:195;;;;:::o;7057:282::-;7126:6;7175:2;7163:9;7154:7;7150:23;7146:32;7143:2;;;7191:1;7188;7181:12;7143:2;7234:1;7259:63;7314:7;7305:6;7294:9;7290:22;7259:63;:::i;:::-;7249:73;;7205:127;7133:206;;;;:::o;7345:342::-;7444:6;7493:2;7481:9;7472:7;7468:23;7464:32;7461:2;;;7509:1;7506;7499:12;7461:2;7552:1;7577:93;7662:7;7653:6;7642:9;7638:22;7577:93;:::i;:::-;7567:103;;7523:157;7451:236;;;;:::o;7693:395::-;7764:6;7772;7821:2;7809:9;7800:7;7796:23;7792:32;7789:2;;;7837:1;7834;7827:12;7789:2;7908:1;7897:9;7893:17;7880:31;7938:18;7930:6;7927:30;7924:2;;;7970:1;7967;7960:12;7924:2;8006:65;8063:7;8054:6;8043:9;8039:22;8006:65;:::i;:::-;7988:83;;;;7851:230;7779:309;;;;;:::o;8094:262::-;8153:6;8202:2;8190:9;8181:7;8177:23;8173:32;8170:2;;;8218:1;8215;8208:12;8170:2;8261:1;8286:53;8331:7;8322:6;8311:9;8307:22;8286:53;:::i;:::-;8276:63;;8232:117;8160:196;;;;:::o;8362:307::-;8495:10;8516:110;8622:3;8614:6;8516:110;:::i;:::-;8658:4;8653:3;8649:14;8635:28;;8506:163;;;;:::o;8675:179::-;8744:10;8765:46;8807:3;8799:6;8765:46;:::i;:::-;8843:4;8838:3;8834:14;8820:28;;8755:99;;;;:::o;8860:108::-;8937:24;8955:5;8937:24;:::i;:::-;8932:3;8925:37;8915:53;;:::o;8974:118::-;9061:24;9079:5;9061:24;:::i;:::-;9056:3;9049:37;9039:53;;:::o;9174:988::-;9357:3;9386:86;9466:5;9386:86;:::i;:::-;9488:118;9599:6;9594:3;9488:118;:::i;:::-;9481:125;;9630:88;9712:5;9630:88;:::i;:::-;9741:7;9772:1;9757:380;9782:6;9779:1;9776:13;9757:380;;;9858:6;9852:13;9885:127;10008:3;9993:13;9885:127;:::i;:::-;9878:134;;10035:92;10120:6;10035:92;:::i;:::-;10025:102;;9817:320;9804:1;9801;9797:9;9792:14;;9757:380;;;9761:14;10153:3;10146:10;;9362:800;;;;;;;:::o;10198:732::-;10317:3;10346:54;10394:5;10346:54;:::i;:::-;10416:86;10495:6;10490:3;10416:86;:::i;:::-;10409:93;;10526:56;10576:5;10526:56;:::i;:::-;10605:7;10636:1;10621:284;10646:6;10643:1;10640:13;10621:284;;;10722:6;10716:13;10749:63;10808:3;10793:13;10749:63;:::i;:::-;10742:70;;10835:60;10888:6;10835:60;:::i;:::-;10825:70;;10681:224;10668:1;10665;10661:9;10656:14;;10621:284;;;10625:14;10921:3;10914:10;;10322:608;;;;;;;:::o;10936:99::-;11007:21;11022:5;11007:21;:::i;:::-;11002:3;10995:34;10985:50;;:::o;11041:109::-;11122:21;11137:5;11122:21;:::i;:::-;11117:3;11110:34;11100:50;;:::o;11156:360::-;11242:3;11270:38;11302:5;11270:38;:::i;:::-;11324:70;11387:6;11382:3;11324:70;:::i;:::-;11317:77;;11403:52;11448:6;11443:3;11436:4;11429:5;11425:16;11403:52;:::i;:::-;11480:29;11502:6;11480:29;:::i;:::-;11475:3;11471:39;11464:46;;11246:270;;;;;:::o;11522:364::-;11610:3;11638:39;11671:5;11638:39;:::i;:::-;11693:71;11757:6;11752:3;11693:71;:::i;:::-;11686:78;;11773:52;11818:6;11813:3;11806:4;11799:5;11795:16;11773:52;:::i;:::-;11850:29;11872:6;11850:29;:::i;:::-;11845:3;11841:39;11834:46;;11614:272;;;;;:::o;11892:377::-;11998:3;12026:39;12059:5;12026:39;:::i;:::-;12081:89;12163:6;12158:3;12081:89;:::i;:::-;12074:96;;12179:52;12224:6;12219:3;12212:4;12205:5;12201:16;12179:52;:::i;:::-;12256:6;12251:3;12247:16;12240:23;;12002:267;;;;;:::o;12275:366::-;12417:3;12438:67;12502:2;12497:3;12438:67;:::i;:::-;12431:74;;12514:93;12603:3;12514:93;:::i;:::-;12632:2;12627:3;12623:12;12616:19;;12421:220;;;:::o;12647:366::-;12789:3;12810:67;12874:2;12869:3;12810:67;:::i;:::-;12803:74;;12886:93;12975:3;12886:93;:::i;:::-;13004:2;12999:3;12995:12;12988:19;;12793:220;;;:::o;13019:366::-;13161:3;13182:67;13246:2;13241:3;13182:67;:::i;:::-;13175:74;;13258:93;13347:3;13258:93;:::i;:::-;13376:2;13371:3;13367:12;13360:19;;13165:220;;;:::o;13391:366::-;13533:3;13554:67;13618:2;13613:3;13554:67;:::i;:::-;13547:74;;13630:93;13719:3;13630:93;:::i;:::-;13748:2;13743:3;13739:12;13732:19;;13537:220;;;:::o;13763:400::-;13923:3;13944:84;14026:1;14021:3;13944:84;:::i;:::-;13937:91;;14037:93;14126:3;14037:93;:::i;:::-;14155:1;14150:3;14146:11;14139:18;;13927:236;;;:::o;14169:366::-;14311:3;14332:67;14396:2;14391:3;14332:67;:::i;:::-;14325:74;;14408:93;14497:3;14408:93;:::i;:::-;14526:2;14521:3;14517:12;14510:19;;14315:220;;;:::o;14541:366::-;14683:3;14704:67;14768:2;14763:3;14704:67;:::i;:::-;14697:74;;14780:93;14869:3;14780:93;:::i;:::-;14898:2;14893:3;14889:12;14882:19;;14687:220;;;:::o;14913:366::-;15055:3;15076:67;15140:2;15135:3;15076:67;:::i;:::-;15069:74;;15152:93;15241:3;15152:93;:::i;:::-;15270:2;15265:3;15261:12;15254:19;;15059:220;;;:::o;15285:366::-;15427:3;15448:67;15512:2;15507:3;15448:67;:::i;:::-;15441:74;;15524:93;15613:3;15524:93;:::i;:::-;15642:2;15637:3;15633:12;15626:19;;15431:220;;;:::o;15729:689::-;15880:4;15875:3;15871:14;15967:4;15960:5;15956:16;15950:23;15986:63;16043:4;16038:3;16034:14;16020:12;15986:63;:::i;:::-;15895:164;16151:4;16144:5;16140:16;16134:23;16170:61;16225:4;16220:3;16216:14;16202:12;16170:61;:::i;:::-;16069:172;16325:4;16318:5;16314:16;16308:23;16344:57;16395:4;16390:3;16386:14;16372:12;16344:57;:::i;:::-;16251:160;15849:569;;;:::o;16496:699::-;16657:4;16652:3;16648:14;16744:4;16737:5;16733:16;16727:23;16763:63;16820:4;16815:3;16811:14;16797:12;16763:63;:::i;:::-;16672:164;16928:4;16921:5;16917:16;16911:23;16947:61;17002:4;16997:3;16993:14;16979:12;16947:61;:::i;:::-;16846:172;17102:4;17095:5;17091:16;17085:23;17121:57;17172:4;17167:3;17163:14;17149:12;17121:57;:::i;:::-;17028:160;16626:569;;;:::o;17201:108::-;17278:24;17296:5;17278:24;:::i;:::-;17273:3;17266:37;17256:53;;:::o;17315:118::-;17402:24;17420:5;17402:24;:::i;:::-;17397:3;17390:37;17380:53;;:::o;17439:105::-;17514:23;17531:5;17514:23;:::i;:::-;17509:3;17502:36;17492:52;;:::o;17550:701::-;17831:3;17853:95;17944:3;17935:6;17853:95;:::i;:::-;17846:102;;17965:95;18056:3;18047:6;17965:95;:::i;:::-;17958:102;;18077:148;18221:3;18077:148;:::i;:::-;18070:155;;18242:3;18235:10;;17835:416;;;;;:::o;18257:222::-;18350:4;18388:2;18377:9;18373:18;18365:26;;18401:71;18469:1;18458:9;18454:17;18445:6;18401:71;:::i;:::-;18355:124;;;;:::o;18485:640::-;18680:4;18718:3;18707:9;18703:19;18695:27;;18732:71;18800:1;18789:9;18785:17;18776:6;18732:71;:::i;:::-;18813:72;18881:2;18870:9;18866:18;18857:6;18813:72;:::i;:::-;18895;18963:2;18952:9;18948:18;18939:6;18895:72;:::i;:::-;19014:9;19008:4;19004:20;18999:2;18988:9;18984:18;18977:48;19042:76;19113:4;19104:6;19042:76;:::i;:::-;19034:84;;18685:440;;;;;;;:::o;19131:501::-;19338:4;19376:2;19365:9;19361:18;19353:26;;19425:9;19419:4;19415:20;19411:1;19400:9;19396:17;19389:47;19453:172;19620:4;19611:6;19453:172;:::i;:::-;19445:180;;19343:289;;;;:::o;19638:373::-;19781:4;19819:2;19808:9;19804:18;19796:26;;19868:9;19862:4;19858:20;19854:1;19843:9;19839:17;19832:47;19896:108;19999:4;19990:6;19896:108;:::i;:::-;19888:116;;19786:225;;;;:::o;20017:210::-;20104:4;20142:2;20131:9;20127:18;20119:26;;20155:65;20217:1;20206:9;20202:17;20193:6;20155:65;:::i;:::-;20109:118;;;;:::o;20233:313::-;20346:4;20384:2;20373:9;20369:18;20361:26;;20433:9;20427:4;20423:20;20419:1;20408:9;20404:17;20397:47;20461:78;20534:4;20525:6;20461:78;:::i;:::-;20453:86;;20351:195;;;;:::o;20552:419::-;20718:4;20756:2;20745:9;20741:18;20733:26;;20805:9;20799:4;20795:20;20791:1;20780:9;20776:17;20769:47;20833:131;20959:4;20833:131;:::i;:::-;20825:139;;20723:248;;;:::o;20977:419::-;21143:4;21181:2;21170:9;21166:18;21158:26;;21230:9;21224:4;21220:20;21216:1;21205:9;21201:17;21194:47;21258:131;21384:4;21258:131;:::i;:::-;21250:139;;21148:248;;;:::o;21402:419::-;21568:4;21606:2;21595:9;21591:18;21583:26;;21655:9;21649:4;21645:20;21641:1;21630:9;21626:17;21619:47;21683:131;21809:4;21683:131;:::i;:::-;21675:139;;21573:248;;;:::o;21827:419::-;21993:4;22031:2;22020:9;22016:18;22008:26;;22080:9;22074:4;22070:20;22066:1;22055:9;22051:17;22044:47;22108:131;22234:4;22108:131;:::i;:::-;22100:139;;21998:248;;;:::o;22252:419::-;22418:4;22456:2;22445:9;22441:18;22433:26;;22505:9;22499:4;22495:20;22491:1;22480:9;22476:17;22469:47;22533:131;22659:4;22533:131;:::i;:::-;22525:139;;22423:248;;;:::o;22677:419::-;22843:4;22881:2;22870:9;22866:18;22858:26;;22930:9;22924:4;22920:20;22916:1;22905:9;22901:17;22894:47;22958:131;23084:4;22958:131;:::i;:::-;22950:139;;22848:248;;;:::o;23102:419::-;23268:4;23306:2;23295:9;23291:18;23283:26;;23355:9;23349:4;23345:20;23341:1;23330:9;23326:17;23319:47;23383:131;23509:4;23383:131;:::i;:::-;23375:139;;23273:248;;;:::o;23527:419::-;23693:4;23731:2;23720:9;23716:18;23708:26;;23780:9;23774:4;23770:20;23766:1;23755:9;23751:17;23744:47;23808:131;23934:4;23808:131;:::i;:::-;23800:139;;23698:248;;;:::o;23952:350::-;24109:4;24147:2;24136:9;24132:18;24124:26;;24160:135;24292:1;24281:9;24277:17;24268:6;24160:135;:::i;:::-;24114:188;;;;:::o;24308:222::-;24401:4;24439:2;24428:9;24424:18;24416:26;;24452:71;24520:1;24509:9;24505:17;24496:6;24452:71;:::i;:::-;24406:124;;;;:::o;24536:129::-;24570:6;24597:20;;:::i;:::-;24587:30;;24626:33;24654:4;24646:6;24626:33;:::i;:::-;24577:88;;;:::o;24671:75::-;24704:6;24737:2;24731:9;24721:19;;24711:35;:::o;24752:311::-;24829:4;24919:18;24911:6;24908:30;24905:2;;;24941:18;;:::i;:::-;24905:2;24991:4;24983:6;24979:17;24971:25;;25051:4;25045;25041:15;25033:23;;24834:229;;;:::o;25069:307::-;25130:4;25220:18;25212:6;25209:30;25206:2;;;25242:18;;:::i;:::-;25206:2;25280:29;25302:6;25280:29;:::i;:::-;25272:37;;25364:4;25358;25354:15;25346:23;;25135:241;;;:::o;25382:164::-;25481:4;25504:3;25496:11;;25534:4;25529:3;25525:14;25517:22;;25486:60;;;:::o;25552:132::-;25619:4;25642:3;25634:11;;25672:4;25667:3;25663:14;25655:22;;25624:60;;;:::o;25690:146::-;25789:6;25823:5;25817:12;25807:22;;25796:40;;;:::o;25842:114::-;25909:6;25943:5;25937:12;25927:22;;25916:40;;;:::o;25962:98::-;26013:6;26047:5;26041:12;26031:22;;26020:40;;;:::o;26066:99::-;26118:6;26152:5;26146:12;26136:22;;26125:40;;;:::o;26171:145::-;26273:4;26305;26300:3;26296:14;26288:22;;26278:38;;;:::o;26322:113::-;26392:4;26424;26419:3;26415:14;26407:22;;26397:38;;;:::o;26441:216::-;26572:11;26606:6;26601:3;26594:19;26646:4;26641:3;26637:14;26622:29;;26584:73;;;;:::o;26663:184::-;26762:11;26796:6;26791:3;26784:19;26836:4;26831:3;26827:14;26812:29;;26774:73;;;;:::o;26853:168::-;26936:11;26970:6;26965:3;26958:19;27010:4;27005:3;27001:14;26986:29;;26948:73;;;;:::o;27027:169::-;27111:11;27145:6;27140:3;27133:19;27185:4;27180:3;27176:14;27161:29;;27123:73;;;;:::o;27202:148::-;27304:11;27341:3;27326:18;;27316:34;;;;:::o;27356:305::-;27396:3;27415:20;27433:1;27415:20;:::i;:::-;27410:25;;27449:20;27467:1;27449:20;:::i;:::-;27444:25;;27603:1;27535:66;27531:74;27528:1;27525:81;27522:2;;;27609:18;;:::i;:::-;27522:2;27653:1;27650;27646:9;27639:16;;27400:261;;;;:::o;27667:348::-;27707:7;27730:20;27748:1;27730:20;:::i;:::-;27725:25;;27764:20;27782:1;27764:20;:::i;:::-;27759:25;;27952:1;27884:66;27880:74;27877:1;27874:81;27869:1;27862:9;27855:17;27851:105;27848:2;;;27959:18;;:::i;:::-;27848:2;28007:1;28004;28000:9;27989:20;;27715:300;;;;:::o;28021:191::-;28061:4;28081:20;28099:1;28081:20;:::i;:::-;28076:25;;28115:20;28133:1;28115:20;:::i;:::-;28110:25;;28154:1;28151;28148:8;28145:2;;;28159:18;;:::i;:::-;28145:2;28204:1;28201;28197:9;28189:17;;28066:146;;;;:::o;28218:96::-;28255:7;28284:24;28302:5;28284:24;:::i;:::-;28273:35;;28263:51;;;:::o;28320:90::-;28354:7;28397:5;28390:13;28383:21;28372:32;;28362:48;;;:::o;28416:149::-;28452:7;28492:66;28485:5;28481:78;28470:89;;28460:105;;;:::o;28571:125::-;28637:7;28666:24;28684:5;28666:24;:::i;:::-;28655:35;;28645:51;;;:::o;28702:126::-;28739:7;28779:42;28772:5;28768:54;28757:65;;28747:81;;;:::o;28834:77::-;28871:7;28900:5;28889:16;;28879:32;;;:::o;28917:101::-;28953:7;28993:18;28986:5;28982:30;28971:41;;28961:57;;;:::o;29024:154::-;29108:6;29103:3;29098;29085:30;29170:1;29161:6;29156:3;29152:16;29145:27;29075:103;;;:::o;29184:307::-;29252:1;29262:113;29276:6;29273:1;29270:13;29262:113;;;29361:1;29356:3;29352:11;29346:18;29342:1;29337:3;29333:11;29326:39;29298:2;29295:1;29291:10;29286:15;;29262:113;;;29393:6;29390:1;29387:13;29384:2;;;29473:1;29464:6;29459:3;29455:16;29448:27;29384:2;29233:258;;;;:::o;29497:320::-;29541:6;29578:1;29572:4;29568:12;29558:22;;29625:1;29619:4;29615:12;29646:18;29636:2;;29702:4;29694:6;29690:17;29680:27;;29636:2;29764;29756:6;29753:14;29733:18;29730:38;29727:2;;;29783:18;;:::i;:::-;29727:2;29548:269;;;;:::o;29823:281::-;29906:27;29928:4;29906:27;:::i;:::-;29898:6;29894:40;30036:6;30024:10;30021:22;30000:18;29988:10;29985:34;29982:62;29979:2;;;30047:18;;:::i;:::-;29979:2;30087:10;30083:2;30076:22;29866:238;;;:::o;30110:180::-;30158:77;30155:1;30148:88;30255:4;30252:1;30245:15;30279:4;30276:1;30269:15;30296:180;30344:77;30341:1;30334:88;30441:4;30438:1;30431:15;30465:4;30462:1;30455:15;30482:180;30530:77;30527:1;30520:88;30627:4;30624:1;30617:15;30651:4;30648:1;30641:15;30668:102;30709:6;30760:2;30756:7;30751:2;30744:5;30740:14;30736:28;30726:38;;30716:54;;;:::o;30776:164::-;30916:16;30912:1;30904:6;30900:14;30893:40;30882:58;:::o;30946:225::-;31086:34;31082:1;31074:6;31070:14;31063:58;31155:8;31150:2;31142:6;31138:15;31131:33;31052:119;:::o;31177:168::-;31317:20;31313:1;31305:6;31301:14;31294:44;31283:62;:::o;31351:171::-;31491:23;31487:1;31479:6;31475:14;31468:47;31457:65;:::o;31528:155::-;31668:7;31664:1;31656:6;31652:14;31645:31;31634:49;:::o;31689:182::-;31829:34;31825:1;31817:6;31813:14;31806:58;31795:76;:::o;31877:175::-;32017:27;32013:1;32005:6;32001:14;31994:51;31983:69;:::o;32058:167::-;32198:19;32194:1;32186:6;32182:14;32175:43;32164:61;:::o;32231:162::-;32371:14;32367:1;32359:6;32355:14;32348:38;32337:56;:::o;32399:122::-;32472:24;32490:5;32472:24;:::i;:::-;32465:5;32462:35;32452:2;;32511:1;32508;32501:12;32452:2;32442:79;:::o;32527:116::-;32597:21;32612:5;32597:21;:::i;:::-;32590:5;32587:32;32577:2;;32633:1;32630;32623:12;32577:2;32567:76;:::o;32649:120::-;32721:23;32738:5;32721:23;:::i;:::-;32714:5;32711:34;32701:2;;32759:1;32756;32749:12;32701:2;32691:78;:::o;32775:180::-;32877:53;32924:5;32877:53;:::i;:::-;32870:5;32867:64;32857:2;;32945:1;32942;32935:12;32857:2;32847:108;:::o;32961:122::-;33034:24;33052:5;33034:24;:::i;:::-;33027:5;33024:35;33014:2;;33073:1;33070;33063:12;33014:2;33004:79;:::o

Swarm Source

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