ETH Price: $2,392.78 (-0.89%)
Gas: 1.59 Gwei

Token

ShitCollector (SC)
 

Overview

Max Total Supply

3,778 SC

Holders

362

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
20 SC
0x650e1363f3fd497c3c622a38c66467df30d14836
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:
ShitCollector

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 12 of 13: ShitCollector.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

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

contract ShitCollector is ERC721A, Ownable {

  using Strings for uint256;

  string private baseURI;
  string private notRevealedUri;
  string public baseExtension = ".json";
  uint256 public cost = 0.0068 ether;
  uint256 public maxSupply = 6666;
  uint256 public freeMint = 3333;
  uint256 public maxMintAmount = 10;
  uint256 public nftPerAddressLimit = 100;

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

  mapping( address => uint256 ) public addressMintedBalance;
  mapping( address => mapping( uint256 => uint256 )) private _ownedTokens;
  
  constructor(
    string memory _initBaseURI,  
    string memory _initNotRevealUri 
  ) ERC721A( "ShitCollector", "SC" ) {
    setBaseURI( _initBaseURI ); 
    setNotRevealedURI( _initNotRevealUri ); 
  }

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

  function mint( uint256 _mintAmount ) public payable {
    require( !paused, "The Contract is Paused!!!" );
    uint256 supply = totalSupply();
    require( _mintAmount > 0, "Need to Mint at Least 1 NFT" );
    require( _mintAmount <= maxMintAmount, "Max Mint Amount Per Session Exceeded" );
    require( supply + _mintAmount <= maxSupply, "Max NFT Limit Exceeded" );
    if ( msg.sender != owner() ) {
        uint256 ownerMintedCount = addressMintedBalance[msg.sender];
        require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "Max NFT Per Address Exceeded");
        if(supply <= freeMint) {
            uint256 valueNumber = freeMint - supply;
            if(_mintAmount >= valueNumber) {
              require(msg.value >= cost * (_mintAmount-valueNumber), "Insufficient Funds");
            }
        } else {
            require(msg.value >= cost * _mintAmount, "Insufficient Funds");
        }
    }
    addressMintedBalance[ msg.sender ] += _mintAmount;
    _safeMint( msg.sender, _mintAmount );
  }

  function tokenURI( uint256 tokenId ) public view virtual override returns ( string memory ) {
    require( _exists( tokenId ), "ERC721Metadata: URI query for nonexistent token" );
    if ( revealed == false ) {
        return notRevealedUri;
    }
    string memory currentBaseURI = _baseURI();
    return bytes( currentBaseURI ).length > 0 ? string( abi.encodePacked( currentBaseURI, tokenId.toString(), baseExtension )) : "";
  }

  function getNoToken( address _wallet ) public view returns( uint ) {
    return balanceOf(_wallet);
  }

  function getMintCost() public view returns( uint ) {
    return cost;
  }

  function getTotalMinted() public view returns( uint ) {
    return _totalMinted();
  }

  function getMaxSupply() public view returns( uint ) {
    return maxSupply;
  }

  function getMintLimit() public view returns( uint ) {
    return nftPerAddressLimit;
  }

  function isOwner( address _wallet ) public view returns( bool ) {
    if ( _wallet == owner() ) {
      return true;
    }
    return false;
  }

  function getMintCount( address _wallet ) public view returns( uint ) {
    return addressMintedBalance[ _wallet ];
  }

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

  function reveal() public onlyOwner {
    revealed = true;
  }

  function notReveal() public onlyOwner {
    revealed = false;
  }
  
  function setMaxMintAmount( uint256 _newMaxMintAmount ) public onlyOwner {
    maxMintAmount = _newMaxMintAmount;
  }

  function setNftLimit( uint256 _limit ) public onlyOwner {
    nftPerAddressLimit = _limit;
  }

  function setBaseExtension( string memory _newBaseExtension ) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

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

  function setNotRevealedURI( string memory _notRevealedURI ) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

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

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 13: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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


