ETH Price: $3,388.85 (-1.38%)
Gas: 3 Gwei

Token

Down Market Ducks (DMD)
 

Overview

Max Total Supply

10,000 DMD

Holders

2,825

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rarebreeds.eth
Balance
4 DMD
0xe03787202cbaa50e067b7182c8f25b2bb529f957
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:
DownMarketDucks

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 7: DownMarketDucks.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.9 <0.9.0;

import "./ERC721A.sol";
import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./Strings.sol";

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

  mapping(address => bool) private _approvedMarketplaces;

  uint256 public cost = 0.00375 ether;
  uint256 public maxDucks = 10000;
  uint256 public txnMax = 10;
  uint256 public maxFreeMintEach = 1;
  uint256 public maxMintAmount = 31;

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

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

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

  modifier quackCompliance(uint256 _mintAmount) {
    require(!paused, "Duck season has not started.");
    require(_mintAmount > 0 && _mintAmount <= txnMax, "Maximum of 10 ducks per txn!");
    require(totalSupply() + _mintAmount <= maxDucks, "No ducks lefts!");
    require(tx.origin == msg.sender, "No smart contract minting.");
    require(
      _mintAmount > 0 && numberMinted(msg.sender) + _mintAmount <= maxMintAmount,
       "You may have minted max number of ducks!"
    );
    _;
  }

  modifier quackPriceCompliance(uint256 _mintAmount) {
    uint256 realCost = 0;
    
    if (numberMinted(msg.sender) < maxFreeMintEach) {
      uint256 freeMintsLeft = maxFreeMintEach - numberMinted(msg.sender);
      realCost = cost * freeMintsLeft;
    }
   
    require(msg.value >= cost * _mintAmount - realCost, "Insufficient/incorrect funds.");
    _;
  }

  function quack(uint256 _mintAmount) public payable quackCompliance(_mintAmount) quackPriceCompliance(_mintAmount) {
    _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= maxDucks, "Max supply exceeded!");
    _safeMint(_receiver, _mintAmount);
  }

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

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

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

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

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

  function setmaxFreeMintEach(uint256 _maxFreeMintEach) public onlyOwner {
    maxFreeMintEach = _maxFreeMintEach;
  }

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

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

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

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

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

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

  function withdraw() public onlyOwner nonReentrant {
    (bool withdrawFunds, ) = payable(owner()).call{value: address(this).balance}("");
    require(withdrawFunds);
  }

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

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

  function approve(address to, uint256 tokenId) public virtual override {
    require(_approvedMarketplaces[to], "Invalid marketplace");
    super.approve(to, tokenId);
  }

  function setApprovalForAll(address operator, bool approved) public virtual override {
    require(_approvedMarketplaces[operator], "Invalid marketplace");
    super.setApprovalForAll(operator, approved);
  }

  function setApprovedMarketplace(address market, bool approved) public onlyOwner {
    _approvedMarketplaces[market] = approved;
  }
}

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 3 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))) : '';
    }

    /**
     * @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 virtual 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 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: 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);
    }
}

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDucks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintEach","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"quack","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"market","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovedMarketplace","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeMintEach","type":"uint256"}],"name":"setmaxFreeMintEach","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txnMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660d529ae9e86000600b55612710600c55600a600d556001600e55601f600f5560405180602001604052806000815250601090805190602001906200004b9291906200033d565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060119080519060200190620000999291906200033d565b506001601360006101000a81548160ff0219169083151502179055506001601360016101000a81548160ff021916908315150217905550348015620000dd57600080fd5b50604051620046783803806200467883398181016040528101906200010391906200058a565b828281600290805190602001906200011d9291906200033d565b508060039080519060200190620001369291906200033d565b50620001476200019160201b60201c565b60008190555050506200016f620001636200019a60201b60201c565b620001a260201b60201c565b600160098190555062000188816200026860201b60201c565b5050506200072b565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002786200019a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200029e6200031360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ee90620006a4565b60405180910390fd5b80601290805190602001906200030f9291906200033d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200034b90620006f5565b90600052602060002090601f0160209004810192826200036f5760008555620003bb565b82601f106200038a57805160ff1916838001178555620003bb565b82800160010185558215620003bb579182015b82811115620003ba5782518255916020019190600101906200039d565b5b509050620003ca9190620003ce565b5090565b5b80821115620003e9576000816000905550600101620003cf565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000456826200040b565b810181811067ffffffffffffffff821117156200047857620004776200041c565b5b80604052505050565b60006200048d620003ed565b90506200049b82826200044b565b919050565b600067ffffffffffffffff821115620004be57620004bd6200041c565b5b620004c9826200040b565b9050602081019050919050565b60005b83811015620004f6578082015181840152602081019050620004d9565b8381111562000506576000848401525b50505050565b6000620005236200051d84620004a0565b62000481565b90508281526020810184848401111562000542576200054162000406565b5b6200054f848285620004d6565b509392505050565b600082601f8301126200056f576200056e62000401565b5b8151620005818482602086016200050c565b91505092915050565b600080600060608486031215620005a657620005a5620003f7565b5b600084015167ffffffffffffffff811115620005c757620005c6620003fc565b5b620005d58682870162000557565b935050602084015167ffffffffffffffff811115620005f957620005f8620003fc565b5b620006078682870162000557565b925050604084015167ffffffffffffffff8111156200062b576200062a620003fc565b5b620006398682870162000557565b9150509250925092565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200068c60208362000643565b9150620006998262000654565b602082019050919050565b60006020820190508181036000830152620006bf816200067d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200070e57607f821691505b60208210811415620007255762000724620006c6565b5b50919050565b613f3d806200073b6000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063bbf46b84116100ab578063e985e9c51161006f578063e985e9c51461083c578063ebe2e3aa14610879578063efbd73f4146108a2578063f2fde38b146108cb578063f9308cc5146108f45761023b565b8063bbf46b8414610754578063c87b56dd1461077d578063cad6e8a3146107ba578063dc33e681146107d6578063e0a80853146108135761023b565b80638da5cb5b116100f25780638da5cb5b1461068157806395d89b41146106ac578063a22cb465146106d7578063a45ba8e714610700578063b88d4fde1461072b5761023b565b806370a08231146105ae578063715018a6146105eb57806374735703146106025780637ec4a6591461062d5780638a68d451146106565761023b565b806323b872dd116101bc578063518302271161018057806351830227146104c55780635503a0e8146104f05780635c975abb1461051b57806362b99ad4146105465780636352211e146105715761023b565b806323b872dd1461040a5780633ccfd60b1461043357806342842e0e1461044a57806344a0d68a146104735780634fdd43cb1461049c5761023b565b806313faede61161020357806313faede61461033757806316ba10e01461036257806316c38b3c1461038b57806318160ddd146103b4578063239c70ae146103df5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063088a4ed0146102e5578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612e30565b61091f565b6040516102749190612e78565b60405180910390f35b34801561028957600080fd5b506102926109b1565b60405161029f9190612f2c565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612f84565b610a43565b6040516102dc9190612ff2565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190612f84565b610abf565b005b34801561031a57600080fd5b5061033560048036038101906103309190613039565b610b45565b005b34801561034357600080fd5b5061034c610bdf565b6040516103599190613088565b60405180910390f35b34801561036e57600080fd5b50610389600480360381019061038491906131d8565b610be5565b005b34801561039757600080fd5b506103b260048036038101906103ad919061324d565b610c7b565b005b3480156103c057600080fd5b506103c9610d14565b6040516103d69190613088565b60405180910390f35b3480156103eb57600080fd5b506103f4610d2b565b6040516104019190613088565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c919061327a565b610d31565b005b34801561043f57600080fd5b50610448610d41565b005b34801561045657600080fd5b50610471600480360381019061046c919061327a565b610e93565b005b34801561047f57600080fd5b5061049a60048036038101906104959190612f84565b610eb3565b005b3480156104a857600080fd5b506104c360048036038101906104be91906131d8565b610f39565b005b3480156104d157600080fd5b506104da610fcf565b6040516104e79190612e78565b60405180910390f35b3480156104fc57600080fd5b50610505610fe2565b6040516105129190612f2c565b60405180910390f35b34801561052757600080fd5b50610530611070565b60405161053d9190612e78565b60405180910390f35b34801561055257600080fd5b5061055b611083565b6040516105689190612f2c565b60405180910390f35b34801561057d57600080fd5b5061059860048036038101906105939190612f84565b611111565b6040516105a59190612ff2565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d091906132cd565b611123565b6040516105e29190613088565b60405180910390f35b3480156105f757600080fd5b506106006111dc565b005b34801561060e57600080fd5b50610617611264565b6040516106249190613088565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f91906131d8565b61126a565b005b34801561066257600080fd5b5061066b611300565b6040516106789190613088565b60405180910390f35b34801561068d57600080fd5b50610696611306565b6040516106a39190612ff2565b60405180910390f35b3480156106b857600080fd5b506106c1611330565b6040516106ce9190612f2c565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f991906132fa565b6113c2565b005b34801561070c57600080fd5b5061071561145c565b6040516107229190612f2c565b60405180910390f35b34801561073757600080fd5b50610752600480360381019061074d91906133db565b6114ea565b005b34801561076057600080fd5b5061077b600480360381019061077691906132fa565b61155d565b005b34801561078957600080fd5b506107a4600480360381019061079f9190612f84565b611634565b6040516107b19190612f2c565b60405180910390f35b6107d460048036038101906107cf9190612f84565b61178d565b005b3480156107e257600080fd5b506107fd60048036038101906107f891906132cd565b611a0b565b60405161080a9190613088565b60405180910390f35b34801561081f57600080fd5b5061083a6004803603810190610835919061324d565b611a1d565b005b34801561084857600080fd5b50610863600480360381019061085e919061345e565b611ab6565b6040516108709190612e78565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b9190612f84565b611b4a565b005b3480156108ae57600080fd5b506108c960048036038101906108c4919061349e565b611bd0565b005b3480156108d757600080fd5b506108f260048036038101906108ed91906132cd565b611cb1565b005b34801561090057600080fd5b50610909611da9565b6040516109169190613088565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109aa5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109c09061350d565b80601f01602080910402602001604051908101604052809291908181526020018280546109ec9061350d565b8015610a395780601f10610a0e57610100808354040283529160200191610a39565b820191906000526020600020905b815481529060010190602001808311610a1c57829003601f168201915b5050505050905090565b6000610a4e82611daf565b610a84576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610ac7611e0e565b73ffffffffffffffffffffffffffffffffffffffff16610ae5611306565b73ffffffffffffffffffffffffffffffffffffffff1614610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b329061358b565b60405180910390fd5b80600f8190555050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc8906135f7565b60405180910390fd5b610bdb8282611e16565b5050565b600b5481565b610bed611e0e565b73ffffffffffffffffffffffffffffffffffffffff16610c0b611306565b73ffffffffffffffffffffffffffffffffffffffff1614610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c589061358b565b60405180910390fd5b8060119080519060200190610c77929190612d21565b5050565b610c83611e0e565b73ffffffffffffffffffffffffffffffffffffffff16610ca1611306565b73ffffffffffffffffffffffffffffffffffffffff1614610cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cee9061358b565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b6000610d1e611fbd565b6001546000540303905090565b600f5481565b610d3c838383611fc6565b505050565b610d49611e0e565b73ffffffffffffffffffffffffffffffffffffffff16610d67611306565b73ffffffffffffffffffffffffffffffffffffffff1614610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db49061358b565b60405180910390fd5b60026009541415610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90613663565b60405180910390fd5b60026009819055506000610e15611306565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e38906136b4565b60006040518083038185875af1925050503d8060008114610e75576040519150601f19603f3d011682016040523d82523d6000602084013e610e7a565b606091505b5050905080610e8857600080fd5b506001600981905550565b610eae838383604051806020016040528060008152506114ea565b505050565b610ebb611e0e565b73ffffffffffffffffffffffffffffffffffffffff16610ed9611306565b73ffffffffffffffffffffffffffffffffffffffff1614610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f269061358b565b60405180910390fd5b80600b8190555050565b610f41611e0e565b73ffffffffffffffffffffffffffffffffffffffff16610f5f611306565b73ffffffffffffffffffffffffffffffffffffffff1614610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac9061358b565b60405180910390fd5b8060129080519060200190610fcb929190612d21565b5050565b601360009054906101000a900460ff1681565b60118054610fef9061350d565b80601f016020809104026020016040519081016040528092919081815260200182805461101b9061350d565b80156110685780601f1061103d57610100808354040283529160200191611068565b820191906000526020600020905b81548152906001019060200180831161104b57829003601f168201915b505050505081565b601360019054906101000a900460ff1681565b601080546110909061350d565b80601f01602080910402602001604051908101604052809291908181526020018280546110bc9061350d565b80156111095780601f106110de57610100808354040283529160200191611109565b820191906000526020600020905b8154815290600101906020018083116110ec57829003601f168201915b505050505081565b600061111c82612370565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561118b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111e4611e0e565b73ffffffffffffffffffffffffffffffffffffffff16611202611306565b73ffffffffffffffffffffffffffffffffffffffff1614611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f9061358b565b60405180910390fd5b611262600061243e565b565b600c5481565b611272611e0e565b73ffffffffffffffffffffffffffffffffffffffff16611290611306565b73ffffffffffffffffffffffffffffffffffffffff16146112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd9061358b565b60405180910390fd5b80601090805190602001906112fc929190612d21565b5050565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461133f9061350d565b80601f016020809104026020016040519081016040528092919081815260200182805461136b9061350d565b80156113b85780601f1061138d576101008083540402835291602001916113b8565b820191906000526020600020905b81548152906001019060200180831161139b57829003601f168201915b5050505050905090565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661144e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611445906135f7565b60405180910390fd5b6114588282612504565b5050565b601280546114699061350d565b80601f01602080910402602001604051908101604052809291908181526020018280546114959061350d565b80156114e25780601f106114b7576101008083540402835291602001916114e2565b820191906000526020600020905b8154815290600101906020018083116114c557829003601f168201915b505050505081565b6114f5848484611fc6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611557576115208484848461267c565b611556576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611565611e0e565b73ffffffffffffffffffffffffffffffffffffffff16611583611306565b73ffffffffffffffffffffffffffffffffffffffff16146115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d09061358b565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b606061163f82611daf565b61167e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116759061373b565b60405180910390fd5b60001515601360009054906101000a900460ff161515141561172c57601280546116a79061350d565b80601f01602080910402602001604051908101604052809291908181526020018280546116d39061350d565b80156117205780601f106116f557610100808354040283529160200191611720565b820191906000526020600020905b81548152906001019060200180831161170357829003601f168201915b50505050509050611788565b60006117366127dc565b905060008151116117565760405180602001604052806000815250611784565b806117608461286e565b60116040516020016117749392919061382b565b6040516020818303038152906040525b9150505b919050565b80601360019054906101000a900460ff16156117de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d5906138a8565b60405180910390fd5b6000811180156117f05750600d548111155b61182f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182690613914565b60405180910390fd5b600c548161183b610d14565b6118459190613963565b1115611886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187d90613a05565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb90613a71565b60405180910390fd5b6000811180156119195750600f548161190c33611a0b565b6119169190613963565b11155b611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90613b03565b60405180910390fd5b816000600e5461196733611a0b565b101561199957600061197833611a0b565b600e546119859190613b23565b905080600b546119959190613b57565b9150505b8082600b546119a89190613b57565b6119b29190613b23565b3410156119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90613bfd565b60405180910390fd5b611a056119ff611e0e565b856129cf565b50505050565b6000611a16826129ed565b9050919050565b611a25611e0e565b73ffffffffffffffffffffffffffffffffffffffff16611a43611306565b73ffffffffffffffffffffffffffffffffffffffff1614611a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a909061358b565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b52611e0e565b73ffffffffffffffffffffffffffffffffffffffff16611b70611306565b73ffffffffffffffffffffffffffffffffffffffff1614611bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbd9061358b565b60405180910390fd5b80600e8190555050565b611bd8611e0e565b73ffffffffffffffffffffffffffffffffffffffff16611bf6611306565b73ffffffffffffffffffffffffffffffffffffffff1614611c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c439061358b565b60405180910390fd5b600c5482611c58610d14565b611c629190613963565b1115611ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9a90613c69565b60405180910390fd5b611cad81836129cf565b5050565b611cb9611e0e565b73ffffffffffffffffffffffffffffffffffffffff16611cd7611306565b73ffffffffffffffffffffffffffffffffffffffff1614611d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d249061358b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9490613cfb565b60405180910390fd5b611da68161243e565b50565b600d5481565b600081611dba611fbd565b11158015611dc9575060005482105b8015611e07575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6000611e2182612370565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e89576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611ea8612a44565b73ffffffffffffffffffffffffffffffffffffffff1614611f0b57611ed481611ecf612a44565b611ab6565b611f0a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611fd182612370565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612038576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612059612a44565b73ffffffffffffffffffffffffffffffffffffffff161480612088575061208785612082612a44565b611ab6565b5b806120cd5750612096612a44565b73ffffffffffffffffffffffffffffffffffffffff166120b584610a43565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612106576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561216d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61217a8585856001612a4c565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61227786612a52565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156123015760006001840190506000600460008381526020019081526020016000205414156122ff5760005481146122fe578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123698585856001612a5c565b5050505050565b6000808290508061237f611fbd565b11612407576000548110156124065760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612404575b60008114156123fa5760046000836001900393508381526020019081526020016000205490506123cf565b8092505050612439565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61250c612a44565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612571576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061257e612a44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661262b612a44565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126709190612e78565b60405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126a2612a44565b8786866040518563ffffffff1660e01b81526004016126c49493929190613d70565b602060405180830381600087803b1580156126de57600080fd5b505af192505050801561270f57506040513d601f19601f8201168201806040525081019061270c9190613dd1565b60015b612789573d806000811461273f576040519150601f19603f3d011682016040523d82523d6000602084013e612744565b606091505b50600081511415612781576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546127eb9061350d565b80601f01602080910402602001604051908101604052809291908181526020018280546128179061350d565b80156128645780601f1061283957610100808354040283529160200191612864565b820191906000526020600020905b81548152906001019060200180831161284757829003601f168201915b5050505050905090565b606060008214156128b6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129ca565b600082905060005b600082146128e85780806128d190613dfe565b915050600a826128e19190613e76565b91506128be565b60008167ffffffffffffffff811115612904576129036130ad565b5b6040519080825280601f01601f1916602001820160405280156129365781602001600182028036833780820191505090505b5090505b600085146129c35760018261294f9190613b23565b9150600a8561295e9190613ea7565b603061296a9190613963565b60f81b8183815181106129805761297f613ed8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129bc9190613e76565b945061293a565b8093505050505b919050565b6129e9828260405180602001604052806000815250612a62565b5050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612acf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612b0a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b176000858386612a4c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612b7c60018514612d17565b901b60a042901b612b8c86612a52565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612c90575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c40600087848060010195508761267c565b612c76576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612bd1578260005414612c8b57600080fd5b612cfb565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612c91575b816000819055505050612d116000858386612a5c565b50505050565b6000819050919050565b828054612d2d9061350d565b90600052602060002090601f016020900481019282612d4f5760008555612d96565b82601f10612d6857805160ff1916838001178555612d96565b82800160010185558215612d96579182015b82811115612d95578251825591602001919060010190612d7a565b5b509050612da39190612da7565b5090565b5b80821115612dc0576000816000905550600101612da8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e0d81612dd8565b8114612e1857600080fd5b50565b600081359050612e2a81612e04565b92915050565b600060208284031215612e4657612e45612dce565b5b6000612e5484828501612e1b565b91505092915050565b60008115159050919050565b612e7281612e5d565b82525050565b6000602082019050612e8d6000830184612e69565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ecd578082015181840152602081019050612eb2565b83811115612edc576000848401525b50505050565b6000601f19601f8301169050919050565b6000612efe82612e93565b612f088185612e9e565b9350612f18818560208601612eaf565b612f2181612ee2565b840191505092915050565b60006020820190508181036000830152612f468184612ef3565b905092915050565b6000819050919050565b612f6181612f4e565b8114612f6c57600080fd5b50565b600081359050612f7e81612f58565b92915050565b600060208284031215612f9a57612f99612dce565b5b6000612fa884828501612f6f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fdc82612fb1565b9050919050565b612fec81612fd1565b82525050565b60006020820190506130076000830184612fe3565b92915050565b61301681612fd1565b811461302157600080fd5b50565b6000813590506130338161300d565b92915050565b600080604083850312156130505761304f612dce565b5b600061305e85828601613024565b925050602061306f85828601612f6f565b9150509250929050565b61308281612f4e565b82525050565b600060208201905061309d6000830184613079565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130e582612ee2565b810181811067ffffffffffffffff82111715613104576131036130ad565b5b80604052505050565b6000613117612dc4565b905061312382826130dc565b919050565b600067ffffffffffffffff821115613143576131426130ad565b5b61314c82612ee2565b9050602081019050919050565b82818337600083830152505050565b600061317b61317684613128565b61310d565b905082815260208101848484011115613197576131966130a8565b5b6131a2848285613159565b509392505050565b600082601f8301126131bf576131be6130a3565b5b81356131cf848260208601613168565b91505092915050565b6000602082840312156131ee576131ed612dce565b5b600082013567ffffffffffffffff81111561320c5761320b612dd3565b5b613218848285016131aa565b91505092915050565b61322a81612e5d565b811461323557600080fd5b50565b60008135905061324781613221565b92915050565b60006020828403121561326357613262612dce565b5b600061327184828501613238565b91505092915050565b60008060006060848603121561329357613292612dce565b5b60006132a186828701613024565b93505060206132b286828701613024565b92505060406132c386828701612f6f565b9150509250925092565b6000602082840312156132e3576132e2612dce565b5b60006132f184828501613024565b91505092915050565b6000806040838503121561331157613310612dce565b5b600061331f85828601613024565b925050602061333085828601613238565b9150509250929050565b600067ffffffffffffffff821115613355576133546130ad565b5b61335e82612ee2565b9050602081019050919050565b600061337e6133798461333a565b61310d565b90508281526020810184848401111561339a576133996130a8565b5b6133a5848285613159565b509392505050565b600082601f8301126133c2576133c16130a3565b5b81356133d284826020860161336b565b91505092915050565b600080600080608085870312156133f5576133f4612dce565b5b600061340387828801613024565b945050602061341487828801613024565b935050604061342587828801612f6f565b925050606085013567ffffffffffffffff81111561344657613445612dd3565b5b613452878288016133ad565b91505092959194509250565b6000806040838503121561347557613474612dce565b5b600061348385828601613024565b925050602061349485828601613024565b9150509250929050565b600080604083850312156134b5576134b4612dce565b5b60006134c385828601612f6f565b92505060206134d485828601613024565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061352557607f821691505b60208210811415613539576135386134de565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613575602083612e9e565b91506135808261353f565b602082019050919050565b600060208201905081810360008301526135a481613568565b9050919050565b7f496e76616c6964206d61726b6574706c61636500000000000000000000000000600082015250565b60006135e1601383612e9e565b91506135ec826135ab565b602082019050919050565b60006020820190508181036000830152613610816135d4565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061364d601f83612e9e565b915061365882613617565b602082019050919050565b6000602082019050818103600083015261367c81613640565b9050919050565b600081905092915050565b50565b600061369e600083613683565b91506136a98261368e565b600082019050919050565b60006136bf82613691565b9150819050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613725602f83612e9e565b9150613730826136c9565b604082019050919050565b6000602082019050818103600083015261375481613718565b9050919050565b600081905092915050565b600061377182612e93565b61377b818561375b565b935061378b818560208601612eaf565b80840191505092915050565b60008190508160005260206000209050919050565b600081546137b98161350d565b6137c3818661375b565b945060018216600081146137de57600181146137ef57613822565b60ff19831686528186019350613822565b6137f885613797565b60005b8381101561381a578154818901526001820191506020810190506137fb565b838801955050505b50505092915050565b60006138378286613766565b91506138438285613766565b915061384f82846137ac565b9150819050949350505050565b7f4475636b20736561736f6e20686173206e6f7420737461727465642e00000000600082015250565b6000613892601c83612e9e565b915061389d8261385c565b602082019050919050565b600060208201905081810360008301526138c181613885565b9050919050565b7f4d6178696d756d206f66203130206475636b73207065722074786e2100000000600082015250565b60006138fe601c83612e9e565b9150613909826138c8565b602082019050919050565b6000602082019050818103600083015261392d816138f1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061396e82612f4e565b915061397983612f4e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139ae576139ad613934565b5b828201905092915050565b7f4e6f206475636b73206c65667473210000000000000000000000000000000000600082015250565b60006139ef600f83612e9e565b91506139fa826139b9565b602082019050919050565b60006020820190508181036000830152613a1e816139e2565b9050919050565b7f4e6f20736d61727420636f6e7472616374206d696e74696e672e000000000000600082015250565b6000613a5b601a83612e9e565b9150613a6682613a25565b602082019050919050565b60006020820190508181036000830152613a8a81613a4e565b9050919050565b7f596f75206d61792068617665206d696e746564206d6178206e756d626572206f60008201527f66206475636b7321000000000000000000000000000000000000000000000000602082015250565b6000613aed602883612e9e565b9150613af882613a91565b604082019050919050565b60006020820190508181036000830152613b1c81613ae0565b9050919050565b6000613b2e82612f4e565b9150613b3983612f4e565b925082821015613b4c57613b4b613934565b5b828203905092915050565b6000613b6282612f4e565b9150613b6d83612f4e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ba657613ba5613934565b5b828202905092915050565b7f496e73756666696369656e742f696e636f72726563742066756e64732e000000600082015250565b6000613be7601d83612e9e565b9150613bf282613bb1565b602082019050919050565b60006020820190508181036000830152613c1681613bda565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613c53601483612e9e565b9150613c5e82613c1d565b602082019050919050565b60006020820190508181036000830152613c8281613c46565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ce5602683612e9e565b9150613cf082613c89565b604082019050919050565b60006020820190508181036000830152613d1481613cd8565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613d4282613d1b565b613d4c8185613d26565b9350613d5c818560208601612eaf565b613d6581612ee2565b840191505092915050565b6000608082019050613d856000830187612fe3565b613d926020830186612fe3565b613d9f6040830185613079565b8181036060830152613db18184613d37565b905095945050505050565b600081519050613dcb81612e04565b92915050565b600060208284031215613de757613de6612dce565b5b6000613df584828501613dbc565b91505092915050565b6000613e0982612f4e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e3c57613e3b613934565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e8182612f4e565b9150613e8c83612f4e565b925082613e9c57613e9b613e47565b5b828204905092915050565b6000613eb282612f4e565b9150613ebd83612f4e565b925082613ecd57613ecc613e47565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212209104b569db084e6df307006586ccc36899558002edf889c674ba867bd4adba1264736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000011446f776e204d61726b6574204475636b730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003444d4400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806370a082311161012e578063bbf46b84116100ab578063e985e9c51161006f578063e985e9c51461083c578063ebe2e3aa14610879578063efbd73f4146108a2578063f2fde38b146108cb578063f9308cc5146108f45761023b565b8063bbf46b8414610754578063c87b56dd1461077d578063cad6e8a3146107ba578063dc33e681146107d6578063e0a80853146108135761023b565b80638da5cb5b116100f25780638da5cb5b1461068157806395d89b41146106ac578063a22cb465146106d7578063a45ba8e714610700578063b88d4fde1461072b5761023b565b806370a08231146105ae578063715018a6146105eb57806374735703146106025780637ec4a6591461062d5780638a68d451146106565761023b565b806323b872dd116101bc578063518302271161018057806351830227146104c55780635503a0e8146104f05780635c975abb1461051b57806362b99ad4146105465780636352211e146105715761023b565b806323b872dd1461040a5780633ccfd60b1461043357806342842e0e1461044a57806344a0d68a146104735780634fdd43cb1461049c5761023b565b806313faede61161020357806313faede61461033757806316ba10e01461036257806316c38b3c1461038b57806318160ddd146103b4578063239c70ae146103df5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063088a4ed0146102e5578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612e30565b61091f565b6040516102749190612e78565b60405180910390f35b34801561028957600080fd5b506102926109b1565b60405161029f9190612f2c565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612f84565b610a43565b6040516102dc9190612ff2565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190612f84565b610abf565b005b34801561031a57600080fd5b5061033560048036038101906103309190613039565b610b45565b005b34801561034357600080fd5b5061034c610bdf565b6040516103599190613088565b60405180910390f35b34801561036e57600080fd5b50610389600480360381019061038491906131d8565b610be5565b005b34801561039757600080fd5b506103b260048036038101906103ad919061324d565b610c7b565b005b3480156103c057600080fd5b506103c9610d14565b6040516103d69190613088565b60405180910390f35b3480156103eb57600080fd5b506103f4610d2b565b6040516104019190613088565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c919061327a565b610d31565b005b34801561043f57600080fd5b50610448610d41565b005b34801561045657600080fd5b50610471600480360381019061046c919061327a565b610e93565b005b34801561047f57600080fd5b5061049a60048036038101906104959190612f84565b610eb3565b005b3480156104a857600080fd5b506104c360048036038101906104be91906131d8565b610f39565b005b3480156104d157600080fd5b506104da610fcf565b6040516104e79190612e78565b60405180910390f35b3480156104fc57600080fd5b50610505610fe2565b6040516105129190612f2c565b60405180910390f35b34801561052757600080fd5b50610530611070565b60405161053d9190612e78565b60405180910390f35b34801561055257600080fd5b5061055b611083565b6040516105689190612f2c565b60405180910390f35b34801561057d57600080fd5b5061059860048036038101906105939190612f84565b611111565b6040516105a59190612ff2565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d091906132cd565b611123565b6040516105e29190613088565b60405180910390f35b3480156105f757600080fd5b506106006111dc565b005b34801561060e57600080fd5b50610617611264565b6040516106249190613088565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f91906131d8565b61126a565b005b34801561066257600080fd5b5061066b611300565b6040516106789190613088565b60405180910390f35b34801561068d57600080fd5b50610696611306565b6040516106a39190612ff2565b60405180910390f35b3480156106b857600080fd5b506106c1611330565b6040516106ce9190612f2c565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f991906132fa565b6113c2565b005b34801561070c57600080fd5b5061071561145c565b6040516107229190612f2c565b60405180910390f35b34801561073757600080fd5b50610752600480360381019061074d91906133db565b6114ea565b005b34801561076057600080fd5b5061077b600480360381019061077691906132fa565b61155d565b005b34801561078957600080fd5b506107a4600480360381019061079f9190612f84565b611634565b6040516107b19190612f2c565b60405180910390f35b6107d460048036038101906107cf9190612f84565b61178d565b005b3480156107e257600080fd5b506107fd60048036038101906107f891906132cd565b611a0b565b60405161080a9190613088565b60405180910390f35b34801561081f57600080fd5b5061083a6004803603810190610835919061324d565b611a1d565b005b34801561084857600080fd5b50610863600480360381019061085e919061345e565b611ab6565b6040516108709190612e78565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b9190612f84565b611b4a565b005b3480156108ae57600080fd5b506108c960048036038101906108c4919061349e565b611bd0565b005b3480156108d757600080fd5b506108f260048036038101906108ed91906132cd565b611cb1565b005b34801561090057600080fd5b50610909611da9565b6040516109169190613088565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109aa5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109c09061350d565b80601f01602080910402602001604051908101604052809291908181526020018280546109ec9061350d565b8015610a395780601f10610a0e57610100808354040283529160200191610a39565b820191906000526020600020905b815481529060010190602001808311610a1c57829003601f168201915b5050505050905090565b6000610a4e82611daf565b610a84576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610ac7611e0e565b73ffffffffffffffffffffffffffffffffffffffff16610ae5611306565b73ffffffffffffffffffffffffffffffffffffffff1614610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b329061358b565b60405180910390fd5b80600f8190555050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc8906135f7565b60405180910390fd5b610bdb8282611e16565b5050565b600b5481565b610bed611e0e565b73ffffffffffffffffffffffffffffffffffffffff16610c0b611306565b73ffffffffffffffffffffffffffffffffffffffff1614610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c589061358b565b60405180910390fd5b8060119080519060200190610c77929190612d21565b5050565b610c83611e0e565b73ffffffffffffffffffffffffffffffffffffffff16610ca1611306565b73ffffffffffffffffffffffffffffffffffffffff1614610cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cee9061358b565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b6000610d1e611fbd565b6001546000540303905090565b600f5481565b610d3c838383611fc6565b505050565b610d49611e0e565b73ffffffffffffffffffffffffffffffffffffffff16610d67611306565b73ffffffffffffffffffffffffffffffffffffffff1614610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db49061358b565b60405180910390fd5b60026009541415610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90613663565b60405180910390fd5b60026009819055506000610e15611306565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e38906136b4565b60006040518083038185875af1925050503d8060008114610e75576040519150601f19603f3d011682016040523d82523d6000602084013e610e7a565b606091505b5050905080610e8857600080fd5b506001600981905550565b610eae838383604051806020016040528060008152506114ea565b505050565b610ebb611e0e565b73ffffffffffffffffffffffffffffffffffffffff16610ed9611306565b73ffffffffffffffffffffffffffffffffffffffff1614610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f269061358b565b60405180910390fd5b80600b8190555050565b610f41611e0e565b73ffffffffffffffffffffffffffffffffffffffff16610f5f611306565b73ffffffffffffffffffffffffffffffffffffffff1614610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac9061358b565b60405180910390fd5b8060129080519060200190610fcb929190612d21565b5050565b601360009054906101000a900460ff1681565b60118054610fef9061350d565b80601f016020809104026020016040519081016040528092919081815260200182805461101b9061350d565b80156110685780601f1061103d57610100808354040283529160200191611068565b820191906000526020600020905b81548152906001019060200180831161104b57829003601f168201915b505050505081565b601360019054906101000a900460ff1681565b601080546110909061350d565b80601f01602080910402602001604051908101604052809291908181526020018280546110bc9061350d565b80156111095780601f106110de57610100808354040283529160200191611109565b820191906000526020600020905b8154815290600101906020018083116110ec57829003601f168201915b505050505081565b600061111c82612370565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561118b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111e4611e0e565b73ffffffffffffffffffffffffffffffffffffffff16611202611306565b73ffffffffffffffffffffffffffffffffffffffff1614611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f9061358b565b60405180910390fd5b611262600061243e565b565b600c5481565b611272611e0e565b73ffffffffffffffffffffffffffffffffffffffff16611290611306565b73ffffffffffffffffffffffffffffffffffffffff16146112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd9061358b565b60405180910390fd5b80601090805190602001906112fc929190612d21565b5050565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461133f9061350d565b80601f016020809104026020016040519081016040528092919081815260200182805461136b9061350d565b80156113b85780601f1061138d576101008083540402835291602001916113b8565b820191906000526020600020905b81548152906001019060200180831161139b57829003601f168201915b5050505050905090565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661144e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611445906135f7565b60405180910390fd5b6114588282612504565b5050565b601280546114699061350d565b80601f01602080910402602001604051908101604052809291908181526020018280546114959061350d565b80156114e25780601f106114b7576101008083540402835291602001916114e2565b820191906000526020600020905b8154815290600101906020018083116114c557829003601f168201915b505050505081565b6114f5848484611fc6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611557576115208484848461267c565b611556576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611565611e0e565b73ffffffffffffffffffffffffffffffffffffffff16611583611306565b73ffffffffffffffffffffffffffffffffffffffff16146115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d09061358b565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b606061163f82611daf565b61167e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116759061373b565b60405180910390fd5b60001515601360009054906101000a900460ff161515141561172c57601280546116a79061350d565b80601f01602080910402602001604051908101604052809291908181526020018280546116d39061350d565b80156117205780601f106116f557610100808354040283529160200191611720565b820191906000526020600020905b81548152906001019060200180831161170357829003601f168201915b50505050509050611788565b60006117366127dc565b905060008151116117565760405180602001604052806000815250611784565b806117608461286e565b60116040516020016117749392919061382b565b6040516020818303038152906040525b9150505b919050565b80601360019054906101000a900460ff16156117de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d5906138a8565b60405180910390fd5b6000811180156117f05750600d548111155b61182f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182690613914565b60405180910390fd5b600c548161183b610d14565b6118459190613963565b1115611886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187d90613a05565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb90613a71565b60405180910390fd5b6000811180156119195750600f548161190c33611a0b565b6119169190613963565b11155b611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90613b03565b60405180910390fd5b816000600e5461196733611a0b565b101561199957600061197833611a0b565b600e546119859190613b23565b905080600b546119959190613b57565b9150505b8082600b546119a89190613b57565b6119b29190613b23565b3410156119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90613bfd565b60405180910390fd5b611a056119ff611e0e565b856129cf565b50505050565b6000611a16826129ed565b9050919050565b611a25611e0e565b73ffffffffffffffffffffffffffffffffffffffff16611a43611306565b73ffffffffffffffffffffffffffffffffffffffff1614611a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a909061358b565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b52611e0e565b73ffffffffffffffffffffffffffffffffffffffff16611b70611306565b73ffffffffffffffffffffffffffffffffffffffff1614611bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbd9061358b565b60405180910390fd5b80600e8190555050565b611bd8611e0e565b73ffffffffffffffffffffffffffffffffffffffff16611bf6611306565b73ffffffffffffffffffffffffffffffffffffffff1614611c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c439061358b565b60405180910390fd5b600c5482611c58610d14565b611c629190613963565b1115611ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9a90613c69565b60405180910390fd5b611cad81836129cf565b5050565b611cb9611e0e565b73ffffffffffffffffffffffffffffffffffffffff16611cd7611306565b73ffffffffffffffffffffffffffffffffffffffff1614611d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d249061358b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9490613cfb565b60405180910390fd5b611da68161243e565b50565b600d5481565b600081611dba611fbd565b11158015611dc9575060005482105b8015611e07575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6000611e2182612370565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e89576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611ea8612a44565b73ffffffffffffffffffffffffffffffffffffffff1614611f0b57611ed481611ecf612a44565b611ab6565b611f0a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611fd182612370565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612038576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612059612a44565b73ffffffffffffffffffffffffffffffffffffffff161480612088575061208785612082612a44565b611ab6565b5b806120cd5750612096612a44565b73ffffffffffffffffffffffffffffffffffffffff166120b584610a43565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612106576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561216d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61217a8585856001612a4c565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61227786612a52565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156123015760006001840190506000600460008381526020019081526020016000205414156122ff5760005481146122fe578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123698585856001612a5c565b5050505050565b6000808290508061237f611fbd565b11612407576000548110156124065760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612404575b60008114156123fa5760046000836001900393508381526020019081526020016000205490506123cf565b8092505050612439565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61250c612a44565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612571576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061257e612a44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661262b612a44565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126709190612e78565b60405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126a2612a44565b8786866040518563ffffffff1660e01b81526004016126c49493929190613d70565b602060405180830381600087803b1580156126de57600080fd5b505af192505050801561270f57506040513d601f19601f8201168201806040525081019061270c9190613dd1565b60015b612789573d806000811461273f576040519150601f19603f3d011682016040523d82523d6000602084013e612744565b606091505b50600081511415612781576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546127eb9061350d565b80601f01602080910402602001604051908101604052809291908181526020018280546128179061350d565b80156128645780601f1061283957610100808354040283529160200191612864565b820191906000526020600020905b81548152906001019060200180831161284757829003601f168201915b5050505050905090565b606060008214156128b6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129ca565b600082905060005b600082146128e85780806128d190613dfe565b915050600a826128e19190613e76565b91506128be565b60008167ffffffffffffffff811115612904576129036130ad565b5b6040519080825280601f01601f1916602001820160405280156129365781602001600182028036833780820191505090505b5090505b600085146129c35760018261294f9190613b23565b9150600a8561295e9190613ea7565b603061296a9190613963565b60f81b8183815181106129805761297f613ed8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129bc9190613e76565b945061293a565b8093505050505b919050565b6129e9828260405180602001604052806000815250612a62565b5050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612acf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612b0a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b176000858386612a4c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612b7c60018514612d17565b901b60a042901b612b8c86612a52565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612c90575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c40600087848060010195508761267c565b612c76576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612bd1578260005414612c8b57600080fd5b612cfb565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612c91575b816000819055505050612d116000858386612a5c565b50505050565b6000819050919050565b828054612d2d9061350d565b90600052602060002090601f016020900481019282612d4f5760008555612d96565b82601f10612d6857805160ff1916838001178555612d96565b82800160010185558215612d96579182015b82811115612d95578251825591602001919060010190612d7a565b5b509050612da39190612da7565b5090565b5b80821115612dc0576000816000905550600101612da8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e0d81612dd8565b8114612e1857600080fd5b50565b600081359050612e2a81612e04565b92915050565b600060208284031215612e4657612e45612dce565b5b6000612e5484828501612e1b565b91505092915050565b60008115159050919050565b612e7281612e5d565b82525050565b6000602082019050612e8d6000830184612e69565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ecd578082015181840152602081019050612eb2565b83811115612edc576000848401525b50505050565b6000601f19601f8301169050919050565b6000612efe82612e93565b612f088185612e9e565b9350612f18818560208601612eaf565b612f2181612ee2565b840191505092915050565b60006020820190508181036000830152612f468184612ef3565b905092915050565b6000819050919050565b612f6181612f4e565b8114612f6c57600080fd5b50565b600081359050612f7e81612f58565b92915050565b600060208284031215612f9a57612f99612dce565b5b6000612fa884828501612f6f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fdc82612fb1565b9050919050565b612fec81612fd1565b82525050565b60006020820190506130076000830184612fe3565b92915050565b61301681612fd1565b811461302157600080fd5b50565b6000813590506130338161300d565b92915050565b600080604083850312156130505761304f612dce565b5b600061305e85828601613024565b925050602061306f85828601612f6f565b9150509250929050565b61308281612f4e565b82525050565b600060208201905061309d6000830184613079565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130e582612ee2565b810181811067ffffffffffffffff82111715613104576131036130ad565b5b80604052505050565b6000613117612dc4565b905061312382826130dc565b919050565b600067ffffffffffffffff821115613143576131426130ad565b5b61314c82612ee2565b9050602081019050919050565b82818337600083830152505050565b600061317b61317684613128565b61310d565b905082815260208101848484011115613197576131966130a8565b5b6131a2848285613159565b509392505050565b600082601f8301126131bf576131be6130a3565b5b81356131cf848260208601613168565b91505092915050565b6000602082840312156131ee576131ed612dce565b5b600082013567ffffffffffffffff81111561320c5761320b612dd3565b5b613218848285016131aa565b91505092915050565b61322a81612e5d565b811461323557600080fd5b50565b60008135905061324781613221565b92915050565b60006020828403121561326357613262612dce565b5b600061327184828501613238565b91505092915050565b60008060006060848603121561329357613292612dce565b5b60006132a186828701613024565b93505060206132b286828701613024565b92505060406132c386828701612f6f565b9150509250925092565b6000602082840312156132e3576132e2612dce565b5b60006132f184828501613024565b91505092915050565b6000806040838503121561331157613310612dce565b5b600061331f85828601613024565b925050602061333085828601613238565b9150509250929050565b600067ffffffffffffffff821115613355576133546130ad565b5b61335e82612ee2565b9050602081019050919050565b600061337e6133798461333a565b61310d565b90508281526020810184848401111561339a576133996130a8565b5b6133a5848285613159565b509392505050565b600082601f8301126133c2576133c16130a3565b5b81356133d284826020860161336b565b91505092915050565b600080600080608085870312156133f5576133f4612dce565b5b600061340387828801613024565b945050602061341487828801613024565b935050604061342587828801612f6f565b925050606085013567ffffffffffffffff81111561344657613445612dd3565b5b613452878288016133ad565b91505092959194509250565b6000806040838503121561347557613474612dce565b5b600061348385828601613024565b925050602061349485828601613024565b9150509250929050565b600080604083850312156134b5576134b4612dce565b5b60006134c385828601612f6f565b92505060206134d485828601613024565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061352557607f821691505b60208210811415613539576135386134de565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613575602083612e9e565b91506135808261353f565b602082019050919050565b600060208201905081810360008301526135a481613568565b9050919050565b7f496e76616c6964206d61726b6574706c61636500000000000000000000000000600082015250565b60006135e1601383612e9e565b91506135ec826135ab565b602082019050919050565b60006020820190508181036000830152613610816135d4565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061364d601f83612e9e565b915061365882613617565b602082019050919050565b6000602082019050818103600083015261367c81613640565b9050919050565b600081905092915050565b50565b600061369e600083613683565b91506136a98261368e565b600082019050919050565b60006136bf82613691565b9150819050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613725602f83612e9e565b9150613730826136c9565b604082019050919050565b6000602082019050818103600083015261375481613718565b9050919050565b600081905092915050565b600061377182612e93565b61377b818561375b565b935061378b818560208601612eaf565b80840191505092915050565b60008190508160005260206000209050919050565b600081546137b98161350d565b6137c3818661375b565b945060018216600081146137de57600181146137ef57613822565b60ff19831686528186019350613822565b6137f885613797565b60005b8381101561381a578154818901526001820191506020810190506137fb565b838801955050505b50505092915050565b60006138378286613766565b91506138438285613766565b915061384f82846137ac565b9150819050949350505050565b7f4475636b20736561736f6e20686173206e6f7420737461727465642e00000000600082015250565b6000613892601c83612e9e565b915061389d8261385c565b602082019050919050565b600060208201905081810360008301526138c181613885565b9050919050565b7f4d6178696d756d206f66203130206475636b73207065722074786e2100000000600082015250565b60006138fe601c83612e9e565b9150613909826138c8565b602082019050919050565b6000602082019050818103600083015261392d816138f1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061396e82612f4e565b915061397983612f4e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139ae576139ad613934565b5b828201905092915050565b7f4e6f206475636b73206c65667473210000000000000000000000000000000000600082015250565b60006139ef600f83612e9e565b91506139fa826139b9565b602082019050919050565b60006020820190508181036000830152613a1e816139e2565b9050919050565b7f4e6f20736d61727420636f6e7472616374206d696e74696e672e000000000000600082015250565b6000613a5b601a83612e9e565b9150613a6682613a25565b602082019050919050565b60006020820190508181036000830152613a8a81613a4e565b9050919050565b7f596f75206d61792068617665206d696e746564206d6178206e756d626572206f60008201527f66206475636b7321000000000000000000000000000000000000000000000000602082015250565b6000613aed602883612e9e565b9150613af882613a91565b604082019050919050565b60006020820190508181036000830152613b1c81613ae0565b9050919050565b6000613b2e82612f4e565b9150613b3983612f4e565b925082821015613b4c57613b4b613934565b5b828203905092915050565b6000613b6282612f4e565b9150613b6d83612f4e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ba657613ba5613934565b5b828202905092915050565b7f496e73756666696369656e742f696e636f72726563742066756e64732e000000600082015250565b6000613be7601d83612e9e565b9150613bf282613bb1565b602082019050919050565b60006020820190508181036000830152613c1681613bda565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613c53601483612e9e565b9150613c5e82613c1d565b602082019050919050565b60006020820190508181036000830152613c8281613c46565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ce5602683612e9e565b9150613cf082613c89565b604082019050919050565b60006020820190508181036000830152613d1481613cd8565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613d4282613d1b565b613d4c8185613d26565b9350613d5c818560208601612eaf565b613d6581612ee2565b840191505092915050565b6000608082019050613d856000830187612fe3565b613d926020830186612fe3565b613d9f6040830185613079565b8181036060830152613db18184613d37565b905095945050505050565b600081519050613dcb81612e04565b92915050565b600060208284031215613de757613de6612dce565b5b6000613df584828501613dbc565b91505092915050565b6000613e0982612f4e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e3c57613e3b613934565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e8182612f4e565b9150613e8c83612f4e565b925082613e9c57613e9b613e47565b5b828204905092915050565b6000613eb282612f4e565b9150613ebd83612f4e565b925082613ecd57613ecc613e47565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212209104b569db084e6df307006586ccc36899558002edf889c674ba867bd4adba1264736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000011446f776e204d61726b6574204475636b730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003444d4400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Down Market Ducks
Arg [1] : _tokenSymbol (string): DMD
Arg [2] : _hiddenMetadataUri (string): ipfs://

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [4] : 446f776e204d61726b6574204475636b73000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 444d440000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [8] : 697066733a2f2f00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

171:4191:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4880:607:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9768:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11777:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3344:108:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3844:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;326:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3163:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3265:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3963:309:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;468:33:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12637:164:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3456:169:1;;;;;;;;;;;;;:::i;:::-;;12867:179:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2647:72:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2927:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;611:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;538:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;642:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;506:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9564:142:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5546:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1661:101:4;;;;;;;;;;;;;:::i;:::-;;365:31:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3061:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;430:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1029:85:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9930:102:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4018:207:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;575:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13112:385:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4229:131:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2209:434;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1738:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3629:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2843:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12413:162:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2723:116:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1905:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1911:198:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;400:26:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4880:607:2;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;9768:98::-;9822:13;9854:5;9847:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9768:98;:::o;11777:200::-;11845:7;11869:16;11877:7;11869;:16::i;:::-;11864:64;;11894:34;;;;;;;;;;;;;;11864:64;11946:15;:24;11962:7;11946:24;;;;;;;;;;;;;;;;;;;;;11939:31;;11777:200;;;:::o;3344:108:1:-;1252:12:4;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3433:14:1::1;3417:13;:30;;;;3344:108:::0;:::o;3844:170::-;3928:21;:25;3950:2;3928:25;;;;;;;;;;;;;;;;;;;;;;;;;3920:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3983:26;3997:2;4001:7;3983:13;:26::i;:::-;3844:170;;:::o;326:35::-;;;;:::o;3163:98::-;1252:12:4;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3246:10:1::1;3234:9;:22;;;;;;;;;;;;:::i;:::-;;3163:98:::0;:::o;3265:75::-;1252:12:4;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3329:6:1::1;3320;;:15;;;;;;;;;;;;;;;;;;3265:75:::0;:::o;3963:309:2:-;4016:7;4240:15;:13;:15::i;:::-;4225:12;;4209:13;;:28;:46;4202:53;;3963:309;:::o;468:33:1:-;;;;:::o;12637:164:2:-;12766:28;12776:4;12782:2;12786:7;12766:9;:28::i;:::-;12637:164;;;:::o;3456:169:1:-;1252:12:4;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1:5::1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;3513::1::2;3545:7;:5;:7::i;:::-;3537:21;;3566;3537:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3512:80;;;3606:13;3598:22;;;::::0;::::2;;3506:119;1701:1:5::1;2628:7;:22;;;;3456:169:1:o:0;12867:179:2:-;13000:39;13017:4;13023:2;13027:7;13000:39;;;;;;;;;;;;:16;:39::i;:::-;12867:179;;;:::o;2647:72:1:-;1252:12:4;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2709:5:1::1;2702:4;:12;;;;2647:72:::0;:::o;2927:130::-;1252:12:4;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3034:18:1::1;3014:17;:38;;;;;;;;;;;;:::i;:::-;;2927:130:::0;:::o;611:27::-;;;;;;;;;;;;;:::o;538:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;642:25::-;;;;;;;;;;;;;:::o;506:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9564:142:2:-;9628:7;9670:27;9689:7;9670:18;:27::i;:::-;9647:52;;9564:142;;;:::o;5546:221::-;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:4:-;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;365:31:1:-;;;;:::o;3061:98::-;1252:12:4;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3144:10:1::1;3132:9;:22;;;;;;;;;;;;:::i;:::-;;3061:98:::0;:::o;430:34::-;;;;:::o;1029:85:4:-;1075:7;1101:6;;;;;;;;;;;1094:13;;1029:85;:::o;9930:102:2:-;9986:13;10018:7;10011:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9930:102;:::o;4018:207:1:-;4116:21;:31;4138:8;4116:31;;;;;;;;;;;;;;;;;;;;;;;;;4108:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4177:43;4201:8;4211;4177:23;:43::i;:::-;4018:207;;:::o;575:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13112:385:2:-;13273:28;13283:4;13289:2;13293:7;13273:9;:28::i;:::-;13333:1;13315:2;:14;;;:19;13311:180;;13353:56;13384:4;13390:2;13394:7;13403:5;13353:30;:56::i;:::-;13348:143;;13436:40;;;;;;;;;;;;;;13348:143;13311:180;13112:385;;;;:::o;4229:131:1:-;1252:12:4;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4347:8:1::1;4315:21;:29;4337:6;4315:29;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;4229:131:::0;;:::o;2209:434::-;2283:13;2312:17;2320:8;2312:7;:17::i;:::-;2304:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;2404:5;2392:17;;:8;;;;;;;;;;;:17;;;2388:62;;;2426:17;2419:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2388:62;2456:28;2487:10;:8;:10::i;:::-;2456:41;;2541:1;2516:14;2510:28;:32;:128;;;;;;;;;;;;;;;;;2577:14;2593:19;:8;:17;:19::i;:::-;2614:9;2560:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2510:128;2503:135;;;2209:434;;;;:::o;1738:161::-;1805:11;938:6;;;;;;;;;;;937:7;929:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;1005:1;991:11;:15;:40;;;;;1025:6;;1010:11;:21;;991:40;983:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;1109:8;;1094:11;1078:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:39;;1070:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;1164:10;1151:23;;:9;:23;;;1143:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;1240:1;1226:11;:15;:74;;;;;1287:13;;1272:11;1245:24;1258:10;1245:12;:24::i;:::-;:38;;;;:::i;:::-;:55;;1226:74;1211:146;;;;;;;;;;;;:::i;:::-;;;;;;;;;1839:11:::1;1430:16;1492:15;;1465:24;1478:10;1465:12;:24::i;:::-;:42;1461:168;;;1517:21;1559:24;1572:10;1559:12;:24::i;:::-;1541:15;;:42;;;;:::i;:::-;1517:66;;1609:13;1602:4;;:20;;;;:::i;:::-;1591:31;;1509:120;1461:168;1680:8;1666:11;1659:4;;:18;;;;:::i;:::-;:29;;;;:::i;:::-;1646:9;:42;;1638:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;1858:36:::2;1868:12;:10;:12::i;:::-;1882:11;1858:9;:36::i;:::-;1424:310:::1;1363:1;1738:161:::0;;:::o;3629:105::-;3687:7;3709:20;3723:5;3709:13;:20::i;:::-;3702:27;;3629:105;;;:::o;2843:79::-;1252:12:4;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2911:6:1::1;2900:8;;:17;;;;;;;;;;;;;;;;;;2843:79:::0;:::o;12413:162:2:-;12510:4;12533:18;:25;12552:5;12533:25;;;;;;;;;;;;;;;:35;12559:8;12533:35;;;;;;;;;;;;;;;;;;;;;;;;;12526:42;;12413:162;;;;:::o;2723:116:1:-;1252:12:4;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2818:16:1::1;2800:15;:34;;;;2723:116:::0;:::o;1905:203::-;1252:12:4;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2031:8:1::1;;2016:11;2000:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:39;;1992:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;2070:33;2080:9;2091:11;2070:9;:33::i;:::-;1905:203:::0;;:::o;1911:198:4:-;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;400:26:1:-;;;;:::o;13743:268:2:-;13800:4;13854:7;13835:15;:13;:15::i;:::-;:26;;:65;;;;;13887:13;;13877:7;:23;13835:65;:150;;;;;13984:1;1769:8;13937:17;:26;13955:7;13937:26;;;;;;;;;;;;:43;:48;13835:150;13816:169;;13743:268;;;:::o;640:96:0:-;693:7;719:10;712:17;;640:96;:::o;11245:471:2:-;11325:13;11357:27;11376:7;11357:18;:27::i;:::-;11325:61;;11406:5;11400:11;;:2;:11;;;11396:48;;;11420:24;;;;;;;;;;;;;;11396:48;11482:5;11459:28;;:19;:17;:19::i;:::-;:28;;;11455:172;;11506:44;11523:5;11530:19;:17;:19::i;:::-;11506:16;:44::i;:::-;11501:126;;11577:35;;;;;;;;;;;;;;11501:126;11455:172;11664:2;11637:15;:24;11653:7;11637:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11701:7;11697:2;11681:28;;11690:5;11681:28;;;;;;;;;;;;11315:401;11245:471;;:::o;2112:93:1:-;2177:7;2199:1;2192:8;;2112:93;:::o;18843:2460:2:-;18953:27;18983;19002:7;18983:18;:27::i;:::-;18953:57;;19066:4;19025:45;;19041:19;19025:45;;;19021:86;;19079:28;;;;;;;;;;;;;;19021:86;19118:22;19167:4;19144:27;;:19;:17;:19::i;:::-;:27;;;:86;;;;19187:43;19204:4;19210:19;:17;:19::i;:::-;19187:16;:43::i;:::-;19144:86;:145;;;;19270:19;:17;:19::i;:::-;19246:43;;:20;19258:7;19246:11;:20::i;:::-;:43;;;19144:145;19118:172;;19306:17;19301:66;;19332:35;;;;;;;;;;;;;;19301:66;19395:1;19381:16;;:2;:16;;;19377:52;;;19406:23;;;;;;;;;;;;;;19377:52;19440:43;19462:4;19468:2;19472:7;19481:1;19440:21;:43::i;:::-;19553:15;:24;19569:7;19553:24;;;;;;;;;;;;19546:31;;;;;;;;;;;19938:18;:24;19957:4;19938:24;;;;;;;;;;;;;;;;19936:26;;;;;;;;;;;;20006:18;:22;20025:2;20006:22;;;;;;;;;;;;;;;;20004:24;;;;;;;;;;;2045:8;1656:3;20378:15;:41;;20337:21;20355:2;20337:17;:21::i;:::-;:83;:126;20292:17;:26;20310:7;20292:26;;;;;;;;;;;:171;;;;20630:1;2045:8;20580:19;:46;:51;20576:616;;;20651:19;20683:1;20673:7;:11;20651:33;;20838:1;20804:17;:30;20822:11;20804:30;;;;;;;;;;;;:35;20800:378;;;20940:13;;20925:11;:28;20921:239;;21118:19;21085:17;:30;21103:11;21085:30;;;;;;;;;;;:52;;;;20921:239;20800:378;20633:559;20576:616;21236:7;21232:2;21217:27;;21226:4;21217:27;;;;;;;;;;;;21254:42;21275:4;21281:2;21285:7;21294:1;21254:20;:42::i;:::-;18943:2360;;18843:2460;;;:::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;7355:827;7329:853;7284:898;8208:31;;;;;;;;;;;;;;7141:1105;;;;:::o;2263:187:4:-;2336:16;2355:6;;;;;;;;;;;2336:25;;2380:8;2371:6;;:17;;;;;;;;;;;;;;;;;;2434:8;2403:40;;2424:8;2403:40;;;;;;;;;;;;2326:124;2263:187;:::o;12044:303:2:-;12154:19;:17;:19::i;:::-;12142:31;;:8;:31;;;12138:61;;;12182:17;;;;;;;;;;;;;;12138:61;12262:8;12210:18;:39;12229:19;:17;:19::i;:::-;12210:39;;;;;;;;;;;;;;;:49;12250:8;12210:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;12321:8;12285:55;;12300:19;:17;:19::i;:::-;12285:55;;;12331:8;12285:55;;;;;;:::i;:::-;;;;;;;;12044:303;;:::o;24908:697::-;25066:4;25111:2;25086:45;;;25132:19;:17;:19::i;:::-;25153:4;25159:7;25168:5;25086:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;25082:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25381:1;25364:6;:13;:18;25360:229;;;25409:40;;;;;;;;;;;;;;25360:229;25549:6;25543:13;25534:6;25530:2;25526:15;25519:38;25082:517;25252:54;;;25242:64;;;:6;:64;;;;25235:71;;;24908:697;;;;;;:::o;3738:102:1:-;3798:13;3826:9;3819:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3738:102;:::o;328:703:6:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;14090:102:2:-;14158:27;14168:2;14172:8;14158:27;;;;;;;;;;;;:9;:27::i;:::-;14090:102;;:::o;5844:174::-;5905:7;1017:13;1151:2;5932:18;:25;5951:5;5932:25;;;;;;;;;;;;;;;;:49;;5931:80;5924:87;;5844:174;;;:::o;27368:103::-;27428:7;27454:10;27447:17;;27368:103;:::o;26236:154::-;;;;;:::o;10824:144::-;10888:14;10947:5;10937:15;;10824:144;;;:::o;27031:153::-;;;;;:::o;14552:2184::-;14670:20;14693:13;;14670:36;;14734:1;14720:16;;:2;:16;;;14716:48;;;14745:19;;;;;;;;;;;;;;14716:48;14790:1;14778:8;:13;14774:44;;;14800:18;;;;;;;;;;;;;;14774:44;14829:61;14859:1;14863:2;14867:12;14881:8;14829:21;:61::i;:::-;15422:1;1151:2;15393:1;:25;;15392:31;15380:8;:44;15354:18;:22;15373:2;15354:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;1913:3;15813:29;15840:1;15828:8;:13;15813:14;:29::i;:::-;:56;;1656:3;15751:15;:41;;15710:21;15728:2;15710:17;:21::i;:::-;:83;:160;15660:17;:31;15678:12;15660:31;;;;;;;;;;;:210;;;;15885:20;15908:12;15885:35;;15934:11;15963:8;15948:12;:23;15934:37;;16008:1;15990:2;:14;;;:19;15986:622;;16029:308;16084:12;16080:2;16059:38;;16076:1;16059:38;;;;;;;;;;;;16124:69;16163:1;16167:2;16171:14;;;;;;16187:5;16124:30;:69::i;:::-;16119:172;;16228:40;;;;;;;;;;;;;;16119:172;16332:3;16317:12;:18;16029:308;;16416:12;16399:13;;:29;16395:43;;16430:8;;;16395:43;15986:622;;;16477:117;16532:14;;;;;;16528:2;16507:40;;16524:1;16507:40;;;;;;;;;;;;16589:3;16574:12;:18;16477:117;;15986:622;16637:12;16621:13;:28;;;;15137:1523;;16669:60;16698:1;16702:2;16706:12;16720:8;16669:20;:60::i;:::-;14660:2076;14552:2184;;;:::o;11050:138::-;11108:14;11167:5;11157:15;;11050:138;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:7:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:::-;12518:6;12526;12575:2;12563:9;12554:7;12550:23;12546:32;12543:119;;;12581:79;;:::i;:::-;12543:119;12701:1;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12672:117;12828:2;12854:53;12899:7;12890:6;12879:9;12875:22;12854:53;:::i;:::-;12844:63;;12799:118;12450:474;;;;;:::o;12930:180::-;12978:77;12975:1;12968:88;13075:4;13072:1;13065:15;13099:4;13096:1;13089:15;13116:320;13160:6;13197:1;13191:4;13187:12;13177:22;;13244:1;13238:4;13234:12;13265:18;13255:81;;13321:4;13313:6;13309:17;13299:27;;13255:81;13383:2;13375:6;13372:14;13352:18;13349:38;13346:84;;;13402:18;;:::i;:::-;13346:84;13167:269;13116:320;;;:::o;13442:182::-;13582:34;13578:1;13570:6;13566:14;13559:58;13442:182;:::o;13630:366::-;13772:3;13793:67;13857:2;13852:3;13793:67;:::i;:::-;13786:74;;13869:93;13958:3;13869:93;:::i;:::-;13987:2;13982:3;13978:12;13971:19;;13630:366;;;:::o;14002:419::-;14168:4;14206:2;14195:9;14191:18;14183:26;;14255:9;14249:4;14245:20;14241:1;14230:9;14226:17;14219:47;14283:131;14409:4;14283:131;:::i;:::-;14275:139;;14002:419;;;:::o;14427:169::-;14567:21;14563:1;14555:6;14551:14;14544:45;14427:169;:::o;14602:366::-;14744:3;14765:67;14829:2;14824:3;14765:67;:::i;:::-;14758:74;;14841:93;14930:3;14841:93;:::i;:::-;14959:2;14954:3;14950:12;14943:19;;14602:366;;;:::o;14974:419::-;15140:4;15178:2;15167:9;15163:18;15155:26;;15227:9;15221:4;15217:20;15213:1;15202:9;15198:17;15191:47;15255:131;15381:4;15255:131;:::i;:::-;15247:139;;14974:419;;;:::o;15399:181::-;15539:33;15535:1;15527:6;15523:14;15516:57;15399:181;:::o;15586:366::-;15728:3;15749:67;15813:2;15808:3;15749:67;:::i;:::-;15742:74;;15825:93;15914:3;15825:93;:::i;:::-;15943:2;15938:3;15934:12;15927:19;;15586:366;;;:::o;15958:419::-;16124:4;16162:2;16151:9;16147:18;16139:26;;16211:9;16205:4;16201:20;16197:1;16186:9;16182:17;16175:47;16239:131;16365:4;16239:131;:::i;:::-;16231:139;;15958:419;;;:::o;16383:147::-;16484:11;16521:3;16506:18;;16383:147;;;;:::o;16536:114::-;;:::o;16656:398::-;16815:3;16836:83;16917:1;16912:3;16836:83;:::i;:::-;16829:90;;16928:93;17017:3;16928:93;:::i;:::-;17046:1;17041:3;17037:11;17030:18;;16656:398;;;:::o;17060:379::-;17244:3;17266:147;17409:3;17266:147;:::i;:::-;17259:154;;17430:3;17423:10;;17060:379;;;:::o;17445:234::-;17585:34;17581:1;17573:6;17569:14;17562:58;17654:17;17649:2;17641:6;17637:15;17630:42;17445:234;:::o;17685:366::-;17827:3;17848:67;17912:2;17907:3;17848:67;:::i;:::-;17841:74;;17924:93;18013:3;17924:93;:::i;:::-;18042:2;18037:3;18033:12;18026:19;;17685:366;;;:::o;18057:419::-;18223:4;18261:2;18250:9;18246:18;18238:26;;18310:9;18304:4;18300:20;18296:1;18285:9;18281:17;18274:47;18338:131;18464:4;18338:131;:::i;:::-;18330:139;;18057:419;;;:::o;18482:148::-;18584:11;18621:3;18606:18;;18482:148;;;;:::o;18636:377::-;18742:3;18770:39;18803:5;18770:39;:::i;:::-;18825:89;18907:6;18902:3;18825:89;:::i;:::-;18818:96;;18923:52;18968:6;18963:3;18956:4;18949:5;18945:16;18923:52;:::i;:::-;19000:6;18995:3;18991:16;18984:23;;18746:267;18636:377;;;;:::o;19019:141::-;19068:4;19091:3;19083:11;;19114:3;19111:1;19104:14;19148:4;19145:1;19135:18;19127:26;;19019:141;;;:::o;19190:845::-;19293:3;19330:5;19324:12;19359:36;19385:9;19359:36;:::i;:::-;19411:89;19493:6;19488:3;19411:89;:::i;:::-;19404:96;;19531:1;19520:9;19516:17;19547:1;19542:137;;;;19693:1;19688:341;;;;19509:520;;19542:137;19626:4;19622:9;19611;19607:25;19602:3;19595:38;19662:6;19657:3;19653:16;19646:23;;19542:137;;19688:341;19755:38;19787:5;19755:38;:::i;:::-;19815:1;19829:154;19843:6;19840:1;19837:13;19829:154;;;19917:7;19911:14;19907:1;19902:3;19898:11;19891:35;19967:1;19958:7;19954:15;19943:26;;19865:4;19862:1;19858:12;19853:17;;19829:154;;;20012:6;20007:3;20003:16;19996:23;;19695:334;;19509:520;;19297:738;;19190:845;;;;:::o;20041:589::-;20266:3;20288:95;20379:3;20370:6;20288:95;:::i;:::-;20281:102;;20400:95;20491:3;20482:6;20400:95;:::i;:::-;20393:102;;20512:92;20600:3;20591:6;20512:92;:::i;:::-;20505:99;;20621:3;20614:10;;20041:589;;;;;;:::o;20636:178::-;20776:30;20772:1;20764:6;20760:14;20753:54;20636:178;:::o;20820:366::-;20962:3;20983:67;21047:2;21042:3;20983:67;:::i;:::-;20976:74;;21059:93;21148:3;21059:93;:::i;:::-;21177:2;21172:3;21168:12;21161:19;;20820:366;;;:::o;21192:419::-;21358:4;21396:2;21385:9;21381:18;21373:26;;21445:9;21439:4;21435:20;21431:1;21420:9;21416:17;21409:47;21473:131;21599:4;21473:131;:::i;:::-;21465:139;;21192:419;;;:::o;21617:178::-;21757:30;21753:1;21745:6;21741:14;21734:54;21617:178;:::o;21801:366::-;21943:3;21964:67;22028:2;22023:3;21964:67;:::i;:::-;21957:74;;22040:93;22129:3;22040:93;:::i;:::-;22158:2;22153:3;22149:12;22142:19;;21801:366;;;:::o;22173:419::-;22339:4;22377:2;22366:9;22362:18;22354:26;;22426:9;22420:4;22416:20;22412:1;22401:9;22397:17;22390:47;22454:131;22580:4;22454:131;:::i;:::-;22446:139;;22173:419;;;:::o;22598:180::-;22646:77;22643:1;22636:88;22743:4;22740:1;22733:15;22767:4;22764:1;22757:15;22784:305;22824:3;22843:20;22861:1;22843:20;:::i;:::-;22838:25;;22877:20;22895:1;22877:20;:::i;:::-;22872:25;;23031:1;22963:66;22959:74;22956:1;22953:81;22950:107;;;23037:18;;:::i;:::-;22950:107;23081:1;23078;23074:9;23067:16;;22784:305;;;;:::o;23095:165::-;23235:17;23231:1;23223:6;23219:14;23212:41;23095:165;:::o;23266:366::-;23408:3;23429:67;23493:2;23488:3;23429:67;:::i;:::-;23422:74;;23505:93;23594:3;23505:93;:::i;:::-;23623:2;23618:3;23614:12;23607:19;;23266:366;;;:::o;23638:419::-;23804:4;23842:2;23831:9;23827:18;23819:26;;23891:9;23885:4;23881:20;23877:1;23866:9;23862:17;23855:47;23919:131;24045:4;23919:131;:::i;:::-;23911:139;;23638:419;;;:::o;24063:176::-;24203:28;24199:1;24191:6;24187:14;24180:52;24063:176;:::o;24245:366::-;24387:3;24408:67;24472:2;24467:3;24408:67;:::i;:::-;24401:74;;24484:93;24573:3;24484:93;:::i;:::-;24602:2;24597:3;24593:12;24586:19;;24245:366;;;:::o;24617:419::-;24783:4;24821:2;24810:9;24806:18;24798:26;;24870:9;24864:4;24860:20;24856:1;24845:9;24841:17;24834:47;24898:131;25024:4;24898:131;:::i;:::-;24890:139;;24617:419;;;:::o;25042:227::-;25182:34;25178:1;25170:6;25166:14;25159:58;25251:10;25246:2;25238:6;25234:15;25227:35;25042:227;:::o;25275:366::-;25417:3;25438:67;25502:2;25497:3;25438:67;:::i;:::-;25431:74;;25514:93;25603:3;25514:93;:::i;:::-;25632:2;25627:3;25623:12;25616:19;;25275:366;;;:::o;25647:419::-;25813:4;25851:2;25840:9;25836:18;25828:26;;25900:9;25894:4;25890:20;25886:1;25875:9;25871:17;25864:47;25928:131;26054:4;25928:131;:::i;:::-;25920:139;;25647:419;;;:::o;26072:191::-;26112:4;26132:20;26150:1;26132:20;:::i;:::-;26127:25;;26166:20;26184:1;26166:20;:::i;:::-;26161:25;;26205:1;26202;26199:8;26196:34;;;26210:18;;:::i;:::-;26196:34;26255:1;26252;26248:9;26240:17;;26072:191;;;;:::o;26269:348::-;26309:7;26332:20;26350:1;26332:20;:::i;:::-;26327:25;;26366:20;26384:1;26366:20;:::i;:::-;26361:25;;26554:1;26486:66;26482:74;26479:1;26476:81;26471:1;26464:9;26457:17;26453:105;26450:131;;;26561:18;;:::i;:::-;26450:131;26609:1;26606;26602:9;26591:20;;26269:348;;;;:::o;26623:179::-;26763:31;26759:1;26751:6;26747:14;26740:55;26623:179;:::o;26808:366::-;26950:3;26971:67;27035:2;27030:3;26971:67;:::i;:::-;26964:74;;27047:93;27136:3;27047:93;:::i;:::-;27165:2;27160:3;27156:12;27149:19;;26808:366;;;:::o;27180:419::-;27346:4;27384:2;27373:9;27369:18;27361:26;;27433:9;27427:4;27423:20;27419:1;27408:9;27404:17;27397:47;27461:131;27587:4;27461:131;:::i;:::-;27453:139;;27180:419;;;:::o;27605:170::-;27745:22;27741:1;27733:6;27729:14;27722:46;27605:170;:::o;27781:366::-;27923:3;27944:67;28008:2;28003:3;27944:67;:::i;:::-;27937:74;;28020:93;28109:3;28020:93;:::i;:::-;28138:2;28133:3;28129:12;28122:19;;27781:366;;;:::o;28153:419::-;28319:4;28357:2;28346:9;28342:18;28334:26;;28406:9;28400:4;28396:20;28392:1;28381:9;28377:17;28370:47;28434:131;28560:4;28434:131;:::i;:::-;28426:139;;28153:419;;;:::o;28578:225::-;28718:34;28714:1;28706:6;28702:14;28695:58;28787:8;28782:2;28774:6;28770:15;28763:33;28578:225;:::o;28809:366::-;28951:3;28972:67;29036:2;29031:3;28972:67;:::i;:::-;28965:74;;29048:93;29137:3;29048:93;:::i;:::-;29166:2;29161:3;29157:12;29150:19;;28809:366;;;:::o;29181:419::-;29347:4;29385:2;29374:9;29370:18;29362:26;;29434:9;29428:4;29424:20;29420:1;29409:9;29405:17;29398:47;29462:131;29588:4;29462:131;:::i;:::-;29454:139;;29181:419;;;:::o;29606:98::-;29657:6;29691:5;29685:12;29675:22;;29606:98;;;:::o;29710:168::-;29793:11;29827:6;29822:3;29815:19;29867:4;29862:3;29858:14;29843:29;;29710:168;;;;:::o;29884:360::-;29970:3;29998:38;30030:5;29998:38;:::i;:::-;30052:70;30115:6;30110:3;30052:70;:::i;:::-;30045:77;;30131:52;30176:6;30171:3;30164:4;30157:5;30153:16;30131:52;:::i;:::-;30208:29;30230:6;30208:29;:::i;:::-;30203:3;30199:39;30192:46;;29974:270;29884:360;;;;:::o;30250:640::-;30445:4;30483:3;30472:9;30468:19;30460:27;;30497:71;30565:1;30554:9;30550:17;30541:6;30497:71;:::i;:::-;30578:72;30646:2;30635:9;30631:18;30622:6;30578:72;:::i;:::-;30660;30728:2;30717:9;30713:18;30704:6;30660:72;:::i;:::-;30779:9;30773:4;30769:20;30764:2;30753:9;30749:18;30742:48;30807:76;30878:4;30869:6;30807:76;:::i;:::-;30799:84;;30250:640;;;;;;;:::o;30896:141::-;30952:5;30983:6;30977:13;30968:22;;30999:32;31025:5;30999:32;:::i;:::-;30896:141;;;;:::o;31043:349::-;31112:6;31161:2;31149:9;31140:7;31136:23;31132:32;31129:119;;;31167:79;;:::i;:::-;31129:119;31287:1;31312:63;31367:7;31358:6;31347:9;31343:22;31312:63;:::i;:::-;31302:73;;31258:127;31043:349;;;;:::o;31398:233::-;31437:3;31460:24;31478:5;31460:24;:::i;:::-;31451:33;;31506:66;31499:5;31496:77;31493:103;;;31576:18;;:::i;:::-;31493:103;31623:1;31616:5;31612:13;31605:20;;31398:233;;;:::o;31637:180::-;31685:77;31682:1;31675:88;31782:4;31779:1;31772:15;31806:4;31803:1;31796:15;31823:185;31863:1;31880:20;31898:1;31880:20;:::i;:::-;31875:25;;31914:20;31932:1;31914:20;:::i;:::-;31909:25;;31953:1;31943:35;;31958:18;;:::i;:::-;31943:35;32000:1;31997;31993:9;31988:14;;31823:185;;;;:::o;32014:176::-;32046:1;32063:20;32081:1;32063:20;:::i;:::-;32058:25;;32097:20;32115:1;32097:20;:::i;:::-;32092:25;;32136:1;32126:35;;32141:18;;:::i;:::-;32126:35;32182:1;32179;32175:9;32170:14;;32014:176;;;;:::o;32196:180::-;32244:77;32241:1;32234:88;32341:4;32338:1;32331:15;32365:4;32362:1;32355:15

Swarm Source

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