File 3 of 13: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 4 of 13: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721.sol';
import './IERC721Receiver.sol';
import './IERC721Metadata.sol';
import './Address.sol';
import './Context.sol';
import './Strings.sol';
import './ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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 Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    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;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * 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 See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].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 {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // 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.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

    /**
     * @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, tokenId.toString())) : '';
    }

    /**
     * @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 See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @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 == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), 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.isContract() && !_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 && !_ownerships[tokenId].burned;
    }

    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 {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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,
        bytes memory _data,
        bool safe
    ) 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 {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

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

            if (safe && to.isContract()) {
                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 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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is 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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        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 Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == 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 {}
}

File 5 of 13: ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './ERC721A.sol';

error InvalidQueryRange();

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

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

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

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

File 6 of 13: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

File 7 of 13: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

File 8 of 13: IERC721A.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

File 9 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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 10 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 13 of 13: Strings.sol
// SPDX-License-Identifier: MIT

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":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealUri","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"},{"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":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","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":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"getMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"getNoToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notReveal","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000519291906200042f565b506618289060790000600c55611a0a600d55610d05600e55600a600f5560646010556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff021916908315150217905550348015620000b657600080fd5b506040516200488c3803806200488c8339818101604052810190620000dc91906200055d565b6040518060400160405280600d81526020017f53686974436f6c6c6563746f72000000000000000000000000000000000000008152506040518060400160405280600281526020017f53430000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001609291906200042f565b508060039080519060200190620001799291906200042f565b506200018a620001dc60201b60201c565b6000819055505050620001b2620001a6620001e160201b60201c565b620001e960201b60201c565b620001c382620002af60201b60201c565b620001d4816200035a60201b60201c565b5050620007e9565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002bf620001e160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e56200040560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200033e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003359062000609565b60405180910390fd5b8060099080519060200190620003569291906200042f565b5050565b6200036a620001e160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003906200040560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003e9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e09062000609565b60405180910390fd5b80600a9080519060200190620004019291906200042f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200043d90620006d1565b90600052602060002090601f016020900481019282620004615760008555620004ad565b82601f106200047c57805160ff1916838001178555620004ad565b82800160010185558215620004ad579182015b82811115620004ac5782518255916020019190600101906200048f565b5b509050620004bc9190620004c0565b5090565b5b80821115620004db576000816000905550600101620004c1565b5090565b6000620004f6620004f08462000654565b6200062b565b905082815260208101848484011115620005155762000514620007a0565b5b620005228482856200069b565b509392505050565b600082601f8301126200054257620005416200079b565b5b815162000554848260208601620004df565b91505092915050565b60008060408385031215620005775762000576620007aa565b5b600083015167ffffffffffffffff811115620005985762000597620007a5565b5b620005a6858286016200052a565b925050602083015167ffffffffffffffff811115620005ca57620005c9620007a5565b5b620005d8858286016200052a565b9150509250929050565b6000620005f16020836200068a565b9150620005fe82620007c0565b602082019050919050565b600060208201905081810360008301526200062481620005e2565b9050919050565b6000620006376200064a565b905062000645828262000707565b919050565b6000604051905090565b600067ffffffffffffffff8211156200067257620006716200076c565b5b6200067d82620007af565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006bb5780820151818401526020810190506200069e565b83811115620006cb576000848401525b50505050565b60006002820490506001821680620006ea57607f821691505b602082108114156200070157620007006200073d565b5b50919050565b6200071282620007af565b810181811067ffffffffffffffff821117156200073457620007336200076c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61409380620007f96000396000f3fe60806040526004361061025c5760003560e01c80635b70ea9f11610144578063a2801f57116100b6578063c87b56dd1161007a578063c87b56dd146108aa578063d5abeb01146108e7578063da3ef23f14610912578063e985e9c51461093b578063f2c4ce1e14610978578063f2fde38b146109a15761025c565b8063a2801f57146107d7578063a475b5dd14610814578063b88d4fde1461082b578063ba7d2c7614610854578063c66828621461087f5761025c565b8063715018a611610108578063715018a61461070e5780637d59946f146107255780638da5cb5b1461073c57806395d89b4114610767578063a0712d6814610792578063a22cb465146107ae5761025c565b80635b70ea9f146106155780635c975abb146106405780636352211e1461066b57806370a08231146106a8578063711b9e92146106e55761025c565b806318cae269116101dd5780633ccfd60b116101a15780633ccfd60b1461053857806342842e0e146105425780634c0f38c21461056b578063518302271461059657806355f804b3146105c157806356bda4a2146105ea5761025c565b806318cae2691461042d5780631d9cd4481461046a578063239c70ae146104a757806323b872dd146104d25780632f54bf6e146104fb5761025c565b8063095ea7b311610224578063095ea7b3146103585780630ca1c5c91461038157806313c738f0146103ac57806313faede6146103d757806318160ddd146104025761025c565b806301ffc9a71461026157806302329a291461029e57806306fdde03146102c7578063081812fc146102f2578063088a4ed01461032f575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906133d7565b6109ca565b6040516102959190613801565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c091906133aa565b610aac565b005b3480156102d357600080fd5b506102dc610b45565b6040516102e9919061381c565b60405180910390f35b3480156102fe57600080fd5b506103196004803603810190610314919061347a565b610bd7565b604051610326919061379a565b60405180910390f35b34801561033b57600080fd5b506103566004803603810190610351919061347a565b610c53565b005b34801561036457600080fd5b5061037f600480360381019061037a919061336a565b610cd9565b005b34801561038d57600080fd5b50610396610de4565b6040516103a3919061395e565b60405180910390f35b3480156103b857600080fd5b506103c1610df3565b6040516103ce919061395e565b60405180910390f35b3480156103e357600080fd5b506103ec610dfd565b6040516103f9919061395e565b60405180910390f35b34801561040e57600080fd5b50610417610e03565b604051610424919061395e565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f91906131e7565b610e1a565b604051610461919061395e565b60405180910390f35b34801561047657600080fd5b50610491600480360381019061048c91906131e7565b610e32565b60405161049e919061395e565b60405180910390f35b3480156104b357600080fd5b506104bc610e44565b6040516104c9919061395e565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190613254565b610e4a565b005b34801561050757600080fd5b50610522600480360381019061051d91906131e7565b610e5a565b60405161052f9190613801565b60405180910390f35b610540610eaa565b005b34801561054e57600080fd5b5061056960048036038101906105649190613254565b610fa6565b005b34801561057757600080fd5b50610580610fc6565b60405161058d919061395e565b60405180910390f35b3480156105a257600080fd5b506105ab610fd0565b6040516105b89190613801565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190613431565b610fe3565b005b3480156105f657600080fd5b506105ff611079565b60405161060c919061395e565b60405180910390f35b34801561062157600080fd5b5061062a611083565b604051610637919061395e565b60405180910390f35b34801561064c57600080fd5b50610655611089565b6040516106629190613801565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d919061347a565b61109c565b60405161069f919061379a565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca91906131e7565b6110b2565b6040516106dc919061395e565b60405180910390f35b3480156106f157600080fd5b5061070c6004803603810190610707919061347a565b611182565b005b34801561071a57600080fd5b50610723611208565b005b34801561073157600080fd5b5061073a611290565b005b34801561074857600080fd5b50610751611329565b60405161075e919061379a565b60405180910390f35b34801561077357600080fd5b5061077c611353565b604051610789919061381c565b60405180910390f35b6107ac60048036038101906107a7919061347a565b6113e5565b005b3480156107ba57600080fd5b506107d560048036038101906107d0919061332a565b611722565b005b3480156107e357600080fd5b506107fe60048036038101906107f991906131e7565b61189a565b60405161080b919061395e565b60405180910390f35b34801561082057600080fd5b506108296118e3565b005b34801561083757600080fd5b50610852600480360381019061084d91906132a7565b61197c565b005b34801561086057600080fd5b506108696119f8565b604051610876919061395e565b60405180910390f35b34801561088b57600080fd5b506108946119fe565b6040516108a1919061381c565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc919061347a565b611a8c565b6040516108de919061381c565b60405180910390f35b3480156108f357600080fd5b506108fc611be5565b604051610909919061395e565b60405180910390f35b34801561091e57600080fd5b5061093960048036038101906109349190613431565b611beb565b005b34801561094757600080fd5b50610962600480360381019061095d9190613214565b611c81565b60405161096f9190613801565b60405180910390f35b34801561098457600080fd5b5061099f600480360381019061099a9190613431565b611d15565b005b3480156109ad57600080fd5b506109c860048036038101906109c391906131e7565b611dab565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a9557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa55750610aa482611ea3565b5b9050919050565b610ab4611f0d565b73ffffffffffffffffffffffffffffffffffffffff16610ad2611329565b73ffffffffffffffffffffffffffffffffffffffff1614610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f906138fe565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060028054610b5490613c2e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8090613c2e565b8015610bcd5780601f10610ba257610100808354040283529160200191610bcd565b820191906000526020600020905b815481529060010190602001808311610bb057829003601f168201915b5050505050905090565b6000610be282611f15565b610c18576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c5b611f0d565b73ffffffffffffffffffffffffffffffffffffffff16610c79611329565b73ffffffffffffffffffffffffffffffffffffffff1614610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc6906138fe565b60405180910390fd5b80600f8190555050565b6000610ce48261109c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d4c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d6b611f0d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d9d5750610d9b81610d96611f0d565b611c81565b155b15610dd4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ddf838383611f63565b505050565b6000610dee612015565b905090565b6000600c54905090565b600c5481565b6000610e0d612028565b6001546000540303905090565b60126020528060005260406000206000915090505481565b6000610e3d826110b2565b9050919050565b600f5481565b610e5583838361202d565b505050565b6000610e64611329565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea05760019050610ea5565b600090505b919050565b610eb2611f0d565b73ffffffffffffffffffffffffffffffffffffffff16610ed0611329565b73ffffffffffffffffffffffffffffffffffffffff1614610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d906138fe565b60405180910390fd5b6000610f30611329565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f5390613785565b60006040518083038185875af1925050503d8060008114610f90576040519150601f19603f3d011682016040523d82523d6000602084013e610f95565b606091505b5050905080610fa357600080fd5b50565b610fc18383836040518060200160405280600081525061197c565b505050565b6000600d54905090565b601160019054906101000a900460ff1681565b610feb611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611009611329565b73ffffffffffffffffffffffffffffffffffffffff161461105f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611056906138fe565b60405180910390fd5b8060099080519060200190611075929190612fb8565b5050565b6000601054905090565b600e5481565b601160009054906101000a900460ff1681565b60006110a7826124e3565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561111a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61118a611f0d565b73ffffffffffffffffffffffffffffffffffffffff166111a8611329565b73ffffffffffffffffffffffffffffffffffffffff16146111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f5906138fe565b60405180910390fd5b8060108190555050565b611210611f0d565b73ffffffffffffffffffffffffffffffffffffffff1661122e611329565b73ffffffffffffffffffffffffffffffffffffffff1614611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b906138fe565b60405180910390fd5b61128e6000612772565b565b611298611f0d565b73ffffffffffffffffffffffffffffffffffffffff166112b6611329565b73ffffffffffffffffffffffffffffffffffffffff161461130c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611303906138fe565b60405180910390fd5b6000601160016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461136290613c2e565b80601f016020809104026020016040519081016040528092919081815260200182805461138e90613c2e565b80156113db5780601f106113b0576101008083540402835291602001916113db565b820191906000526020600020905b8154815290600101906020018083116113be57829003601f168201915b5050505050905090565b601160009054906101000a900460ff1615611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c9061389e565b60405180910390fd5b600061143f610e03565b905060008211611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b9061385e565b60405180910390fd5b600f548211156114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c0906138de565b60405180910390fd5b600d5482826114d89190613a63565b1115611519576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611510906138be565b60405180910390fd5b611521611329565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116be576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060105483826115a69190613a63565b11156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de9061393e565b60405180910390fd5b600e54821161166b57600082600e546116009190613b44565b90508084106116655780846116159190613b44565b600c546116229190613aea565b341015611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b9061387e565b60405180910390fd5b5b506116bc565b82600c546116799190613aea565b3410156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b29061387e565b60405180910390fd5b5b505b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461170d9190613a63565b9250508190555061171e3383612838565b5050565b61172a611f0d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561178f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061179c611f0d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611849611f0d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161188e9190613801565b60405180910390a35050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118eb611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611909611329565b73ffffffffffffffffffffffffffffffffffffffff161461195f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611956906138fe565b60405180910390fd5b6001601160016101000a81548160ff021916908315150217905550565b61198784848461202d565b6119a68373ffffffffffffffffffffffffffffffffffffffff16612856565b80156119bb57506119b984848484612879565b155b156119f2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60105481565b600b8054611a0b90613c2e565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3790613c2e565b8015611a845780601f10611a5957610100808354040283529160200191611a84565b820191906000526020600020905b815481529060010190602001808311611a6757829003601f168201915b505050505081565b6060611a9782611f15565b611ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acd9061391e565b60405180910390fd5b60001515601160019054906101000a900460ff1615151415611b8457600a8054611aff90613c2e565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2b90613c2e565b8015611b785780601f10611b4d57610100808354040283529160200191611b78565b820191906000526020600020905b815481529060010190602001808311611b5b57829003601f168201915b50505050509050611be0565b6000611b8e6129d9565b90506000815111611bae5760405180602001604052806000815250611bdc565b80611bb884612a6b565b600b604051602001611bcc93929190613754565b6040516020818303038152906040525b9150505b919050565b600d5481565b611bf3611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611c11611329565b73ffffffffffffffffffffffffffffffffffffffff1614611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e906138fe565b60405180910390fd5b80600b9080519060200190611c7d929190612fb8565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d1d611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611d3b611329565b73ffffffffffffffffffffffffffffffffffffffff1614611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d88906138fe565b60405180910390fd5b80600a9080519060200190611da7929190612fb8565b5050565b611db3611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611dd1611329565b73ffffffffffffffffffffffffffffffffffffffff1614611e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1e906138fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e9061383e565b60405180910390fd5b611ea081612772565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611f20612028565b11158015611f2f575060005482105b8015611f5c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061201f612028565b60005403905090565b600090565b6000612038826124e3565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120a3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166120c4611f0d565b73ffffffffffffffffffffffffffffffffffffffff1614806120f357506120f2856120ed611f0d565b611c81565b5b806121385750612101611f0d565b73ffffffffffffffffffffffffffffffffffffffff1661212084610bd7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612171576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121d8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121e58585856001612bcc565b6121f160008487611f63565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561247157600054821461247057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124dc8585856001612bd2565b5050505050565b6124eb61303e565b6000829050806124f9612028565b11158015612508575060005481105b1561273b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161273957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461261d57809250505061276d565b5b60011561273857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461273357809250505061276d565b61261e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612852828260405180602001604052806000815250612bd8565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261289f611f0d565b8786866040518563ffffffff1660e01b81526004016128c194939291906137b5565b602060405180830381600087803b1580156128db57600080fd5b505af192505050801561290c57506040513d601f19601f820116820180604052508101906129099190613404565b60015b612986573d806000811461293c576040519150601f19603f3d011682016040523d82523d6000602084013e612941565b606091505b5060008151141561297e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546129e890613c2e565b80601f0160208091040260200160405190810160405280929190818152602001828054612a1490613c2e565b8015612a615780601f10612a3657610100808354040283529160200191612a61565b820191906000526020600020905b815481529060010190602001808311612a4457829003601f168201915b5050505050905090565b60606000821415612ab3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bc7565b600082905060005b60008214612ae5578080612ace90613c91565b915050600a82612ade9190613ab9565b9150612abb565b60008167ffffffffffffffff811115612b0157612b00613dc7565b5b6040519080825280601f01601f191660200182016040528015612b335781602001600182028036833780820191505090505b5090505b60008514612bc057600182612b4c9190613b44565b9150600a85612b5b9190613cda565b6030612b679190613a63565b60f81b818381518110612b7d57612b7c613d98565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bb99190613ab9565b9450612b37565b8093505050505b919050565b50505050565b50505050565b612be58383836001612bea565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612c57576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612c92576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c9f6000868387612bcc565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612e695750612e688773ffffffffffffffffffffffffffffffffffffffff16612856565b5b15612f2f575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ede6000888480600101955088612879565b612f14576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612e6f578260005414612f2a57600080fd5b612f9b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612f30575b816000819055505050612fb16000868387612bd2565b5050505050565b828054612fc490613c2e565b90600052602060002090601f016020900481019282612fe6576000855561302d565b82601f10612fff57805160ff191683800117855561302d565b8280016001018555821561302d579182015b8281111561302c578251825591602001919060010190613011565b5b50905061303a9190613081565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561309a576000816000905550600101613082565b5090565b60006130b16130ac8461399e565b613979565b9050828152602081018484840111156130cd576130cc613dfb565b5b6130d8848285613bec565b509392505050565b60006130f36130ee846139cf565b613979565b90508281526020810184848401111561310f5761310e613dfb565b5b61311a848285613bec565b509392505050565b60008135905061313181614001565b92915050565b60008135905061314681614018565b92915050565b60008135905061315b8161402f565b92915050565b6000815190506131708161402f565b92915050565b600082601f83011261318b5761318a613df6565b5b813561319b84826020860161309e565b91505092915050565b600082601f8301126131b9576131b8613df6565b5b81356131c98482602086016130e0565b91505092915050565b6000813590506131e181614046565b92915050565b6000602082840312156131fd576131fc613e05565b5b600061320b84828501613122565b91505092915050565b6000806040838503121561322b5761322a613e05565b5b600061323985828601613122565b925050602061324a85828601613122565b9150509250929050565b60008060006060848603121561326d5761326c613e05565b5b600061327b86828701613122565b935050602061328c86828701613122565b925050604061329d868287016131d2565b9150509250925092565b600080600080608085870312156132c1576132c0613e05565b5b60006132cf87828801613122565b94505060206132e087828801613122565b93505060406132f1878288016131d2565b925050606085013567ffffffffffffffff81111561331257613311613e00565b5b61331e87828801613176565b91505092959194509250565b6000806040838503121561334157613340613e05565b5b600061334f85828601613122565b925050602061336085828601613137565b9150509250929050565b6000806040838503121561338157613380613e05565b5b600061338f85828601613122565b92505060206133a0858286016131d2565b9150509250929050565b6000602082840312156133c0576133bf613e05565b5b60006133ce84828501613137565b91505092915050565b6000602082840312156133ed576133ec613e05565b5b60006133fb8482850161314c565b91505092915050565b60006020828403121561341a57613419613e05565b5b600061342884828501613161565b91505092915050565b60006020828403121561344757613446613e05565b5b600082013567ffffffffffffffff81111561346557613464613e00565b5b613471848285016131a4565b91505092915050565b6000602082840312156134905761348f613e05565b5b600061349e848285016131d2565b91505092915050565b6134b081613b78565b82525050565b6134bf81613b8a565b82525050565b60006134d082613a15565b6134da8185613a2b565b93506134ea818560208601613bfb565b6134f381613e0a565b840191505092915050565b600061350982613a20565b6135138185613a47565b9350613523818560208601613bfb565b61352c81613e0a565b840191505092915050565b600061354282613a20565b61354c8185613a58565b935061355c818560208601613bfb565b80840191505092915050565b6000815461357581613c2e565b61357f8186613a58565b9450600182166000811461359a57600181146135ab576135de565b60ff198316865281860193506135de565b6135b485613a00565b60005b838110156135d6578154818901526001820191506020810190506135b7565b838801955050505b50505092915050565b60006135f4602683613a47565b91506135ff82613e1b565b604082019050919050565b6000613617601b83613a47565b915061362282613e6a565b602082019050919050565b600061363a601283613a47565b915061364582613e93565b602082019050919050565b600061365d601983613a47565b915061366882613ebc565b602082019050919050565b6000613680601683613a47565b915061368b82613ee5565b602082019050919050565b60006136a3602483613a47565b91506136ae82613f0e565b604082019050919050565b60006136c6602083613a47565b91506136d182613f5d565b602082019050919050565b60006136e9602f83613a47565b91506136f482613f86565b604082019050919050565b600061370c601c83613a47565b915061371782613fd5565b602082019050919050565b600061372f600083613a3c565b915061373a82613ffe565b600082019050919050565b61374e81613be2565b82525050565b60006137608286613537565b915061376c8285613537565b91506137788284613568565b9150819050949350505050565b600061379082613722565b9150819050919050565b60006020820190506137af60008301846134a7565b92915050565b60006080820190506137ca60008301876134a7565b6137d760208301866134a7565b6137e46040830185613745565b81810360608301526137f681846134c5565b905095945050505050565b600060208201905061381660008301846134b6565b92915050565b6000602082019050818103600083015261383681846134fe565b905092915050565b60006020820190508181036000830152613857816135e7565b9050919050565b600060208201905081810360008301526138778161360a565b9050919050565b600060208201905081810360008301526138978161362d565b9050919050565b600060208201905081810360008301526138b781613650565b9050919050565b600060208201905081810360008301526138d781613673565b9050919050565b600060208201905081810360008301526138f781613696565b9050919050565b60006020820190508181036000830152613917816136b9565b9050919050565b60006020820190508181036000830152613937816136dc565b9050919050565b60006020820190508181036000830152613957816136ff565b9050919050565b60006020820190506139736000830184613745565b92915050565b6000613983613994565b905061398f8282613c60565b919050565b6000604051905090565b600067ffffffffffffffff8211156139b9576139b8613dc7565b5b6139c282613e0a565b9050602081019050919050565b600067ffffffffffffffff8211156139ea576139e9613dc7565b5b6139f382613e0a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a6e82613be2565b9150613a7983613be2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613aae57613aad613d0b565b5b828201905092915050565b6000613ac482613be2565b9150613acf83613be2565b925082613adf57613ade613d3a565b5b828204905092915050565b6000613af582613be2565b9150613b0083613be2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b3957613b38613d0b565b5b828202905092915050565b6000613b4f82613be2565b9150613b5a83613be2565b925082821015613b6d57613b6c613d0b565b5b828203905092915050565b6000613b8382613bc2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c19578082015181840152602081019050613bfe565b83811115613c28576000848401525b50505050565b60006002820490506001821680613c4657607f821691505b60208210811415613c5a57613c59613d69565b5b50919050565b613c6982613e0a565b810181811067ffffffffffffffff82111715613c8857613c87613dc7565b5b80604052505050565b6000613c9c82613be2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ccf57613cce613d0b565b5b600182019050919050565b6000613ce582613be2565b9150613cf083613be2565b925082613d0057613cff613d3a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e65656420746f204d696e74206174204c656173742031204e46540000000000600082015250565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b7f54686520436f6e74726163742069732050617573656421212100000000000000600082015250565b7f4d6178204e4654204c696d697420457863656564656400000000000000000000600082015250565b7f4d6178204d696e7420416d6f756e74205065722053657373696f6e204578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178204e465420506572204164647265737320457863656564656400000000600082015250565b50565b61400a81613b78565b811461401557600080fd5b50565b61402181613b8a565b811461402c57600080fd5b50565b61403881613b96565b811461404357600080fd5b50565b61404f81613be2565b811461405a57600080fd5b5056fea2646970667358221220b8ca3802016f78518477eb28958bc894c76f2278cdf015a0730f58171ae60b5564736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5073534a6a564a7062746f57706e6e594e645838393477574e4b38654351595376714b7559324c636f5951750000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80635b70ea9f11610144578063a2801f57116100b6578063c87b56dd1161007a578063c87b56dd146108aa578063d5abeb01146108e7578063da3ef23f14610912578063e985e9c51461093b578063f2c4ce1e14610978578063f2fde38b146109a15761025c565b8063a2801f57146107d7578063a475b5dd14610814578063b88d4fde1461082b578063ba7d2c7614610854578063c66828621461087f5761025c565b8063715018a611610108578063715018a61461070e5780637d59946f146107255780638da5cb5b1461073c57806395d89b4114610767578063a0712d6814610792578063a22cb465146107ae5761025c565b80635b70ea9f146106155780635c975abb146106405780636352211e1461066b57806370a08231146106a8578063711b9e92146106e55761025c565b806318cae269116101dd5780633ccfd60b116101a15780633ccfd60b1461053857806342842e0e146105425780634c0f38c21461056b578063518302271461059657806355f804b3146105c157806356bda4a2146105ea5761025c565b806318cae2691461042d5780631d9cd4481461046a578063239c70ae146104a757806323b872dd146104d25780632f54bf6e146104fb5761025c565b8063095ea7b311610224578063095ea7b3146103585780630ca1c5c91461038157806313c738f0146103ac57806313faede6146103d757806318160ddd146104025761025c565b806301ffc9a71461026157806302329a291461029e57806306fdde03146102c7578063081812fc146102f2578063088a4ed01461032f575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906133d7565b6109ca565b6040516102959190613801565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c091906133aa565b610aac565b005b3480156102d357600080fd5b506102dc610b45565b6040516102e9919061381c565b60405180910390f35b3480156102fe57600080fd5b506103196004803603810190610314919061347a565b610bd7565b604051610326919061379a565b60405180910390f35b34801561033b57600080fd5b506103566004803603810190610351919061347a565b610c53565b005b34801561036457600080fd5b5061037f600480360381019061037a919061336a565b610cd9565b005b34801561038d57600080fd5b50610396610de4565b6040516103a3919061395e565b60405180910390f35b3480156103b857600080fd5b506103c1610df3565b6040516103ce919061395e565b60405180910390f35b3480156103e357600080fd5b506103ec610dfd565b6040516103f9919061395e565b60405180910390f35b34801561040e57600080fd5b50610417610e03565b604051610424919061395e565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f91906131e7565b610e1a565b604051610461919061395e565b60405180910390f35b34801561047657600080fd5b50610491600480360381019061048c91906131e7565b610e32565b60405161049e919061395e565b60405180910390f35b3480156104b357600080fd5b506104bc610e44565b6040516104c9919061395e565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190613254565b610e4a565b005b34801561050757600080fd5b50610522600480360381019061051d91906131e7565b610e5a565b60405161052f9190613801565b60405180910390f35b610540610eaa565b005b34801561054e57600080fd5b5061056960048036038101906105649190613254565b610fa6565b005b34801561057757600080fd5b50610580610fc6565b60405161058d919061395e565b60405180910390f35b3480156105a257600080fd5b506105ab610fd0565b6040516105b89190613801565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190613431565b610fe3565b005b3480156105f657600080fd5b506105ff611079565b60405161060c919061395e565b60405180910390f35b34801561062157600080fd5b5061062a611083565b604051610637919061395e565b60405180910390f35b34801561064c57600080fd5b50610655611089565b6040516106629190613801565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d919061347a565b61109c565b60405161069f919061379a565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca91906131e7565b6110b2565b6040516106dc919061395e565b60405180910390f35b3480156106f157600080fd5b5061070c6004803603810190610707919061347a565b611182565b005b34801561071a57600080fd5b50610723611208565b005b34801561073157600080fd5b5061073a611290565b005b34801561074857600080fd5b50610751611329565b60405161075e919061379a565b60405180910390f35b34801561077357600080fd5b5061077c611353565b604051610789919061381c565b60405180910390f35b6107ac60048036038101906107a7919061347a565b6113e5565b005b3480156107ba57600080fd5b506107d560048036038101906107d0919061332a565b611722565b005b3480156107e357600080fd5b506107fe60048036038101906107f991906131e7565b61189a565b60405161080b919061395e565b60405180910390f35b34801561082057600080fd5b506108296118e3565b005b34801561083757600080fd5b50610852600480360381019061084d91906132a7565b61197c565b005b34801561086057600080fd5b506108696119f8565b604051610876919061395e565b60405180910390f35b34801561088b57600080fd5b506108946119fe565b6040516108a1919061381c565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc919061347a565b611a8c565b6040516108de919061381c565b60405180910390f35b3480156108f357600080fd5b506108fc611be5565b604051610909919061395e565b60405180910390f35b34801561091e57600080fd5b5061093960048036038101906109349190613431565b611beb565b005b34801561094757600080fd5b50610962600480360381019061095d9190613214565b611c81565b60405161096f9190613801565b60405180910390f35b34801561098457600080fd5b5061099f600480360381019061099a9190613431565b611d15565b005b3480156109ad57600080fd5b506109c860048036038101906109c391906131e7565b611dab565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a9557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa55750610aa482611ea3565b5b9050919050565b610ab4611f0d565b73ffffffffffffffffffffffffffffffffffffffff16610ad2611329565b73ffffffffffffffffffffffffffffffffffffffff1614610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f906138fe565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060028054610b5490613c2e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8090613c2e565b8015610bcd5780601f10610ba257610100808354040283529160200191610bcd565b820191906000526020600020905b815481529060010190602001808311610bb057829003601f168201915b5050505050905090565b6000610be282611f15565b610c18576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c5b611f0d565b73ffffffffffffffffffffffffffffffffffffffff16610c79611329565b73ffffffffffffffffffffffffffffffffffffffff1614610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc6906138fe565b60405180910390fd5b80600f8190555050565b6000610ce48261109c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d4c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d6b611f0d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d9d5750610d9b81610d96611f0d565b611c81565b155b15610dd4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ddf838383611f63565b505050565b6000610dee612015565b905090565b6000600c54905090565b600c5481565b6000610e0d612028565b6001546000540303905090565b60126020528060005260406000206000915090505481565b6000610e3d826110b2565b9050919050565b600f5481565b610e5583838361202d565b505050565b6000610e64611329565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea05760019050610ea5565b600090505b919050565b610eb2611f0d565b73ffffffffffffffffffffffffffffffffffffffff16610ed0611329565b73ffffffffffffffffffffffffffffffffffffffff1614610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d906138fe565b60405180910390fd5b6000610f30611329565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f5390613785565b60006040518083038185875af1925050503d8060008114610f90576040519150601f19603f3d011682016040523d82523d6000602084013e610f95565b606091505b5050905080610fa357600080fd5b50565b610fc18383836040518060200160405280600081525061197c565b505050565b6000600d54905090565b601160019054906101000a900460ff1681565b610feb611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611009611329565b73ffffffffffffffffffffffffffffffffffffffff161461105f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611056906138fe565b60405180910390fd5b8060099080519060200190611075929190612fb8565b5050565b6000601054905090565b600e5481565b601160009054906101000a900460ff1681565b60006110a7826124e3565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561111a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61118a611f0d565b73ffffffffffffffffffffffffffffffffffffffff166111a8611329565b73ffffffffffffffffffffffffffffffffffffffff16146111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f5906138fe565b60405180910390fd5b8060108190555050565b611210611f0d565b73ffffffffffffffffffffffffffffffffffffffff1661122e611329565b73ffffffffffffffffffffffffffffffffffffffff1614611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b906138fe565b60405180910390fd5b61128e6000612772565b565b611298611f0d565b73ffffffffffffffffffffffffffffffffffffffff166112b6611329565b73ffffffffffffffffffffffffffffffffffffffff161461130c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611303906138fe565b60405180910390fd5b6000601160016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461136290613c2e565b80601f016020809104026020016040519081016040528092919081815260200182805461138e90613c2e565b80156113db5780601f106113b0576101008083540402835291602001916113db565b820191906000526020600020905b8154815290600101906020018083116113be57829003601f168201915b5050505050905090565b601160009054906101000a900460ff1615611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c9061389e565b60405180910390fd5b600061143f610e03565b905060008211611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b9061385e565b60405180910390fd5b600f548211156114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c0906138de565b60405180910390fd5b600d5482826114d89190613a63565b1115611519576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611510906138be565b60405180910390fd5b611521611329565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116be576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060105483826115a69190613a63565b11156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de9061393e565b60405180910390fd5b600e54821161166b57600082600e546116009190613b44565b90508084106116655780846116159190613b44565b600c546116229190613aea565b341015611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b9061387e565b60405180910390fd5b5b506116bc565b82600c546116799190613aea565b3410156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b29061387e565b60405180910390fd5b5b505b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461170d9190613a63565b9250508190555061171e3383612838565b5050565b61172a611f0d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561178f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061179c611f0d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611849611f0d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161188e9190613801565b60405180910390a35050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118eb611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611909611329565b73ffffffffffffffffffffffffffffffffffffffff161461195f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611956906138fe565b60405180910390fd5b6001601160016101000a81548160ff021916908315150217905550565b61198784848461202d565b6119a68373ffffffffffffffffffffffffffffffffffffffff16612856565b80156119bb57506119b984848484612879565b155b156119f2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60105481565b600b8054611a0b90613c2e565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3790613c2e565b8015611a845780601f10611a5957610100808354040283529160200191611a84565b820191906000526020600020905b815481529060010190602001808311611a6757829003601f168201915b505050505081565b6060611a9782611f15565b611ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acd9061391e565b60405180910390fd5b60001515601160019054906101000a900460ff1615151415611b8457600a8054611aff90613c2e565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2b90613c2e565b8015611b785780601f10611b4d57610100808354040283529160200191611b78565b820191906000526020600020905b815481529060010190602001808311611b5b57829003601f168201915b50505050509050611be0565b6000611b8e6129d9565b90506000815111611bae5760405180602001604052806000815250611bdc565b80611bb884612a6b565b600b604051602001611bcc93929190613754565b6040516020818303038152906040525b9150505b919050565b600d5481565b611bf3611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611c11611329565b73ffffffffffffffffffffffffffffffffffffffff1614611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e906138fe565b60405180910390fd5b80600b9080519060200190611c7d929190612fb8565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d1d611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611d3b611329565b73ffffffffffffffffffffffffffffffffffffffff1614611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d88906138fe565b60405180910390fd5b80600a9080519060200190611da7929190612fb8565b5050565b611db3611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611dd1611329565b73ffffffffffffffffffffffffffffffffffffffff1614611e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1e906138fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e9061383e565b60405180910390fd5b611ea081612772565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611f20612028565b11158015611f2f575060005482105b8015611f5c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061201f612028565b60005403905090565b600090565b6000612038826124e3565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120a3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166120c4611f0d565b73ffffffffffffffffffffffffffffffffffffffff1614806120f357506120f2856120ed611f0d565b611c81565b5b806121385750612101611f0d565b73ffffffffffffffffffffffffffffffffffffffff1661212084610bd7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612171576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121d8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121e58585856001612bcc565b6121f160008487611f63565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561247157600054821461247057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124dc8585856001612bd2565b5050505050565b6124eb61303e565b6000829050806124f9612028565b11158015612508575060005481105b1561273b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161273957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461261d57809250505061276d565b5b60011561273857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461273357809250505061276d565b61261e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612852828260405180602001604052806000815250612bd8565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261289f611f0d565b8786866040518563ffffffff1660e01b81526004016128c194939291906137b5565b602060405180830381600087803b1580156128db57600080fd5b505af192505050801561290c57506040513d601f19601f820116820180604052508101906129099190613404565b60015b612986573d806000811461293c576040519150601f19603f3d011682016040523d82523d6000602084013e612941565b606091505b5060008151141561297e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546129e890613c2e565b80601f0160208091040260200160405190810160405280929190818152602001828054612a1490613c2e565b8015612a615780601f10612a3657610100808354040283529160200191612a61565b820191906000526020600020905b815481529060010190602001808311612a4457829003601f168201915b5050505050905090565b60606000821415612ab3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bc7565b600082905060005b60008214612ae5578080612ace90613c91565b915050600a82612ade9190613ab9565b9150612abb565b60008167ffffffffffffffff811115612b0157612b00613dc7565b5b6040519080825280601f01601f191660200182016040528015612b335781602001600182028036833780820191505090505b5090505b60008514612bc057600182612b4c9190613b44565b9150600a85612b5b9190613cda565b6030612b679190613a63565b60f81b818381518110612b7d57612b7c613d98565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bb99190613ab9565b9450612b37565b8093505050505b919050565b50505050565b50505050565b612be58383836001612bea565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612c57576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612c92576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c9f6000868387612bcc565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612e695750612e688773ffffffffffffffffffffffffffffffffffffffff16612856565b5b15612f2f575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ede6000888480600101955088612879565b612f14576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612e6f578260005414612f2a57600080fd5b612f9b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612f30575b816000819055505050612fb16000868387612bd2565b5050505050565b828054612fc490613c2e565b90600052602060002090601f016020900481019282612fe6576000855561302d565b82601f10612fff57805160ff191683800117855561302d565b8280016001018555821561302d579182015b8281111561302c578251825591602001919060010190613011565b5b50905061303a9190613081565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561309a576000816000905550600101613082565b5090565b60006130b16130ac8461399e565b613979565b9050828152602081018484840111156130cd576130cc613dfb565b5b6130d8848285613bec565b509392505050565b60006130f36130ee846139cf565b613979565b90508281526020810184848401111561310f5761310e613dfb565b5b61311a848285613bec565b509392505050565b60008135905061313181614001565b92915050565b60008135905061314681614018565b92915050565b60008135905061315b8161402f565b92915050565b6000815190506131708161402f565b92915050565b600082601f83011261318b5761318a613df6565b5b813561319b84826020860161309e565b91505092915050565b600082601f8301126131b9576131b8613df6565b5b81356131c98482602086016130e0565b91505092915050565b6000813590506131e181614046565b92915050565b6000602082840312156131fd576131fc613e05565b5b600061320b84828501613122565b91505092915050565b6000806040838503121561322b5761322a613e05565b5b600061323985828601613122565b925050602061324a85828601613122565b9150509250929050565b60008060006060848603121561326d5761326c613e05565b5b600061327b86828701613122565b935050602061328c86828701613122565b925050604061329d868287016131d2565b9150509250925092565b600080600080608085870312156132c1576132c0613e05565b5b60006132cf87828801613122565b94505060206132e087828801613122565b93505060406132f1878288016131d2565b925050606085013567ffffffffffffffff81111561331257613311613e00565b5b61331e87828801613176565b91505092959194509250565b6000806040838503121561334157613340613e05565b5b600061334f85828601613122565b925050602061336085828601613137565b9150509250929050565b6000806040838503121561338157613380613e05565b5b600061338f85828601613122565b92505060206133a0858286016131d2565b9150509250929050565b6000602082840312156133c0576133bf613e05565b5b60006133ce84828501613137565b91505092915050565b6000602082840312156133ed576133ec613e05565b5b60006133fb8482850161314c565b91505092915050565b60006020828403121561341a57613419613e05565b5b600061342884828501613161565b91505092915050565b60006020828403121561344757613446613e05565b5b600082013567ffffffffffffffff81111561346557613464613e00565b5b613471848285016131a4565b91505092915050565b6000602082840312156134905761348f613e05565b5b600061349e848285016131d2565b91505092915050565b6134b081613b78565b82525050565b6134bf81613b8a565b82525050565b60006134d082613a15565b6134da8185613a2b565b93506134ea818560208601613bfb565b6134f381613e0a565b840191505092915050565b600061350982613a20565b6135138185613a47565b9350613523818560208601613bfb565b61352c81613e0a565b840191505092915050565b600061354282613a20565b61354c8185613a58565b935061355c818560208601613bfb565b80840191505092915050565b6000815461357581613c2e565b61357f8186613a58565b9450600182166000811461359a57600181146135ab576135de565b60ff198316865281860193506135de565b6135b485613a00565b60005b838110156135d6578154818901526001820191506020810190506135b7565b838801955050505b50505092915050565b60006135f4602683613a47565b91506135ff82613e1b565b604082019050919050565b6000613617601b83613a47565b915061362282613e6a565b602082019050919050565b600061363a601283613a47565b915061364582613e93565b602082019050919050565b600061365d601983613a47565b915061366882613ebc565b602082019050919050565b6000613680601683613a47565b915061368b82613ee5565b602082019050919050565b60006136a3602483613a47565b91506136ae82613f0e565b604082019050919050565b60006136c6602083613a47565b91506136d182613f5d565b602082019050919050565b60006136e9602f83613a47565b91506136f482613f86565b604082019050919050565b600061370c601c83613a47565b915061371782613fd5565b602082019050919050565b600061372f600083613a3c565b915061373a82613ffe565b600082019050919050565b61374e81613be2565b82525050565b60006137608286613537565b915061376c8285613537565b91506137788284613568565b9150819050949350505050565b600061379082613722565b9150819050919050565b60006020820190506137af60008301846134a7565b92915050565b60006080820190506137ca60008301876134a7565b6137d760208301866134a7565b6137e46040830185613745565b81810360608301526137f681846134c5565b905095945050505050565b600060208201905061381660008301846134b6565b92915050565b6000602082019050818103600083015261383681846134fe565b905092915050565b60006020820190508181036000830152613857816135e7565b9050919050565b600060208201905081810360008301526138778161360a565b9050919050565b600060208201905081810360008301526138978161362d565b9050919050565b600060208201905081810360008301526138b781613650565b9050919050565b600060208201905081810360008301526138d781613673565b9050919050565b600060208201905081810360008301526138f781613696565b9050919050565b60006020820190508181036000830152613917816136b9565b9050919050565b60006020820190508181036000830152613937816136dc565b9050919050565b60006020820190508181036000830152613957816136ff565b9050919050565b60006020820190506139736000830184613745565b92915050565b6000613983613994565b905061398f8282613c60565b919050565b6000604051905090565b600067ffffffffffffffff8211156139b9576139b8613dc7565b5b6139c282613e0a565b9050602081019050919050565b600067ffffffffffffffff8211156139ea576139e9613dc7565b5b6139f382613e0a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a6e82613be2565b9150613a7983613be2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613aae57613aad613d0b565b5b828201905092915050565b6000613ac482613be2565b9150613acf83613be2565b925082613adf57613ade613d3a565b5b828204905092915050565b6000613af582613be2565b9150613b0083613be2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b3957613b38613d0b565b5b828202905092915050565b6000613b4f82613be2565b9150613b5a83613be2565b925082821015613b6d57613b6c613d0b565b5b828203905092915050565b6000613b8382613bc2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c19578082015181840152602081019050613bfe565b83811115613c28576000848401525b50505050565b60006002820490506001821680613c4657607f821691505b60208210811415613c5a57613c59613d69565b5b50919050565b613c6982613e0a565b810181811067ffffffffffffffff82111715613c8857613c87613dc7565b5b80604052505050565b6000613c9c82613be2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ccf57613cce613d0b565b5b600182019050919050565b6000613ce582613be2565b9150613cf083613be2565b925082613d0057613cff613d3a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e65656420746f204d696e74206174204c656173742031204e46540000000000600082015250565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b7f54686520436f6e74726163742069732050617573656421212100000000000000600082015250565b7f4d6178204e4654204c696d697420457863656564656400000000000000000000600082015250565b7f4d6178204d696e7420416d6f756e74205065722053657373696f6e204578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178204e465420506572204164647265737320457863656564656400000000600082015250565b50565b61400a81613b78565b811461401557600080fd5b50565b61402181613b8a565b811461402c57600080fd5b50565b61403881613b96565b811461404357600080fd5b50565b61404f81613be2565b811461405a57600080fd5b5056fea2646970667358221220b8ca3802016f78518477eb28958bc894c76f2278cdf015a0730f58171ae60b5564736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5073534a6a564a7062746f57706e6e594e645838393477574e4b38654351595376714b7559324c636f5951750000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string):
Arg [1] : _initNotRevealUri (string): ipfs://QmPsSJjVJpbtoWpnnYNdX894wWNK8eCQYSvqKuY2LcoYQu

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [4] : 697066733a2f2f516d5073534a6a564a7062746f57706e6e594e645838393477
Arg [5] : 574e4b38654351595376714b7559324c636f5951750000000000000000000000


Deployed Bytecode Sourcemap

131:4012:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4309:300:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3190:73:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7337:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8793:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3403:116:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8370:362:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2655:86:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2578:73;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;309:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3580:297:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;559:57:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2471:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;416:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9632:164:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2920:144:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3973:168;;;:::i;:::-;;9862:179:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2745:79:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;526:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3747:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2828:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;382:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;497:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7152:123:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4668:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3523:94:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1621:92:10;;;;;;;;;;;;;:::i;:::-;;3332:65:11;;;;;;;;;;;;;:::i;:::-;;989:85:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7499:102:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1012:1020:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9060:282:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3068:118:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3267:61;;;;;;;;;;;;;:::i;:::-;;10107:359:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;453:39:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;268:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2036:431;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;347:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3621:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9408:162:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3849:120:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1862:223:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4309:300:3;4411:4;4461:25;4446:40;;;:11;:40;;;;:104;;;;4517:33;4502:48;;;:11;:48;;;;4446:104;:156;;;;4566:36;4590:11;4566:23;:36::i;:::-;4446:156;4427:175;;4309:300;;;:::o;3190:73:11:-;1212:12:10;:10;:12::i;:::-;1201:23;;:7;:5;:7::i;:::-;:23;;;1193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3252:6:11::1;3243;;:15;;;;;;;;;;;;;;;;;;3190:73:::0;:::o;7337:98:3:-;7391:13;7423:5;7416:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7337:98;:::o;8793:200::-;8861:7;8885:16;8893:7;8885;:16::i;:::-;8880:64;;8910:34;;;;;;;;;;;;;;8880:64;8962:15;:24;8978:7;8962:24;;;;;;;;;;;;;;;;;;;;;8955:31;;8793:200;;;:::o;3403:116:11:-;1212:12:10;:10;:12::i;:::-;1201:23;;:7;:5;:7::i;:::-;:23;;;1193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3497:17:11::1;3481:13;:33;;;;3403:116:::0;:::o;8370:362:3:-;8442:13;8458:24;8474:7;8458:15;:24::i;:::-;8442:40;;8502:5;8496:11;;:2;:11;;;8492:48;;;8516:24;;;;;;;;;;;;;;8492:48;8571:5;8555:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;8581:37;8598:5;8605:12;:10;:12::i;:::-;8581:16;:37::i;:::-;8580:38;8555:63;8551:136;;;8641:35;;;;;;;;;;;;;;8551:136;8697:28;8706:2;8710:7;8719:5;8697:8;:28::i;:::-;8432:300;8370:362;;:::o;2655:86:11:-;2702:4;2722:14;:12;:14::i;:::-;2715:21;;2655:86;:::o;2578:73::-;2622:4;2642;;2635:11;;2578:73;:::o;309:34::-;;;;:::o;3580:297:3:-;3624:7;3845:15;:13;:15::i;:::-;3830:12;;3814:13;;:28;:46;3807:53;;3580:297;:::o;559:57:11:-;;;;;;;;;;;;;;;;;:::o;2471:103::-;2531:4;2551:18;2561:7;2551:9;:18::i;:::-;2544:25;;2471:103;;;:::o;416:33::-;;;;:::o;9632:164:3:-;9761:28;9771:4;9777:2;9781:7;9761:9;:28::i;:::-;9632:164;;;:::o;2920:144:11:-;2977:4;3006:7;:5;:7::i;:::-;2995:18;;:7;:18;;;2990:52;;;3031:4;3024:11;;;;2990:52;3054:5;3047:12;;2920:144;;;;:::o;3973:168::-;1212:12:10;:10;:12::i;:::-;1201:23;;:7;:5;:7::i;:::-;:23;;;1193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4026:14:11::1;4055:7;:5;:7::i;:::-;4046:23;;4079;4046:64;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4024:86;;;4125:9;4116:20;;;::::0;::::1;;4018:123;3973:168::o:0;9862:179:3:-;9995:39;10012:4;10018:2;10022:7;9995:39;;;;;;;;;;;;:16;:39::i;:::-;9862:179;;;:::o;2745:79:11:-;2790:4;2810:9;;2803:16;;2745:79;:::o;526:28::-;;;;;;;;;;;;;:::o;3747:98::-;1212:12:10;:10;:12::i;:::-;1201:23;;:7;:5;:7::i;:::-;:23;;;1193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3829:11:11::1;3819:7;:21;;;;;;;;;;;;:::i;:::-;;3747:98:::0;:::o;2828:88::-;2873:4;2893:18;;2886:25;;2828:88;:::o;382:30::-;;;;:::o;497:25::-;;;;;;;;;;;;;:::o;7152:123:3:-;7216:7;7242:21;7255:7;7242:12;:21::i;:::-;:26;;;7235:33;;7152:123;;;:::o;4668:203::-;4732:7;4772:1;4755:19;;:5;:19;;;4751:60;;;4783:28;;;;;;;;;;;;;;4751:60;4836:12;:19;4849:5;4836:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;4828:36;;4821:43;;4668:203;;;:::o;3523:94:11:-;1212:12:10;:10;:12::i;:::-;1201:23;;:7;:5;:7::i;:::-;:23;;;1193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3606:6:11::1;3585:18;:27;;;;3523:94:::0;:::o;1621:92:10:-;1212:12;:10;:12::i;:::-;1201:23;;:7;:5;:7::i;:::-;:23;;;1193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1685:21:::1;1703:1;1685:9;:21::i;:::-;1621:92::o:0;3332:65:11:-;1212:12:10;:10;:12::i;:::-;1201:23;;:7;:5;:7::i;:::-;:23;;;1193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3387:5:11::1;3376:8;;:16;;;;;;;;;;;;;;;;;;3332:65::o:0;989:85:10:-;1035:7;1061:6;;;;;;;;;;;1054:13;;989:85;:::o;7499:102:3:-;7555:13;7587:7;7580:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7499:102;:::o;1012:1020:11:-;1080:6;;;;;;;;;;;1079:7;1070:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;1123:14;1140:13;:11;:13::i;:::-;1123:30;;1182:1;1168:11;:15;1159:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;1246:13;;1231:11;:28;;1222:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;1340:9;;1325:11;1316:6;:20;;;;:::i;:::-;:33;;1307:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;1402:7;:5;:7::i;:::-;1388:21;;:10;:21;;;1383:548;;1422:24;1449:20;:32;1470:10;1449:32;;;;;;;;;;;;;;;;1422:59;;1533:18;;1518:11;1499:16;:30;;;;:::i;:::-;:52;;1491:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;1607:8;;1597:6;:18;1594:331;;1631:19;1664:6;1653:8;;:17;;;;:::i;:::-;1631:39;;1702:11;1687;:26;1684:138;;1772:11;1760;:23;;;;:::i;:::-;1752:4;;:32;;;;:::i;:::-;1739:9;:45;;1731:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;1684:138;1617:215;1594:331;;;1880:11;1873:4;;:18;;;;:::i;:::-;1860:9;:31;;1852:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;1594:331;1412:519;1383:548;1974:11;1936:20;:34;1958:10;1936:34;;;;;;;;;;;;;;;;:49;;;;;;;:::i;:::-;;;;;;;;1991:36;2002:10;2014:11;1991:9;:36::i;:::-;1064:968;1012:1020;:::o;9060:282:3:-;9170:12;:10;:12::i;:::-;9158:24;;:8;:24;;;9154:54;;;9191:17;;;;;;;;;;;;;;9154:54;9264:8;9219:18;:32;9238:12;:10;:12::i;:::-;9219:32;;;;;;;;;;;;;;;:42;9252:8;9219:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;9316:8;9287:48;;9302:12;:10;:12::i;:::-;9287:48;;;9326:8;9287:48;;;;;;:::i;:::-;;;;;;;;9060:282;;:::o;3068:118:11:-;3130:4;3150:20;:31;3172:7;3150:31;;;;;;;;;;;;;;;;3143:38;;3068:118;;;:::o;3267:61::-;1212:12:10;:10;:12::i;:::-;1201:23;;:7;:5;:7::i;:::-;:23;;;1193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3319:4:11::1;3308:8;;:15;;;;;;;;;;;;;;;;;;3267:61::o:0;10107:359:3:-;10268:28;10278:4;10284:2;10288:7;10268:9;:28::i;:::-;10310:15;:2;:13;;;:15::i;:::-;:76;;;;;10330:56;10361:4;10367:2;10371:7;10380:5;10330:30;:56::i;:::-;10329:57;10310:76;10306:154;;;10409:40;;;;;;;;;;;;;;10306:154;10107:359;;;;:::o;453:39:11:-;;;;:::o;268:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2036:431::-;2112:13;2143:18;2152:7;2143;:18::i;:::-;2134:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:5;2225:17;;:8;;;;;;;;;;;:17;;;2220:63;;;2262:14;2255:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2220:63;2288:28;2319:10;:8;:10::i;:::-;2288:41;;2375:1;2349:14;2342:30;:34;:120;;;;;;;;;;;;;;;;;2405:14;2421:18;:7;:16;:18::i;:::-;2441:13;2387:69;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2342:120;2335:127;;;2036:431;;;;:::o;347:31::-;;;;:::o;3621:122::-;1212:12:10;:10;:12::i;:::-;1201:23;;:7;:5;:7::i;:::-;:23;;;1193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3721:17:11::1;3705:13;:33;;;;;;;;;;;;:::i;:::-;;3621:122:::0;:::o;9408:162:3:-;9505:4;9528:18;:25;9547:5;9528:25;;;;;;;;;;;;;;;:35;9554:8;9528:35;;;;;;;;;;;;;;;;;;;;;;;;;9521:42;;9408:162;;;;:::o;3849:120:11:-;1212:12:10;:10;:12::i;:::-;1201:23;;:7;:5;:7::i;:::-;:23;;;1193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3949:15:11::1;3932:14;:32;;;;;;;;;;;;:::i;:::-;;3849:120:::0;:::o;1862:223:10:-;1212:12;:10;:12::i;:::-;1201:23;;:7;:5;:7::i;:::-;:23;;;1193:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1983:1:::1;1963:22;;:8;:22;;;;1942:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;2059:19;2069:8;2059:9;:19::i;:::-;1862:223:::0;:::o;829:155:2:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;587:96:1:-;640:7;666:10;659:17;;587:96;:::o;10712:172:3:-;10769:4;10811:7;10792:15;:13;:15::i;:::-;:26;;:53;;;;;10832:13;;10822:7;:23;10792:53;:85;;;;;10850:11;:20;10862:7;10850:20;;;;;;;;;;;:27;;;;;;;;;;;;10849:28;10792:85;10785:92;;10712:172;;;:::o;18652:189::-;18789:2;18762:15;:24;18778:7;18762:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;18826:7;18822:2;18806:28;;18815:5;18806:28;;;;;;;;;;;;18652:189;;;:::o;3965:277::-;4012:7;4210:15;:13;:15::i;:::-;4194:13;;:31;4187:38;;3965:277;:::o;3361:90::-;3417:7;3361:90;:::o;13722:2082::-;13832:35;13870:21;13883:7;13870:12;:21::i;:::-;13832:59;;13928:4;13906:26;;:13;:18;;;:26;;;13902:67;;13941:28;;;;;;;;;;;;;;13902:67;13980:22;14022:4;14006:20;;:12;:10;:12::i;:::-;:20;;;:72;;;;14042:36;14059:4;14065:12;:10;:12::i;:::-;14042:16;:36::i;:::-;14006:72;:124;;;;14118:12;:10;:12::i;:::-;14094:36;;:20;14106:7;14094:11;:20::i;:::-;:36;;;14006:124;13980:151;;14147:17;14142:66;;14173:35;;;;;;;;;;;;;;14142:66;14236:1;14222:16;;:2;:16;;;14218:52;;;14247:23;;;;;;;;;;;;;;14218:52;14281:43;14303:4;14309:2;14313:7;14322:1;14281:21;:43::i;:::-;14386:35;14403:1;14407:7;14416:4;14386:8;:35::i;:::-;14741:1;14711:12;:18;14724:4;14711:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14784:1;14756:12;:16;14769:2;14756:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14800:31;14834:11;:20;14846:7;14834:20;;;;;;;;;;;14800:54;;14884:2;14868:8;:13;;;:18;;;;;;;;;;;;;;;;;;14933:15;14900:8;:23;;;:49;;;;;;;;;;;;;;;;;;15197:19;15229:1;15219:7;:11;15197:33;;15244:31;15278:11;:24;15290:11;15278:24;;;;;;;;;;;15244:58;;15345:1;15320:27;;:8;:13;;;;;;;;;;;;:27;;;15316:377;;;15527:13;;15512:11;:28;15508:171;;15580:4;15564:8;:13;;;:20;;;;;;;;;;;;;;;;;;15632:13;:28;;;15606:8;:23;;;:54;;;;;;;;;;;;;;;;;;15508:171;15316:377;14687:1016;;;15737:7;15733:2;15718:27;;15727:4;15718:27;;;;;;;;;;;;15755:42;15776:4;15782:2;15786:7;15795:1;15755:20;:42::i;:::-;13822:1982;;13722:2082;;;:::o;6011:1084::-;6073:21;;:::i;:::-;6106:12;6121:7;6106:22;;6186:4;6167:15;:13;:15::i;:::-;:23;;:47;;;;;6201:13;;6194:4;:20;6167:47;6163:868;;;6234:31;6268:11;:17;6280:4;6268:17;;;;;;;;;;;6234:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6308:9;:16;;;6303:714;;6378:1;6352:28;;:9;:14;;;:28;;;6348:99;;6415:9;6408:16;;;;;;6348:99;6744:255;6751:4;6744:255;;;6783:6;;;;;;;;6827:11;:17;6839:4;6827:17;;;;;;;;;;;6815:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6900:1;6874:28;;:9;:14;;;:28;;;6870:107;;6941:9;6934:16;;;;;;6870:107;6744:255;;;6303:714;6216:815;6163:868;7057:31;;;;;;;;;;;;;;6011:1084;;;;:::o;2091:169:10:-;2146:16;2165:6;;;;;;;;;;;2146:25;;2190:8;2181:6;;:17;;;;;;;;;;;;;;;;;;2244:8;2213:40;;2234:8;2213:40;;;;;;;;;;;;2136:124;2091:169;:::o;10890:102:3:-;10958:27;10968:2;10972:8;10958:27;;;;;;;;;;;;:9;:27::i;:::-;10890:102;;:::o;1175:320:0:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;19322:650:3:-;19480:4;19516:2;19500:36;;;19537:12;:10;:12::i;:::-;19551:4;19557:7;19566:5;19500:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;19496:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19748:1;19731:6;:13;:18;19727:229;;;19776:40;;;;;;;;;;;;;;19727:229;19916:6;19910:13;19901:6;19897:2;19893:15;19886:38;19496:470;19628:45;;;19618:55;;;:6;:55;;;;19611:62;;;19322:650;;;;;;:::o;906:102:11:-;967:13;996:7;989:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;906:102;:::o;276:703:12:-;332:13;558:1;549:5;:10;545:51;;;575:10;;;;;;;;;;;;;;;;;;;;;545:51;605:12;620:5;605:20;;635:14;659:75;674:1;666:4;:9;659:75;;691:8;;;;;:::i;:::-;;;;721:2;713:10;;;;;:::i;:::-;;;659:75;;;743:19;775:6;765:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;743:39;;792:150;808:1;799:5;:10;792:150;;835:1;825:11;;;;;:::i;:::-;;;901:2;893:5;:10;;;;:::i;:::-;880:2;:24;;;;:::i;:::-;867:39;;850:6;857;850:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;929:2;920:11;;;;;:::i;:::-;;;792:150;;;965:6;951:21;;;;;276:703;;;;:::o;20603:154:3:-;;;;;:::o;21398:153::-;;;;;:::o;11343:157::-;11461:32;11467:2;11471:8;11481:5;11488:4;11461:5;:32::i;:::-;11343:157;;;:::o;11747:1733::-;11880:20;11903:13;;11880:36;;11944:1;11930:16;;:2;:16;;;11926:48;;;11955:19;;;;;;;;;;;;;;11926:48;12000:1;11988:8;:13;11984:44;;;12010:18;;;;;;;;;;;;;;11984:44;12039:61;12069:1;12073:2;12077:12;12091:8;12039:21;:61::i;:::-;12406:8;12371:12;:16;12384:2;12371:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12469:8;12429:12;:16;12442:2;12429:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12526:2;12493:11;:25;12505:12;12493:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;12592:15;12542:11;:25;12554:12;12542:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;12623:20;12646:12;12623:35;;12672:11;12701:8;12686:12;:23;12672:37;;12728:4;:23;;;;;12736:15;:2;:13;;;:15::i;:::-;12728:23;12724:628;;;12771:309;12826:12;12822:2;12801:38;;12818:1;12801:38;;;;;;;;;;;;12866:69;12905:1;12909:2;12913:14;;;;;;12929:5;12866:30;:69::i;:::-;12861:172;;12970:40;;;;;;;;;;;;;;12861:172;13075:3;13059:12;:19;;12771:309;;13159:12;13142:13;;:29;13138:43;;13173:8;;;13138:43;12724:628;;;13220:118;13275:14;;;;;;13271:2;13250:40;;13267:1;13250:40;;;;;;;;;;;;13333:3;13317:12;:19;;13220:118;;12724:628;13381:12;13365:13;:28;;;;12347:1057;;13413:60;13442:1;13446:2;13450:12;13464:8;13413:20;:60::i;:::-;11870:1610;11747:1733;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10092:366;;;:::o;10464:::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10464:366;;;:::o;10836:::-;10978:3;10999:67;11063:2;11058:3;10999:67;:::i;:::-;10992:74;;11075:93;11164:3;11075:93;:::i;:::-;11193:2;11188:3;11184:12;11177:19;;10836:366;;;:::o;11208:::-;11350:3;11371:67;11435:2;11430:3;11371:67;:::i;:::-;11364:74;;11447:93;11536:3;11447:93;:::i;:::-;11565:2;11560:3;11556:12;11549:19;;11208:366;;;:::o;11580:::-;11722:3;11743:67;11807:2;11802:3;11743:67;:::i;:::-;11736:74;;11819:93;11908:3;11819:93;:::i;:::-;11937:2;11932:3;11928:12;11921:19;;11580:366;;;:::o;11952:::-;12094:3;12115:67;12179:2;12174:3;12115:67;:::i;:::-;12108:74;;12191:93;12280:3;12191:93;:::i;:::-;12309:2;12304:3;12300:12;12293:19;;11952:366;;;:::o;12324:::-;12466:3;12487:67;12551:2;12546:3;12487:67;:::i;:::-;12480:74;;12563:93;12652:3;12563:93;:::i;:::-;12681:2;12676:3;12672:12;12665:19;;12324:366;;;:::o;12696:::-;12838:3;12859:67;12923:2;12918:3;12859:67;:::i;:::-;12852:74;;12935:93;13024:3;12935:93;:::i;:::-;13053:2;13048:3;13044:12;13037:19;;12696:366;;;:::o;13068:398::-;13227:3;13248:83;13329:1;13324:3;13248:83;:::i;:::-;13241:90;;13340:93;13429:3;13340:93;:::i;:::-;13458:1;13453:3;13449:11;13442:18;;13068:398;;;:::o;13472:118::-;13559:24;13577:5;13559:24;:::i;:::-;13554:3;13547:37;13472:118;;:::o;13596:589::-;13821:3;13843:95;13934:3;13925:6;13843:95;:::i;:::-;13836:102;;13955:95;14046:3;14037:6;13955:95;:::i;:::-;13948:102;;14067:92;14155:3;14146:6;14067:92;:::i;:::-;14060:99;;14176:3;14169:10;;13596:589;;;;;;:::o;14191:379::-;14375:3;14397:147;14540:3;14397:147;:::i;:::-;14390:154;;14561:3;14554:10;;14191:379;;;:::o;14576:222::-;14669:4;14707:2;14696:9;14692:18;14684:26;;14720:71;14788:1;14777:9;14773:17;14764:6;14720:71;:::i;:::-;14576:222;;;;:::o;14804:640::-;14999:4;15037:3;15026:9;15022:19;15014:27;;15051:71;15119:1;15108:9;15104:17;15095:6;15051:71;:::i;:::-;15132:72;15200:2;15189:9;15185:18;15176:6;15132:72;:::i;:::-;15214;15282:2;15271:9;15267:18;15258:6;15214:72;:::i;:::-;15333:9;15327:4;15323:20;15318:2;15307:9;15303:18;15296:48;15361:76;15432:4;15423:6;15361:76;:::i;:::-;15353:84;;14804:640;;;;;;;:::o;15450:210::-;15537:4;15575:2;15564:9;15560:18;15552:26;;15588:65;15650:1;15639:9;15635:17;15626:6;15588:65;:::i;:::-;15450:210;;;;:::o;15666:313::-;15779:4;15817:2;15806:9;15802:18;15794:26;;15866:9;15860:4;15856:20;15852:1;15841:9;15837:17;15830:47;15894:78;15967:4;15958:6;15894:78;:::i;:::-;15886:86;;15666:313;;;;:::o;15985:419::-;16151:4;16189:2;16178:9;16174:18;16166:26;;16238:9;16232:4;16228:20;16224:1;16213:9;16209:17;16202:47;16266:131;16392:4;16266:131;:::i;:::-;16258:139;;15985:419;;;:::o;16410:::-;16576:4;16614:2;16603:9;16599:18;16591:26;;16663:9;16657:4;16653:20;16649:1;16638:9;16634:17;16627:47;16691:131;16817:4;16691:131;:::i;:::-;16683:139;;16410:419;;;:::o;16835:::-;17001:4;17039:2;17028:9;17024:18;17016:26;;17088:9;17082:4;17078:20;17074:1;17063:9;17059:17;17052:47;17116:131;17242:4;17116:131;:::i;:::-;17108:139;;16835:419;;;:::o;17260:::-;17426:4;17464:2;17453:9;17449:18;17441:26;;17513:9;17507:4;17503:20;17499:1;17488:9;17484:17;17477:47;17541:131;17667:4;17541:131;:::i;:::-;17533:139;;17260:419;;;:::o;17685:::-;17851:4;17889:2;17878:9;17874:18;17866:26;;17938:9;17932:4;17928:20;17924:1;17913:9;17909:17;17902:47;17966:131;18092:4;17966:131;:::i;:::-;17958:139;;17685:419;;;:::o;18110:::-;18276:4;18314:2;18303:9;18299:18;18291:26;;18363:9;18357:4;18353:20;18349:1;18338:9;18334:17;18327:47;18391:131;18517:4;18391:131;:::i;:::-;18383:139;;18110:419;;;:::o;18535:::-;18701:4;18739:2;18728:9;18724:18;18716:26;;18788:9;18782:4;18778:20;18774:1;18763:9;18759:17;18752:47;18816:131;18942:4;18816:131;:::i;:::-;18808:139;;18535:419;;;:::o;18960:::-;19126:4;19164:2;19153:9;19149:18;19141:26;;19213:9;19207:4;19203:20;19199:1;19188:9;19184:17;19177:47;19241:131;19367:4;19241:131;:::i;:::-;19233:139;;18960:419;;;:::o;19385:::-;19551:4;19589:2;19578:9;19574:18;19566:26;;19638:9;19632:4;19628:20;19624:1;19613:9;19609:17;19602:47;19666:131;19792:4;19666:131;:::i;:::-;19658:139;;19385:419;;;:::o;19810:222::-;19903:4;19941:2;19930:9;19926:18;19918:26;;19954:71;20022:1;20011:9;20007:17;19998:6;19954:71;:::i;:::-;19810:222;;;;:::o;20038:129::-;20072:6;20099:20;;:::i;:::-;20089:30;;20128:33;20156:4;20148:6;20128:33;:::i;:::-;20038:129;;;:::o;20173:75::-;20206:6;20239:2;20233:9;20223:19;;20173:75;:::o;20254:307::-;20315:4;20405:18;20397:6;20394:30;20391:56;;;20427:18;;:::i;:::-;20391:56;20465:29;20487:6;20465:29;:::i;:::-;20457:37;;20549:4;20543;20539:15;20531:23;;20254:307;;;:::o;20567:308::-;20629:4;20719:18;20711:6;20708:30;20705:56;;;20741:18;;:::i;:::-;20705:56;20779:29;20801:6;20779:29;:::i;:::-;20771:37;;20863:4;20857;20853:15;20845:23;;20567:308;;;:::o;20881:141::-;20930:4;20953:3;20945:11;;20976:3;20973:1;20966:14;21010:4;21007:1;20997:18;20989:26;;20881:141;;;:::o;21028:98::-;21079:6;21113:5;21107:12;21097:22;;21028:98;;;:::o;21132:99::-;21184:6;21218:5;21212:12;21202:22;;21132:99;;;:::o;21237:168::-;21320:11;21354:6;21349:3;21342:19;21394:4;21389:3;21385:14;21370:29;;21237:168;;;;:::o;21411:147::-;21512:11;21549:3;21534:18;;21411:147;;;;:::o;21564:169::-;21648:11;21682:6;21677:3;21670:19;21722:4;21717:3;21713:14;21698:29;;21564:169;;;;:::o;21739:148::-;21841:11;21878:3;21863:18;;21739:148;;;;:::o;21893:305::-;21933:3;21952:20;21970:1;21952:20;:::i;:::-;21947:25;;21986:20;22004:1;21986:20;:::i;:::-;21981:25;;22140:1;22072:66;22068:74;22065:1;22062:81;22059:107;;;22146:18;;:::i;:::-;22059:107;22190:1;22187;22183:9;22176:16;;21893:305;;;;:::o;22204:185::-;22244:1;22261:20;22279:1;22261:20;:::i;:::-;22256:25;;22295:20;22313:1;22295:20;:::i;:::-;22290:25;;22334:1;22324:35;;22339:18;;:::i;:::-;22324:35;22381:1;22378;22374:9;22369:14;;22204:185;;;;:::o;22395:348::-;22435:7;22458:20;22476:1;22458:20;:::i;:::-;22453:25;;22492:20;22510:1;22492:20;:::i;:::-;22487:25;;22680:1;22612:66;22608:74;22605:1;22602:81;22597:1;22590:9;22583:17;22579:105;22576:131;;;22687:18;;:::i;:::-;22576:131;22735:1;22732;22728:9;22717:20;;22395:348;;;;:::o;22749:191::-;22789:4;22809:20;22827:1;22809:20;:::i;:::-;22804:25;;22843:20;22861:1;22843:20;:::i;:::-;22838:25;;22882:1;22879;22876:8;22873:34;;;22887:18;;:::i;:::-;22873:34;22932:1;22929;22925:9;22917:17;;22749:191;;;;:::o;22946:96::-;22983:7;23012:24;23030:5;23012:24;:::i;:::-;23001:35;;22946:96;;;:::o;23048:90::-;23082:7;23125:5;23118:13;23111:21;23100:32;;23048:90;;;:::o;23144:149::-;23180:7;23220:66;23213:5;23209:78;23198:89;;23144:149;;;:::o;23299:126::-;23336:7;23376:42;23369:5;23365:54;23354:65;;23299:126;;;:::o;23431:77::-;23468:7;23497:5;23486:16;;23431:77;;;:::o;23514:154::-;23598:6;23593:3;23588;23575:30;23660:1;23651:6;23646:3;23642:16;23635:27;23514:154;;;:::o;23674:307::-;23742:1;23752:113;23766:6;23763:1;23760:13;23752:113;;;23851:1;23846:3;23842:11;23836:18;23832:1;23827:3;23823:11;23816:39;23788:2;23785:1;23781:10;23776:15;;23752:113;;;23883:6;23880:1;23877:13;23874:101;;;23963:1;23954:6;23949:3;23945:16;23938:27;23874:101;23723:258;23674:307;;;:::o;23987:320::-;24031:6;24068:1;24062:4;24058:12;24048:22;;24115:1;24109:4;24105:12;24136:18;24126:81;;24192:4;24184:6;24180:17;24170:27;;24126:81;24254:2;24246:6;24243:14;24223:18;24220:38;24217:84;;;24273:18;;:::i;:::-;24217:84;24038:269;23987:320;;;:::o;24313:281::-;24396:27;24418:4;24396:27;:::i;:::-;24388:6;24384:40;24526:6;24514:10;24511:22;24490:18;24478:10;24475:34;24472:62;24469:88;;;24537:18;;:::i;:::-;24469:88;24577:10;24573:2;24566:22;24356:238;24313:281;;:::o;24600:233::-;24639:3;24662:24;24680:5;24662:24;:::i;:::-;24653:33;;24708:66;24701:5;24698:77;24695:103;;;24778:18;;:::i;:::-;24695:103;24825:1;24818:5;24814:13;24807:20;;24600:233;;;:::o;24839:176::-;24871:1;24888:20;24906:1;24888:20;:::i;:::-;24883:25;;24922:20;24940:1;24922:20;:::i;:::-;24917:25;;24961:1;24951:35;;24966:18;;:::i;:::-;24951:35;25007:1;25004;25000:9;24995:14;;24839:176;;;;:::o;25021:180::-;25069:77;25066:1;25059:88;25166:4;25163:1;25156:15;25190:4;25187:1;25180:15;25207:180;25255:77;25252:1;25245:88;25352:4;25349:1;25342:15;25376:4;25373:1;25366:15;25393:180;25441:77;25438:1;25431:88;25538:4;25535:1;25528:15;25562:4;25559:1;25552:15;25579:180;25627:77;25624:1;25617:88;25724:4;25721:1;25714:15;25748:4;25745:1;25738:15;25765:180;25813:77;25810:1;25803:88;25910:4;25907:1;25900:15;25934:4;25931:1;25924:15;25951:117;26060:1;26057;26050:12;26074:117;26183:1;26180;26173:12;26197:117;26306:1;26303;26296:12;26320:117;26429:1;26426;26419:12;26443:102;26484:6;26535:2;26531:7;26526:2;26519:5;26515:14;26511:28;26501:38;;26443:102;;;:::o;26551:225::-;26691:34;26687:1;26679:6;26675:14;26668:58;26760:8;26755:2;26747:6;26743:15;26736:33;26551:225;:::o;26782:177::-;26922:29;26918:1;26910:6;26906:14;26899:53;26782:177;:::o;26965:168::-;27105:20;27101:1;27093:6;27089:14;27082:44;26965:168;:::o;27139:175::-;27279:27;27275:1;27267:6;27263:14;27256:51;27139:175;:::o;27320:172::-;27460:24;27456:1;27448:6;27444:14;27437:48;27320:172;:::o;27498:223::-;27638:34;27634:1;27626:6;27622:14;27615:58;27707:6;27702:2;27694:6;27690:15;27683:31;27498:223;:::o;27727:182::-;27867:34;27863:1;27855:6;27851:14;27844:58;27727:182;:::o;27915:234::-;28055:34;28051:1;28043:6;28039:14;28032:58;28124:17;28119:2;28111:6;28107:15;28100:42;27915:234;:::o;28155:178::-;28295:30;28291:1;28283:6;28279:14;28272:54;28155:178;:::o;28339:114::-;;:::o;28459:122::-;28532:24;28550:5;28532:24;:::i;:::-;28525:5;28522:35;28512:63;;28571:1;28568;28561:12;28512:63;28459:122;:::o;28587:116::-;28657:21;28672:5;28657:21;:::i;:::-;28650:5;28647:32;28637:60;;28693:1;28690;28683:12;28637:60;28587:116;:::o;28709:120::-;28781:23;28798:5;28781:23;:::i;:::-;28774:5;28771:34;28761:62;;28819:1;28816;28809:12;28761:62;28709:120;:::o;28835:122::-;28908:24;28926:5;28908:24;:::i;:::-;28901:5;28898:35;28888:63;;28947:1;28944;28937:12;28888:63;28835:122;:::o

Swarm Source

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