ETH Price: $3,483.82 (+3.33%)
Gas: 3 Gwei

Token

Skulls The Funky Undead Official (STFU)
 

Overview

Max Total Supply

6,666 STFU

Holders

3,215

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 STFU
0xa3eea95db0711cb9905a0400b0cd65257752f040
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Skulls The Funky Undead (STFU) is our genesis collection of 6666 generative original hand drawn traits lurking on the blockchain. A celebration of the underdogs fighting daily inner battles.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
STFU

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 5 of 6: STFU.sol
// SPDX-License-Identifier: MIT

/*
   SSSSSSSSSSSSSSS  TTTTTTTTTTTTTTTTTTT FFFFFFFFFFFFFFFFFFF UUUUUUU     UUUUUUU
 SS:::::::::::::::S T:::::::::::::::::T F:::::::::::::::::F U:::::U     U:::::U
S:::::SSSSSS::::::S TTTTTTT:::::TTTTTTT F:::::FFFFFFFFFFFFF U:::::U     U:::::U
S:::::S     SSSSSSS       T:::::T       F:::::F             U:::::U     U:::::U
S:::::S                   T:::::T       F:::::F             U:::::U     U:::::U
S:::::S                   T:::::T       F:::::F             U:::::U     U:::::U
 S::::SSSS                T:::::T       F:::::FFFFFFFF      U:::::U     U:::::U
  SS::::::SSSSS           T:::::T       F::::::::::::F      U:::::U     U:::::U
    SSS::::::::SS         T:::::T       F:::::FFFFFFFF      U:::::U     U:::::U
       SSSSSS::::S        T:::::T       F:::::F             U:::::U     U:::::U
            S:::::S       T:::::T       F:::::F             U:::::U     U:::::U
            S:::::S       T:::::T       F:::::F             U:::::U     U:::::U
SSSSSSS     S:::::S       T:::::T       F:::::F             U::::::U   U::::::U
S::::::SSSSSS:::::S       T:::::T       F:::::F             U:::::::UUU:::::::U
S:::::::::::::::SS        T:::::T       F:::::F              UU:::::::::::::UU
 SSSSSSSSSSSSSSS          TTTTTTT       FFFFFFF                UUUUUUUUUUUUU 
*/

// Skulls The Funky Undead

pragma solidity ^0.8.7;

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

contract STFU is ERC721A, Ownable {

  using Strings for uint256;

  string private baseURI;
  string private notRevealedUri;
  string public baseExtension = ".json";

  uint256 public cost = 0.02 ether;
  uint256 public maxSupply = 6666;
  uint256 public maxMintAmount = 20;
  uint256 public nftPerAddressLimit = 20;

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

  mapping( address => uint256 ) public addressMintedBalance;
  mapping( address => mapping( uint256 => uint256 )) private _ownedTokens;

  constructor(
    string memory _initBaseURI,
    string memory _initNotRevealUri
  ) ERC721A( "Skulls The Funky Undead Official", "STFU" ) {
    setBaseURI( _initBaseURI );
    setNotRevealedURI( _initNotRevealUri );
  }

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

  // Mint
  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( ownerMintedCount >= 2 ){
          require( msg.value >= cost * _mintAmount, "Insufficient Funds" );  
        } 
        
        else if ( ownerMintedCount == 0 && _mintAmount > 2 ){
          uint256 newMint = _mintAmount - 2;
          require( msg.value >= cost * newMint, "Insufficient Funds" );  
        }

        else if ( ownerMintedCount == 1 && _mintAmount > 1 ){
          uint256 newMint = _mintAmount - 1;
          require( msg.value >= cost * newMint, "Insufficient Funds" );  
        }
    }

    addressMintedBalance[ msg.sender ] += _mintAmount;
    _safeMint( msg.sender, _mintAmount );
  }

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

  // View Number of Token in Wallet
  function getNoToken( address _wallet ) public view returns( uint ) {
    return balanceOf(_wallet);
  }

  // View Mint Cost
  function getMintCost() public view returns( uint ) {
    return cost;
  }

  // View Total Minted
  function getTotalMinted() public view returns( uint ) {
    return _totalMinted();
  }

  // View Max Supply
  function getMaxSupply() public view returns( uint ) {
    return maxSupply;
  }

  // View Mint Limit
  function getMintLimit() public view returns( uint ) {
    return nftPerAddressLimit;
  }

  // Check If Owner
  function isOwner( address _wallet ) public view returns( bool ) {
    if ( _wallet == owner() ) {
      return true;
    }

    return false;
  }

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


  // ------------------------------------------------------------------------------- //
  // Only Owner                                                                     //
  // ----------------------------------------------------------------------------- //

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

  // Reveal NFT
  function reveal() public onlyOwner {
    revealed = true;
  }
  // Not Reveal NFT
  function notReveal() public onlyOwner {
    revealed = false;
  }
  
  // Set New Costs
  function setCost( uint256 _newCost ) public onlyOwner {
    cost = _newCost;
  }

  // Set New Max Supply
  function setMaxSupply( uint256 _newMaxSupply ) public onlyOwner {
    maxSupply = _newMaxSupply;
  }

  // Set Max Mint Amount
  function setMaxMintAmount( uint256 _newMaxMintAmount ) public onlyOwner {
    maxMintAmount = _newMaxMintAmount;
  }

  // Set NFT Limit Per Address
  function setNftLimit( uint256 _limit ) public onlyOwner {
    nftPerAddressLimit = _limit;
  }

  // Set New Base Extension
  function setBaseExtension( string memory _newBaseExtension ) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  // Set New Base URI
  function setBaseURI( string memory _newBaseURI ) public onlyOwner {
    baseURI = _newBaseURI;
  }

  // Set New Not Reveal URI
  function setNotRevealedURI( string memory _notRevealedURI ) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address approvedAddress = _tokenApprovals[tokenId];

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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 6 of 6: 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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","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":[{"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":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","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"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000519291906200042d565b5066470de4df820000600c55611a0a600d556014600e556014600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff021916908315150217905550348015620000b057600080fd5b50604051620044f5380380620044f58339818101604052810190620000d691906200055b565b6040518060400160405280602081526020017f536b756c6c73205468652046756e6b7920556e64656164204f6666696369616c8152506040518060400160405280600481526020017f535446550000000000000000000000000000000000000000000000000000000081525081600290805190602001906200015a9291906200042d565b508060039080519060200190620001739291906200042d565b5062000184620001d660201b60201c565b6000819055505050620001ac620001a0620001df60201b60201c565b620001e760201b60201c565b620001bd82620002ad60201b60201c565b620001ce816200035860201b60201c565b5050620007e7565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002bd620001df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e36200040360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200033c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003339062000607565b60405180910390fd5b8060099080519060200190620003549291906200042d565b5050565b62000368620001df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200038e6200040360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003de9062000607565b60405180910390fd5b80600a9080519060200190620003ff9291906200042d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200043b90620006cf565b90600052602060002090601f0160209004810192826200045f5760008555620004ab565b82601f106200047a57805160ff1916838001178555620004ab565b82800160010185558215620004ab579182015b82811115620004aa5782518255916020019190600101906200048d565b5b509050620004ba9190620004be565b5090565b5b80821115620004d9576000816000905550600101620004bf565b5090565b6000620004f4620004ee8462000652565b62000629565b9050828152602081018484840111156200051357620005126200079e565b5b6200052084828562000699565b509392505050565b600082601f83011262000540576200053f62000799565b5b815162000552848260208601620004dd565b91505092915050565b60008060408385031215620005755762000574620007a8565b5b600083015167ffffffffffffffff811115620005965762000595620007a3565b5b620005a48582860162000528565b925050602083015167ffffffffffffffff811115620005c857620005c7620007a3565b5b620005d68582860162000528565b9150509250929050565b6000620005ef60208362000688565b9150620005fc82620007be565b602082019050919050565b600060208201905081810360008301526200062281620005e0565b9050919050565b60006200063562000648565b905062000643828262000705565b919050565b6000604051905090565b600067ffffffffffffffff82111562000670576200066f6200076a565b5b6200067b82620007ad565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006b95780820151818401526020810190506200069c565b83811115620006c9576000848401525b50505050565b60006002820490506001821680620006e857607f821691505b60208210811415620006ff57620006fe6200073b565b5b50919050565b6200071082620007ad565b810181811067ffffffffffffffff821117156200073257620007316200076a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613cfe80620007f76000396000f3fe6080604052600436106102675760003560e01c80635c975abb11610144578063a2801f57116100b6578063c87b56dd1161007a578063c87b56dd146108dc578063d5abeb0114610919578063da3ef23f14610944578063e985e9c51461096d578063f2c4ce1e146109aa578063f2fde38b146109d357610267565b8063a2801f5714610809578063a475b5dd14610846578063b88d4fde1461085d578063ba7d2c7614610886578063c6682862146108b157610267565b8063715018a611610108578063715018a6146107405780637d59946f146107575780638da5cb5b1461076e57806395d89b4114610799578063a0712d68146107c4578063a22cb465146107e057610267565b80635c975abb146106495780636352211e146106745780636f8b44b0146106b157806370a08231146106da578063711b9e921461071757610267565b80631d9cd448116101dd57806342842e0e116101a157806342842e0e1461054d57806344a0d68a146105765780634c0f38c21461059f57806351830227146105ca57806355f804b3146105f557806356bda4a21461061e57610267565b80631d9cd44814610475578063239c70ae146104b257806323b872dd146104dd5780632f54bf6e146105065780633ccfd60b1461054357610267565b8063095ea7b31161022f578063095ea7b3146103635780630ca1c5c91461038c57806313c738f0146103b757806313faede6146103e257806318160ddd1461040d57806318cae2691461043857610267565b806301ffc9a71461026c57806302329a29146102a957806306fdde03146102d2578063081812fc146102fd578063088a4ed01461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613042565b6109fc565b6040516102a0919061346c565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190613015565b610a8e565b005b3480156102de57600080fd5b506102e7610b27565b6040516102f49190613487565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f91906130e5565b610bb9565b6040516103319190613405565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906130e5565b610c35565b005b34801561036f57600080fd5b5061038a60048036038101906103859190612fd5565b610cbb565b005b34801561039857600080fd5b506103a1610e62565b6040516103ae91906135c9565b60405180910390f35b3480156103c357600080fd5b506103cc610e71565b6040516103d991906135c9565b60405180910390f35b3480156103ee57600080fd5b506103f7610e7b565b60405161040491906135c9565b60405180910390f35b34801561041957600080fd5b50610422610e81565b60405161042f91906135c9565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190612e52565b610e98565b60405161046c91906135c9565b60405180910390f35b34801561048157600080fd5b5061049c60048036038101906104979190612e52565b610eb0565b6040516104a991906135c9565b60405180910390f35b3480156104be57600080fd5b506104c7610ec2565b6040516104d491906135c9565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190612ebf565b610ec8565b005b34801561051257600080fd5b5061052d60048036038101906105289190612e52565b610ed8565b60405161053a919061346c565b60405180910390f35b61054b610f28565b005b34801561055957600080fd5b50610574600480360381019061056f9190612ebf565b611024565b005b34801561058257600080fd5b5061059d600480360381019061059891906130e5565b611044565b005b3480156105ab57600080fd5b506105b46110ca565b6040516105c191906135c9565b60405180910390f35b3480156105d657600080fd5b506105df6110d4565b6040516105ec919061346c565b60405180910390f35b34801561060157600080fd5b5061061c6004803603810190610617919061309c565b6110e7565b005b34801561062a57600080fd5b5061063361117d565b60405161064091906135c9565b60405180910390f35b34801561065557600080fd5b5061065e611187565b60405161066b919061346c565b60405180910390f35b34801561068057600080fd5b5061069b600480360381019061069691906130e5565b61119a565b6040516106a89190613405565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d391906130e5565b6111ac565b005b3480156106e657600080fd5b5061070160048036038101906106fc9190612e52565b611232565b60405161070e91906135c9565b60405180910390f35b34801561072357600080fd5b5061073e600480360381019061073991906130e5565b6112c7565b005b34801561074c57600080fd5b5061075561134d565b005b34801561076357600080fd5b5061076c6113d5565b005b34801561077a57600080fd5b5061078361146e565b6040516107909190613405565b60405180910390f35b3480156107a557600080fd5b506107ae611498565b6040516107bb9190613487565b60405180910390f35b6107de60048036038101906107d991906130e5565b61152a565b005b3480156107ec57600080fd5b5061080760048036038101906108029190612f95565b6118e5565b005b34801561081557600080fd5b50610830600480360381019061082b9190612e52565b611a5d565b60405161083d91906135c9565b60405180910390f35b34801561085257600080fd5b5061085b611aa6565b005b34801561086957600080fd5b50610884600480360381019061087f9190612f12565b611b3f565b005b34801561089257600080fd5b5061089b611bb2565b6040516108a891906135c9565b60405180910390f35b3480156108bd57600080fd5b506108c6611bb8565b6040516108d39190613487565b60405180910390f35b3480156108e857600080fd5b5061090360048036038101906108fe91906130e5565b611c46565b6040516109109190613487565b60405180910390f35b34801561092557600080fd5b5061092e611d9f565b60405161093b91906135c9565b60405180910390f35b34801561095057600080fd5b5061096b6004803603810190610966919061309c565b611da5565b005b34801561097957600080fd5b50610994600480360381019061098f9190612e7f565b611e3b565b6040516109a1919061346c565b60405180910390f35b3480156109b657600080fd5b506109d160048036038101906109cc919061309c565b611ecf565b005b3480156109df57600080fd5b506109fa60048036038101906109f59190612e52565b611f65565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a875750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a9661205d565b73ffffffffffffffffffffffffffffffffffffffff16610ab461146e565b73ffffffffffffffffffffffffffffffffffffffff1614610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0190613569565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060028054610b3690613899565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6290613899565b8015610baf5780601f10610b8457610100808354040283529160200191610baf565b820191906000526020600020905b815481529060010190602001808311610b9257829003601f168201915b5050505050905090565b6000610bc482612065565b610bfa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c3d61205d565b73ffffffffffffffffffffffffffffffffffffffff16610c5b61146e565b73ffffffffffffffffffffffffffffffffffffffff1614610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890613569565b60405180910390fd5b80600e8190555050565b6000610cc6826120c4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d4d612192565b73ffffffffffffffffffffffffffffffffffffffff1614610db057610d7981610d74612192565b611e3b565b610daf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610e6c61219a565b905090565b6000600c54905090565b600c5481565b6000610e8b6121ad565b6001546000540303905090565b60116020528060005260406000206000915090505481565b6000610ebb82611232565b9050919050565b600e5481565b610ed38383836121b6565b505050565b6000610ee261146e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1e5760019050610f23565b600090505b919050565b610f3061205d565b73ffffffffffffffffffffffffffffffffffffffff16610f4e61146e565b73ffffffffffffffffffffffffffffffffffffffff1614610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b90613569565b60405180910390fd5b6000610fae61146e565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fd1906133f0565b60006040518083038185875af1925050503d806000811461100e576040519150601f19603f3d011682016040523d82523d6000602084013e611013565b606091505b505090508061102157600080fd5b50565b61103f83838360405180602001604052806000815250611b3f565b505050565b61104c61205d565b73ffffffffffffffffffffffffffffffffffffffff1661106a61146e565b73ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790613569565b60405180910390fd5b80600c8190555050565b6000600d54905090565b601060019054906101000a900460ff1681565b6110ef61205d565b73ffffffffffffffffffffffffffffffffffffffff1661110d61146e565b73ffffffffffffffffffffffffffffffffffffffff1614611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90613569565b60405180910390fd5b8060099080519060200190611179929190612c66565b5050565b6000600f54905090565b601060009054906101000a900460ff1681565b60006111a5826120c4565b9050919050565b6111b461205d565b73ffffffffffffffffffffffffffffffffffffffff166111d261146e565b73ffffffffffffffffffffffffffffffffffffffff1614611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f90613569565b60405180910390fd5b80600d8190555050565b60008061123e8361257e565b1415611276576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112cf61205d565b73ffffffffffffffffffffffffffffffffffffffff166112ed61146e565b73ffffffffffffffffffffffffffffffffffffffff1614611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a90613569565b60405180910390fd5b80600f8190555050565b61135561205d565b73ffffffffffffffffffffffffffffffffffffffff1661137361146e565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090613569565b60405180910390fd5b6113d36000612588565b565b6113dd61205d565b73ffffffffffffffffffffffffffffffffffffffff166113fb61146e565b73ffffffffffffffffffffffffffffffffffffffff1614611451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144890613569565b60405180910390fd5b6000601060016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114a790613899565b80601f01602080910402602001604051908101604052809291908181526020018280546114d390613899565b80156115205780601f106114f557610100808354040283529160200191611520565b820191906000526020600020905b81548152906001019060200180831161150357829003601f168201915b5050505050905090565b601060009054906101000a900460ff161561157a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157190613509565b60405180910390fd5b6000611584610e81565b9050600082116115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c0906134c9565b60405180910390fd5b600e5482111561160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590613549565b60405180910390fd5b600d54828261161d91906136ce565b111561165e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165590613529565b60405180910390fd5b61166661146e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611881576000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f5483826116eb91906136ce565b111561172c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611723906135a9565b60405180910390fd5b600281106117895782600c546117429190613755565b341015611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b906134e9565b60405180910390fd5b61187f565b6000811480156117995750600283115b156118055760006002846117ad91906137af565b905080600c546117bd9190613755565b3410156117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f6906134e9565b60405180910390fd5b5061187e565b6001811480156118155750600183115b1561187d57600060018461182991906137af565b905080600c546118399190613755565b34101561187b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611872906134e9565b60405180910390fd5b505b5b5b505b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118d091906136ce565b925050819055506118e1338361264e565b5050565b6118ed612192565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611952576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061195f612192565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a0c612192565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a51919061346c565b60405180910390a35050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611aae61205d565b73ffffffffffffffffffffffffffffffffffffffff16611acc61146e565b73ffffffffffffffffffffffffffffffffffffffff1614611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990613569565b60405180910390fd5b6001601060016101000a81548160ff021916908315150217905550565b611b4a8484846121b6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bac57611b758484848461266c565b611bab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f5481565b600b8054611bc590613899565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf190613899565b8015611c3e5780601f10611c1357610100808354040283529160200191611c3e565b820191906000526020600020905b815481529060010190602001808311611c2157829003601f168201915b505050505081565b6060611c5182612065565b611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8790613589565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611d3e57600a8054611cb990613899565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce590613899565b8015611d325780601f10611d0757610100808354040283529160200191611d32565b820191906000526020600020905b815481529060010190602001808311611d1557829003601f168201915b50505050509050611d9a565b6000611d486127cc565b90506000815111611d685760405180602001604052806000815250611d96565b80611d728461285e565b600b604051602001611d86939291906133bf565b6040516020818303038152906040525b9150505b919050565b600d5481565b611dad61205d565b73ffffffffffffffffffffffffffffffffffffffff16611dcb61146e565b73ffffffffffffffffffffffffffffffffffffffff1614611e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1890613569565b60405180910390fd5b80600b9080519060200190611e37929190612c66565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ed761205d565b73ffffffffffffffffffffffffffffffffffffffff16611ef561146e565b73ffffffffffffffffffffffffffffffffffffffff1614611f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4290613569565b60405180910390fd5b80600a9080519060200190611f61929190612c66565b5050565b611f6d61205d565b73ffffffffffffffffffffffffffffffffffffffff16611f8b61146e565b73ffffffffffffffffffffffffffffffffffffffff1614611fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd890613569565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612051576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612048906134a9565b60405180910390fd5b61205a81612588565b50565b600033905090565b6000816120706121ad565b1115801561207f575060005482105b80156120bd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806120d36121ad565b1161215b5760005481101561215a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612158575b600081141561214e576004600083600190039350838152602001908152602001600020549050612123565b809250505061218d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006121a46121ad565b60005403905090565b60006001905090565b60006121c1826120c4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612228576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16612281612192565b73ffffffffffffffffffffffffffffffffffffffff1614806122b057506122af866122aa612192565b611e3b565b5b806122ed57506122be612192565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080612326576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006123318661257e565b1415612369576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61237686868660016129bf565b60006123818361257e565b146123bd576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6124848761257e565b1717600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561250e57600060018501905060006004600083815260200190815260200160002054141561250c57600054811461250b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461257686868660016129c5565b505050505050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126688282604051806020016040528060008152506129cb565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612692612192565b8786866040518563ffffffff1660e01b81526004016126b49493929190613420565b602060405180830381600087803b1580156126ce57600080fd5b505af19250505080156126ff57506040513d601f19601f820116820180604052508101906126fc919061306f565b60015b612779573d806000811461272f576040519150601f19603f3d011682016040523d82523d6000602084013e612734565b606091505b50600081511415612771576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546127db90613899565b80601f016020809104026020016040519081016040528092919081815260200182805461280790613899565b80156128545780601f1061282957610100808354040283529160200191612854565b820191906000526020600020905b81548152906001019060200180831161283757829003601f168201915b5050505050905090565b606060008214156128a6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129ba565b600082905060005b600082146128d85780806128c1906138fc565b915050600a826128d19190613724565b91506128ae565b60008167ffffffffffffffff8111156128f4576128f3613a32565b5b6040519080825280601f01601f1916602001820160405280156129265781602001600182028036833780820191505090505b5090505b600085146129b35760018261293f91906137af565b9150600a8561294e9190613945565b603061295a91906136ce565b60f81b8183815181106129705761296f613a03565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129ac9190613724565b945061292a565b8093505050505b919050565b50505050565b50505050565b60008054905060006129dc8561257e565b1415612a14576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612a4f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a5c60008583866129bf565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612ac160018514612c5c565b901b60a042901b612ad18661257e565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612bd5575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b85600087848060010195508761266c565b612bbb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612b16578260005414612bd057600080fd5b612c40565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612bd6575b816000819055505050612c5660008583866129c5565b50505050565b6000819050919050565b828054612c7290613899565b90600052602060002090601f016020900481019282612c945760008555612cdb565b82601f10612cad57805160ff1916838001178555612cdb565b82800160010185558215612cdb579182015b82811115612cda578251825591602001919060010190612cbf565b5b509050612ce89190612cec565b5090565b5b80821115612d05576000816000905550600101612ced565b5090565b6000612d1c612d1784613609565b6135e4565b905082815260208101848484011115612d3857612d37613a66565b5b612d43848285613857565b509392505050565b6000612d5e612d598461363a565b6135e4565b905082815260208101848484011115612d7a57612d79613a66565b5b612d85848285613857565b509392505050565b600081359050612d9c81613c6c565b92915050565b600081359050612db181613c83565b92915050565b600081359050612dc681613c9a565b92915050565b600081519050612ddb81613c9a565b92915050565b600082601f830112612df657612df5613a61565b5b8135612e06848260208601612d09565b91505092915050565b600082601f830112612e2457612e23613a61565b5b8135612e34848260208601612d4b565b91505092915050565b600081359050612e4c81613cb1565b92915050565b600060208284031215612e6857612e67613a70565b5b6000612e7684828501612d8d565b91505092915050565b60008060408385031215612e9657612e95613a70565b5b6000612ea485828601612d8d565b9250506020612eb585828601612d8d565b9150509250929050565b600080600060608486031215612ed857612ed7613a70565b5b6000612ee686828701612d8d565b9350506020612ef786828701612d8d565b9250506040612f0886828701612e3d565b9150509250925092565b60008060008060808587031215612f2c57612f2b613a70565b5b6000612f3a87828801612d8d565b9450506020612f4b87828801612d8d565b9350506040612f5c87828801612e3d565b925050606085013567ffffffffffffffff811115612f7d57612f7c613a6b565b5b612f8987828801612de1565b91505092959194509250565b60008060408385031215612fac57612fab613a70565b5b6000612fba85828601612d8d565b9250506020612fcb85828601612da2565b9150509250929050565b60008060408385031215612fec57612feb613a70565b5b6000612ffa85828601612d8d565b925050602061300b85828601612e3d565b9150509250929050565b60006020828403121561302b5761302a613a70565b5b600061303984828501612da2565b91505092915050565b60006020828403121561305857613057613a70565b5b600061306684828501612db7565b91505092915050565b60006020828403121561308557613084613a70565b5b600061309384828501612dcc565b91505092915050565b6000602082840312156130b2576130b1613a70565b5b600082013567ffffffffffffffff8111156130d0576130cf613a6b565b5b6130dc84828501612e0f565b91505092915050565b6000602082840312156130fb576130fa613a70565b5b600061310984828501612e3d565b91505092915050565b61311b816137e3565b82525050565b61312a816137f5565b82525050565b600061313b82613680565b6131458185613696565b9350613155818560208601613866565b61315e81613a75565b840191505092915050565b60006131748261368b565b61317e81856136b2565b935061318e818560208601613866565b61319781613a75565b840191505092915050565b60006131ad8261368b565b6131b781856136c3565b93506131c7818560208601613866565b80840191505092915050565b600081546131e081613899565b6131ea81866136c3565b94506001821660008114613205576001811461321657613249565b60ff19831686528186019350613249565b61321f8561366b565b60005b8381101561324157815481890152600182019150602081019050613222565b838801955050505b50505092915050565b600061325f6026836136b2565b915061326a82613a86565b604082019050919050565b6000613282601b836136b2565b915061328d82613ad5565b602082019050919050565b60006132a56012836136b2565b91506132b082613afe565b602082019050919050565b60006132c86019836136b2565b91506132d382613b27565b602082019050919050565b60006132eb6016836136b2565b91506132f682613b50565b602082019050919050565b600061330e6024836136b2565b915061331982613b79565b604082019050919050565b60006133316020836136b2565b915061333c82613bc8565b602082019050919050565b6000613354602f836136b2565b915061335f82613bf1565b604082019050919050565b6000613377601c836136b2565b915061338282613c40565b602082019050919050565b600061339a6000836136a7565b91506133a582613c69565b600082019050919050565b6133b98161384d565b82525050565b60006133cb82866131a2565b91506133d782856131a2565b91506133e382846131d3565b9150819050949350505050565b60006133fb8261338d565b9150819050919050565b600060208201905061341a6000830184613112565b92915050565b60006080820190506134356000830187613112565b6134426020830186613112565b61344f60408301856133b0565b81810360608301526134618184613130565b905095945050505050565b60006020820190506134816000830184613121565b92915050565b600060208201905081810360008301526134a18184613169565b905092915050565b600060208201905081810360008301526134c281613252565b9050919050565b600060208201905081810360008301526134e281613275565b9050919050565b6000602082019050818103600083015261350281613298565b9050919050565b60006020820190508181036000830152613522816132bb565b9050919050565b60006020820190508181036000830152613542816132de565b9050919050565b6000602082019050818103600083015261356281613301565b9050919050565b6000602082019050818103600083015261358281613324565b9050919050565b600060208201905081810360008301526135a281613347565b9050919050565b600060208201905081810360008301526135c28161336a565b9050919050565b60006020820190506135de60008301846133b0565b92915050565b60006135ee6135ff565b90506135fa82826138cb565b919050565b6000604051905090565b600067ffffffffffffffff82111561362457613623613a32565b5b61362d82613a75565b9050602081019050919050565b600067ffffffffffffffff82111561365557613654613a32565b5b61365e82613a75565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136d98261384d565b91506136e48361384d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561371957613718613976565b5b828201905092915050565b600061372f8261384d565b915061373a8361384d565b92508261374a576137496139a5565b5b828204905092915050565b60006137608261384d565b915061376b8361384d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137a4576137a3613976565b5b828202905092915050565b60006137ba8261384d565b91506137c58361384d565b9250828210156137d8576137d7613976565b5b828203905092915050565b60006137ee8261382d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613884578082015181840152602081019050613869565b83811115613893576000848401525b50505050565b600060028204905060018216806138b157607f821691505b602082108114156138c5576138c46139d4565b5b50919050565b6138d482613a75565b810181811067ffffffffffffffff821117156138f3576138f2613a32565b5b80604052505050565b60006139078261384d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561393a57613939613976565b5b600182019050919050565b60006139508261384d565b915061395b8361384d565b92508261396b5761396a6139a5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e65656420746f204d696e74206174204c656173742031204e46540000000000600082015250565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b7f54686520436f6e74726163742069732050617573656421212100000000000000600082015250565b7f4d6178204e4654204c696d697420457863656564656400000000000000000000600082015250565b7f4d6178204d696e7420416d6f756e74205065722053657373696f6e204578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178204e465420506572204164647265737320457863656564656400000000600082015250565b50565b613c75816137e3565b8114613c8057600080fd5b50565b613c8c816137f5565b8114613c9757600080fd5b50565b613ca381613801565b8114613cae57600080fd5b50565b613cba8161384d565b8114613cc557600080fd5b5056fea2646970667358221220e388f4c9c3f486a3215b9c3c5bed97159f7745c7b2a9c0b45f540735098b331d64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53356f744a43553278726461374b677965323551675858663963784c4a43706a6a724e447954475a4e4743772f000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f516d59554c72383668396f55323671645835554e32344734345977325a6b64523952374e766f4b416f42466236332f68696464656e2e6a736f6e2f000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c80635c975abb11610144578063a2801f57116100b6578063c87b56dd1161007a578063c87b56dd146108dc578063d5abeb0114610919578063da3ef23f14610944578063e985e9c51461096d578063f2c4ce1e146109aa578063f2fde38b146109d357610267565b8063a2801f5714610809578063a475b5dd14610846578063b88d4fde1461085d578063ba7d2c7614610886578063c6682862146108b157610267565b8063715018a611610108578063715018a6146107405780637d59946f146107575780638da5cb5b1461076e57806395d89b4114610799578063a0712d68146107c4578063a22cb465146107e057610267565b80635c975abb146106495780636352211e146106745780636f8b44b0146106b157806370a08231146106da578063711b9e921461071757610267565b80631d9cd448116101dd57806342842e0e116101a157806342842e0e1461054d57806344a0d68a146105765780634c0f38c21461059f57806351830227146105ca57806355f804b3146105f557806356bda4a21461061e57610267565b80631d9cd44814610475578063239c70ae146104b257806323b872dd146104dd5780632f54bf6e146105065780633ccfd60b1461054357610267565b8063095ea7b31161022f578063095ea7b3146103635780630ca1c5c91461038c57806313c738f0146103b757806313faede6146103e257806318160ddd1461040d57806318cae2691461043857610267565b806301ffc9a71461026c57806302329a29146102a957806306fdde03146102d2578063081812fc146102fd578063088a4ed01461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613042565b6109fc565b6040516102a0919061346c565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190613015565b610a8e565b005b3480156102de57600080fd5b506102e7610b27565b6040516102f49190613487565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f91906130e5565b610bb9565b6040516103319190613405565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906130e5565b610c35565b005b34801561036f57600080fd5b5061038a60048036038101906103859190612fd5565b610cbb565b005b34801561039857600080fd5b506103a1610e62565b6040516103ae91906135c9565b60405180910390f35b3480156103c357600080fd5b506103cc610e71565b6040516103d991906135c9565b60405180910390f35b3480156103ee57600080fd5b506103f7610e7b565b60405161040491906135c9565b60405180910390f35b34801561041957600080fd5b50610422610e81565b60405161042f91906135c9565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190612e52565b610e98565b60405161046c91906135c9565b60405180910390f35b34801561048157600080fd5b5061049c60048036038101906104979190612e52565b610eb0565b6040516104a991906135c9565b60405180910390f35b3480156104be57600080fd5b506104c7610ec2565b6040516104d491906135c9565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190612ebf565b610ec8565b005b34801561051257600080fd5b5061052d60048036038101906105289190612e52565b610ed8565b60405161053a919061346c565b60405180910390f35b61054b610f28565b005b34801561055957600080fd5b50610574600480360381019061056f9190612ebf565b611024565b005b34801561058257600080fd5b5061059d600480360381019061059891906130e5565b611044565b005b3480156105ab57600080fd5b506105b46110ca565b6040516105c191906135c9565b60405180910390f35b3480156105d657600080fd5b506105df6110d4565b6040516105ec919061346c565b60405180910390f35b34801561060157600080fd5b5061061c6004803603810190610617919061309c565b6110e7565b005b34801561062a57600080fd5b5061063361117d565b60405161064091906135c9565b60405180910390f35b34801561065557600080fd5b5061065e611187565b60405161066b919061346c565b60405180910390f35b34801561068057600080fd5b5061069b600480360381019061069691906130e5565b61119a565b6040516106a89190613405565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d391906130e5565b6111ac565b005b3480156106e657600080fd5b5061070160048036038101906106fc9190612e52565b611232565b60405161070e91906135c9565b60405180910390f35b34801561072357600080fd5b5061073e600480360381019061073991906130e5565b6112c7565b005b34801561074c57600080fd5b5061075561134d565b005b34801561076357600080fd5b5061076c6113d5565b005b34801561077a57600080fd5b5061078361146e565b6040516107909190613405565b60405180910390f35b3480156107a557600080fd5b506107ae611498565b6040516107bb9190613487565b60405180910390f35b6107de60048036038101906107d991906130e5565b61152a565b005b3480156107ec57600080fd5b5061080760048036038101906108029190612f95565b6118e5565b005b34801561081557600080fd5b50610830600480360381019061082b9190612e52565b611a5d565b60405161083d91906135c9565b60405180910390f35b34801561085257600080fd5b5061085b611aa6565b005b34801561086957600080fd5b50610884600480360381019061087f9190612f12565b611b3f565b005b34801561089257600080fd5b5061089b611bb2565b6040516108a891906135c9565b60405180910390f35b3480156108bd57600080fd5b506108c6611bb8565b6040516108d39190613487565b60405180910390f35b3480156108e857600080fd5b5061090360048036038101906108fe91906130e5565b611c46565b6040516109109190613487565b60405180910390f35b34801561092557600080fd5b5061092e611d9f565b60405161093b91906135c9565b60405180910390f35b34801561095057600080fd5b5061096b6004803603810190610966919061309c565b611da5565b005b34801561097957600080fd5b50610994600480360381019061098f9190612e7f565b611e3b565b6040516109a1919061346c565b60405180910390f35b3480156109b657600080fd5b506109d160048036038101906109cc919061309c565b611ecf565b005b3480156109df57600080fd5b506109fa60048036038101906109f59190612e52565b611f65565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a875750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a9661205d565b73ffffffffffffffffffffffffffffffffffffffff16610ab461146e565b73ffffffffffffffffffffffffffffffffffffffff1614610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0190613569565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060028054610b3690613899565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6290613899565b8015610baf5780601f10610b8457610100808354040283529160200191610baf565b820191906000526020600020905b815481529060010190602001808311610b9257829003601f168201915b5050505050905090565b6000610bc482612065565b610bfa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c3d61205d565b73ffffffffffffffffffffffffffffffffffffffff16610c5b61146e565b73ffffffffffffffffffffffffffffffffffffffff1614610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890613569565b60405180910390fd5b80600e8190555050565b6000610cc6826120c4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d4d612192565b73ffffffffffffffffffffffffffffffffffffffff1614610db057610d7981610d74612192565b611e3b565b610daf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610e6c61219a565b905090565b6000600c54905090565b600c5481565b6000610e8b6121ad565b6001546000540303905090565b60116020528060005260406000206000915090505481565b6000610ebb82611232565b9050919050565b600e5481565b610ed38383836121b6565b505050565b6000610ee261146e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1e5760019050610f23565b600090505b919050565b610f3061205d565b73ffffffffffffffffffffffffffffffffffffffff16610f4e61146e565b73ffffffffffffffffffffffffffffffffffffffff1614610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b90613569565b60405180910390fd5b6000610fae61146e565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fd1906133f0565b60006040518083038185875af1925050503d806000811461100e576040519150601f19603f3d011682016040523d82523d6000602084013e611013565b606091505b505090508061102157600080fd5b50565b61103f83838360405180602001604052806000815250611b3f565b505050565b61104c61205d565b73ffffffffffffffffffffffffffffffffffffffff1661106a61146e565b73ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790613569565b60405180910390fd5b80600c8190555050565b6000600d54905090565b601060019054906101000a900460ff1681565b6110ef61205d565b73ffffffffffffffffffffffffffffffffffffffff1661110d61146e565b73ffffffffffffffffffffffffffffffffffffffff1614611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90613569565b60405180910390fd5b8060099080519060200190611179929190612c66565b5050565b6000600f54905090565b601060009054906101000a900460ff1681565b60006111a5826120c4565b9050919050565b6111b461205d565b73ffffffffffffffffffffffffffffffffffffffff166111d261146e565b73ffffffffffffffffffffffffffffffffffffffff1614611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f90613569565b60405180910390fd5b80600d8190555050565b60008061123e8361257e565b1415611276576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112cf61205d565b73ffffffffffffffffffffffffffffffffffffffff166112ed61146e565b73ffffffffffffffffffffffffffffffffffffffff1614611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a90613569565b60405180910390fd5b80600f8190555050565b61135561205d565b73ffffffffffffffffffffffffffffffffffffffff1661137361146e565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090613569565b60405180910390fd5b6113d36000612588565b565b6113dd61205d565b73ffffffffffffffffffffffffffffffffffffffff166113fb61146e565b73ffffffffffffffffffffffffffffffffffffffff1614611451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144890613569565b60405180910390fd5b6000601060016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114a790613899565b80601f01602080910402602001604051908101604052809291908181526020018280546114d390613899565b80156115205780601f106114f557610100808354040283529160200191611520565b820191906000526020600020905b81548152906001019060200180831161150357829003601f168201915b5050505050905090565b601060009054906101000a900460ff161561157a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157190613509565b60405180910390fd5b6000611584610e81565b9050600082116115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c0906134c9565b60405180910390fd5b600e5482111561160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590613549565b60405180910390fd5b600d54828261161d91906136ce565b111561165e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165590613529565b60405180910390fd5b61166661146e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611881576000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f5483826116eb91906136ce565b111561172c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611723906135a9565b60405180910390fd5b600281106117895782600c546117429190613755565b341015611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b906134e9565b60405180910390fd5b61187f565b6000811480156117995750600283115b156118055760006002846117ad91906137af565b905080600c546117bd9190613755565b3410156117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f6906134e9565b60405180910390fd5b5061187e565b6001811480156118155750600183115b1561187d57600060018461182991906137af565b905080600c546118399190613755565b34101561187b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611872906134e9565b60405180910390fd5b505b5b5b505b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118d091906136ce565b925050819055506118e1338361264e565b5050565b6118ed612192565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611952576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061195f612192565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a0c612192565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a51919061346c565b60405180910390a35050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611aae61205d565b73ffffffffffffffffffffffffffffffffffffffff16611acc61146e565b73ffffffffffffffffffffffffffffffffffffffff1614611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990613569565b60405180910390fd5b6001601060016101000a81548160ff021916908315150217905550565b611b4a8484846121b6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bac57611b758484848461266c565b611bab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f5481565b600b8054611bc590613899565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf190613899565b8015611c3e5780601f10611c1357610100808354040283529160200191611c3e565b820191906000526020600020905b815481529060010190602001808311611c2157829003601f168201915b505050505081565b6060611c5182612065565b611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8790613589565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611d3e57600a8054611cb990613899565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce590613899565b8015611d325780601f10611d0757610100808354040283529160200191611d32565b820191906000526020600020905b815481529060010190602001808311611d1557829003601f168201915b50505050509050611d9a565b6000611d486127cc565b90506000815111611d685760405180602001604052806000815250611d96565b80611d728461285e565b600b604051602001611d86939291906133bf565b6040516020818303038152906040525b9150505b919050565b600d5481565b611dad61205d565b73ffffffffffffffffffffffffffffffffffffffff16611dcb61146e565b73ffffffffffffffffffffffffffffffffffffffff1614611e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1890613569565b60405180910390fd5b80600b9080519060200190611e37929190612c66565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ed761205d565b73ffffffffffffffffffffffffffffffffffffffff16611ef561146e565b73ffffffffffffffffffffffffffffffffffffffff1614611f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4290613569565b60405180910390fd5b80600a9080519060200190611f61929190612c66565b5050565b611f6d61205d565b73ffffffffffffffffffffffffffffffffffffffff16611f8b61146e565b73ffffffffffffffffffffffffffffffffffffffff1614611fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd890613569565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612051576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612048906134a9565b60405180910390fd5b61205a81612588565b50565b600033905090565b6000816120706121ad565b1115801561207f575060005482105b80156120bd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806120d36121ad565b1161215b5760005481101561215a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612158575b600081141561214e576004600083600190039350838152602001908152602001600020549050612123565b809250505061218d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006121a46121ad565b60005403905090565b60006001905090565b60006121c1826120c4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612228576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16612281612192565b73ffffffffffffffffffffffffffffffffffffffff1614806122b057506122af866122aa612192565b611e3b565b5b806122ed57506122be612192565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080612326576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006123318661257e565b1415612369576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61237686868660016129bf565b60006123818361257e565b146123bd576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6124848761257e565b1717600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561250e57600060018501905060006004600083815260200190815260200160002054141561250c57600054811461250b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461257686868660016129c5565b505050505050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126688282604051806020016040528060008152506129cb565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612692612192565b8786866040518563ffffffff1660e01b81526004016126b49493929190613420565b602060405180830381600087803b1580156126ce57600080fd5b505af19250505080156126ff57506040513d601f19601f820116820180604052508101906126fc919061306f565b60015b612779573d806000811461272f576040519150601f19603f3d011682016040523d82523d6000602084013e612734565b606091505b50600081511415612771576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546127db90613899565b80601f016020809104026020016040519081016040528092919081815260200182805461280790613899565b80156128545780601f1061282957610100808354040283529160200191612854565b820191906000526020600020905b81548152906001019060200180831161283757829003601f168201915b5050505050905090565b606060008214156128a6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129ba565b600082905060005b600082146128d85780806128c1906138fc565b915050600a826128d19190613724565b91506128ae565b60008167ffffffffffffffff8111156128f4576128f3613a32565b5b6040519080825280601f01601f1916602001820160405280156129265781602001600182028036833780820191505090505b5090505b600085146129b35760018261293f91906137af565b9150600a8561294e9190613945565b603061295a91906136ce565b60f81b8183815181106129705761296f613a03565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129ac9190613724565b945061292a565b8093505050505b919050565b50505050565b50505050565b60008054905060006129dc8561257e565b1415612a14576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612a4f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a5c60008583866129bf565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612ac160018514612c5c565b901b60a042901b612ad18661257e565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612bd5575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b85600087848060010195508761266c565b612bbb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612b16578260005414612bd057600080fd5b612c40565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612bd6575b816000819055505050612c5660008583866129c5565b50505050565b6000819050919050565b828054612c7290613899565b90600052602060002090601f016020900481019282612c945760008555612cdb565b82601f10612cad57805160ff1916838001178555612cdb565b82800160010185558215612cdb579182015b82811115612cda578251825591602001919060010190612cbf565b5b509050612ce89190612cec565b5090565b5b80821115612d05576000816000905550600101612ced565b5090565b6000612d1c612d1784613609565b6135e4565b905082815260208101848484011115612d3857612d37613a66565b5b612d43848285613857565b509392505050565b6000612d5e612d598461363a565b6135e4565b905082815260208101848484011115612d7a57612d79613a66565b5b612d85848285613857565b509392505050565b600081359050612d9c81613c6c565b92915050565b600081359050612db181613c83565b92915050565b600081359050612dc681613c9a565b92915050565b600081519050612ddb81613c9a565b92915050565b600082601f830112612df657612df5613a61565b5b8135612e06848260208601612d09565b91505092915050565b600082601f830112612e2457612e23613a61565b5b8135612e34848260208601612d4b565b91505092915050565b600081359050612e4c81613cb1565b92915050565b600060208284031215612e6857612e67613a70565b5b6000612e7684828501612d8d565b91505092915050565b60008060408385031215612e9657612e95613a70565b5b6000612ea485828601612d8d565b9250506020612eb585828601612d8d565b9150509250929050565b600080600060608486031215612ed857612ed7613a70565b5b6000612ee686828701612d8d565b9350506020612ef786828701612d8d565b9250506040612f0886828701612e3d565b9150509250925092565b60008060008060808587031215612f2c57612f2b613a70565b5b6000612f3a87828801612d8d565b9450506020612f4b87828801612d8d565b9350506040612f5c87828801612e3d565b925050606085013567ffffffffffffffff811115612f7d57612f7c613a6b565b5b612f8987828801612de1565b91505092959194509250565b60008060408385031215612fac57612fab613a70565b5b6000612fba85828601612d8d565b9250506020612fcb85828601612da2565b9150509250929050565b60008060408385031215612fec57612feb613a70565b5b6000612ffa85828601612d8d565b925050602061300b85828601612e3d565b9150509250929050565b60006020828403121561302b5761302a613a70565b5b600061303984828501612da2565b91505092915050565b60006020828403121561305857613057613a70565b5b600061306684828501612db7565b91505092915050565b60006020828403121561308557613084613a70565b5b600061309384828501612dcc565b91505092915050565b6000602082840312156130b2576130b1613a70565b5b600082013567ffffffffffffffff8111156130d0576130cf613a6b565b5b6130dc84828501612e0f565b91505092915050565b6000602082840312156130fb576130fa613a70565b5b600061310984828501612e3d565b91505092915050565b61311b816137e3565b82525050565b61312a816137f5565b82525050565b600061313b82613680565b6131458185613696565b9350613155818560208601613866565b61315e81613a75565b840191505092915050565b60006131748261368b565b61317e81856136b2565b935061318e818560208601613866565b61319781613a75565b840191505092915050565b60006131ad8261368b565b6131b781856136c3565b93506131c7818560208601613866565b80840191505092915050565b600081546131e081613899565b6131ea81866136c3565b94506001821660008114613205576001811461321657613249565b60ff19831686528186019350613249565b61321f8561366b565b60005b8381101561324157815481890152600182019150602081019050613222565b838801955050505b50505092915050565b600061325f6026836136b2565b915061326a82613a86565b604082019050919050565b6000613282601b836136b2565b915061328d82613ad5565b602082019050919050565b60006132a56012836136b2565b91506132b082613afe565b602082019050919050565b60006132c86019836136b2565b91506132d382613b27565b602082019050919050565b60006132eb6016836136b2565b91506132f682613b50565b602082019050919050565b600061330e6024836136b2565b915061331982613b79565b604082019050919050565b60006133316020836136b2565b915061333c82613bc8565b602082019050919050565b6000613354602f836136b2565b915061335f82613bf1565b604082019050919050565b6000613377601c836136b2565b915061338282613c40565b602082019050919050565b600061339a6000836136a7565b91506133a582613c69565b600082019050919050565b6133b98161384d565b82525050565b60006133cb82866131a2565b91506133d782856131a2565b91506133e382846131d3565b9150819050949350505050565b60006133fb8261338d565b9150819050919050565b600060208201905061341a6000830184613112565b92915050565b60006080820190506134356000830187613112565b6134426020830186613112565b61344f60408301856133b0565b81810360608301526134618184613130565b905095945050505050565b60006020820190506134816000830184613121565b92915050565b600060208201905081810360008301526134a18184613169565b905092915050565b600060208201905081810360008301526134c281613252565b9050919050565b600060208201905081810360008301526134e281613275565b9050919050565b6000602082019050818103600083015261350281613298565b9050919050565b60006020820190508181036000830152613522816132bb565b9050919050565b60006020820190508181036000830152613542816132de565b9050919050565b6000602082019050818103600083015261356281613301565b9050919050565b6000602082019050818103600083015261358281613324565b9050919050565b600060208201905081810360008301526135a281613347565b9050919050565b600060208201905081810360008301526135c28161336a565b9050919050565b60006020820190506135de60008301846133b0565b92915050565b60006135ee6135ff565b90506135fa82826138cb565b919050565b6000604051905090565b600067ffffffffffffffff82111561362457613623613a32565b5b61362d82613a75565b9050602081019050919050565b600067ffffffffffffffff82111561365557613654613a32565b5b61365e82613a75565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136d98261384d565b91506136e48361384d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561371957613718613976565b5b828201905092915050565b600061372f8261384d565b915061373a8361384d565b92508261374a576137496139a5565b5b828204905092915050565b60006137608261384d565b915061376b8361384d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137a4576137a3613976565b5b828202905092915050565b60006137ba8261384d565b91506137c58361384d565b9250828210156137d8576137d7613976565b5b828203905092915050565b60006137ee8261382d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613884578082015181840152602081019050613869565b83811115613893576000848401525b50505050565b600060028204905060018216806138b157607f821691505b602082108114156138c5576138c46139d4565b5b50919050565b6138d482613a75565b810181811067ffffffffffffffff821117156138f3576138f2613a32565b5b80604052505050565b60006139078261384d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561393a57613939613976565b5b600182019050919050565b60006139508261384d565b915061395b8361384d565b92508261396b5761396a6139a5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e65656420746f204d696e74206174204c656173742031204e46540000000000600082015250565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b7f54686520436f6e74726163742069732050617573656421212100000000000000600082015250565b7f4d6178204e4654204c696d697420457863656564656400000000000000000000600082015250565b7f4d6178204d696e7420416d6f756e74205065722053657373696f6e204578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178204e465420506572204164647265737320457863656564656400000000600082015250565b50565b613c75816137e3565b8114613c8057600080fd5b50565b613c8c816137f5565b8114613c9757600080fd5b50565b613ca381613801565b8114613cae57600080fd5b50565b613cba8161384d565b8114613cc557600080fd5b5056fea2646970667358221220e388f4c9c3f486a3215b9c3c5bed97159f7745c7b2a9c0b45f540735098b331d64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53356f744a43553278726461374b677965323551675858663963784c4a43706a6a724e447954475a4e4743772f000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f516d59554c72383668396f55323671645835554e32344734345977325a6b64523952374e766f4b416f42466236332f68696464656e2e6a736f6e2f000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmS5otJCU2xrda7Kgye25QgXXf9cxLJCpjjrNDyTGZNGCw/
Arg [1] : _initNotRevealUri (string): ipfs://QmYULr86h9oU26qdX5UN24G44Yw2ZkdR9R7NvoKAoBFb63/hidden.json/

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d53356f744a43553278726461374b677965323551675858
Arg [4] : 663963784c4a43706a6a724e447954475a4e4743772f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [6] : 697066733a2f2f516d59554c72383668396f55323671645835554e3234473434
Arg [7] : 5977325a6b64523952374e766f4b416f42466236332f68696464656e2e6a736f
Arg [8] : 6e2f000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

1443:5107:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4880:607:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5183:73:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9778:98:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11779:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5687:116:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11255:463:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4289:86:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4189:73;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1613:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3963:309:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1827:57:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4062:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1684:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12639:164:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4616:145:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6380:168;;;:::i;:::-;;12869:179:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5450:80:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4400:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1794:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6112:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4504:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1764:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9574:142:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5558:100:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5546:231:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5838:94:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1620:92:3;;;;;;;;;;;;;:::i;:::-;;5360:65:4;;;;;;;;;;;;;:::i;:::-;;988:85:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9940:102:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2318:1209:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12046:303:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4787:118:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5276:61;;;;;;;;;;;;;:::i;:::-;;13114:385:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1721:38:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1571:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3550:472;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1649:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5964:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12415:162:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6242:120:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1861:223:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4880:607:1;4965:4;5275:10;5260:25;;:11;:25;;;;:101;;;;5351:10;5336:25;;:11;:25;;;;5260:101;:177;;;;5427:10;5412:25;;:11;:25;;;;5260:177;5241:196;;4880:607;;;:::o;5183:73:4:-;1211:12:3;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5245:6:4::1;5236;;:15;;;;;;;;;;;;;;;;;;5183:73:::0;:::o;9778:98:1:-;9832:13;9864:5;9857:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9778:98;:::o;11779:200::-;11847:7;11871:16;11879:7;11871;:16::i;:::-;11866:64;;11896:34;;;;;;;;;;;;;;11866:64;11948:15;:24;11964:7;11948:24;;;;;;;;;;;;;;;;;;;;;11941:31;;11779:200;;;:::o;5687:116:4:-;1211:12:3;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5781:17:4::1;5765:13;:33;;;;5687:116:::0;:::o;11255:463:1:-;11327:13;11359:27;11378:7;11359:18;:27::i;:::-;11327:61;;11408:5;11402:11;;:2;:11;;;11398:48;;;11422:24;;;;;;;;;;;;;;11398:48;11484:5;11461:28;;:19;:17;:19::i;:::-;:28;;;11457:172;;11508:44;11525:5;11532:19;:17;:19::i;:::-;11508:16;:44::i;:::-;11503:126;;11579:35;;;;;;;;;;;;;;11503:126;11457:172;11666:2;11639:15;:24;11655:7;11639:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11703:7;11699:2;11683:28;;11692:5;11683:28;;;;;;;;;;;;11317:401;11255:463;;:::o;4289:86:4:-;4336:4;4356:14;:12;:14::i;:::-;4349:21;;4289:86;:::o;4189:73::-;4233:4;4253;;4246:11;;4189:73;:::o;1613:32::-;;;;:::o;3963:309:1:-;4016:7;4240:15;:13;:15::i;:::-;4225:12;;4209:13;;:28;:46;4202:53;;3963:309;:::o;1827:57:4:-;;;;;;;;;;;;;;;;;:::o;4062:103::-;4122:4;4142:18;4152:7;4142:9;:18::i;:::-;4135:25;;4062:103;;;:::o;1684:33::-;;;;:::o;12639:164:1:-;12768:28;12778:4;12784:2;12788:7;12768:9;:28::i;:::-;12639:164;;;:::o;4616:145:4:-;4673:4;4702:7;:5;:7::i;:::-;4691:18;;:7;:18;;;4686:52;;;4727:4;4720:11;;;;4686:52;4751:5;4744:12;;4616:145;;;;:::o;6380:168::-;1211:12:3;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6433:14:4::1;6462:7;:5;:7::i;:::-;6453:23;;6486;6453:64;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6431:86;;;6532:9;6523:20;;;::::0;::::1;;6425:123;6380:168::o:0;12869:179:1:-;13002:39;13019:4;13025:2;13029:7;13002:39;;;;;;;;;;;;:16;:39::i;:::-;12869:179;;;:::o;5450:80:4:-;1211:12:3;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5517:8:4::1;5510:4;:15;;;;5450:80:::0;:::o;4400:79::-;4445:4;4465:9;;4458:16;;4400:79;:::o;1794:28::-;;;;;;;;;;;;;:::o;6112:98::-;1211:12:3;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6194:11:4::1;6184:7;:21;;;;;;;;;;;;:::i;:::-;;6112:98:::0;:::o;4504:88::-;4549:4;4569:18;;4562:25;;4504:88;:::o;1764:26::-;;;;;;;;;;;;;:::o;9574:142:1:-;9638:7;9680:27;9699:7;9680:18;:27::i;:::-;9657:52;;9574:142;;;:::o;5558:100:4:-;1211:12:3;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5640:13:4::1;5628:9;:25;;;;5558:100:::0;:::o;5546:231:1:-;5610:7;5661:1;5633:24;5651:5;5633:17;:24::i;:::-;:29;5629:70;;;5671:28;;;;;;;;;;;;;;5629:70;1017:13;5716:18;:25;5735:5;5716:25;;;;;;;;;;;;;;;;:54;5709:61;;5546:231;;;:::o;5838:94:4:-;1211:12:3;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5921:6:4::1;5900:18;:27;;;;5838:94:::0;:::o;1620:92:3:-;1211:12;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1684:21:::1;1702:1;1684:9;:21::i;:::-;1620:92::o:0;5360:65:4:-;1211:12:3;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5415:5:4::1;5404:8;;:16;;;;;;;;;;;;;;;;;;5360:65::o:0;988:85:3:-;1034:7;1060:6;;;;;;;;;;;1053:13;;988:85;:::o;9940:102:1:-;9996:13;10028:7;10021:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9940:102;:::o;2318:1209:4:-;2386:6;;;;;;;;;;;2385:7;2376:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;2429:14;2446:13;:11;:13::i;:::-;2429:30;;2488:1;2474:11;:15;2465:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;2552:13;;2537:11;:28;;2528:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;2646:9;;2631:11;2622:6;:20;;;;:::i;:::-;:33;;2613:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;2713:7;:5;:7::i;:::-;2699:21;;:10;:21;;;2694:731;;2733:24;2760:20;:34;2782:10;2760:34;;;;;;;;;;;;;;;;2733:61;;2847:18;;2832:11;2813:16;:30;;;;:::i;:::-;:52;;2804:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;2934:1;2914:16;:21;2910:509;;2978:11;2971:4;;:18;;;;:::i;:::-;2958:9;:31;;2949:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;2910:509;;;3075:1;3055:16;:21;:40;;;;;3094:1;3080:11;:15;3055:40;3050:369;;;3109:15;3141:1;3127:11;:15;;;;:::i;:::-;3109:33;;3183:7;3176:4;;:14;;;;:::i;:::-;3163:9;:27;;3154:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;3097:130;3050:369;;;3267:1;3247:16;:21;:40;;;;;3286:1;3272:11;:15;3247:40;3242:177;;;3301:15;3333:1;3319:11;:15;;;;:::i;:::-;3301:33;;3375:7;3368:4;;:14;;;;:::i;:::-;3355:9;:27;;3346:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;3289:130;3242:177;3050:369;2910:509;2723:702;2694:731;3469:11;3431:20;:34;3453:10;3431:34;;;;;;;;;;;;;;;;:49;;;;;;;:::i;:::-;;;;;;;;3486:36;3497:10;3509:11;3486:9;:36::i;:::-;2370:1157;2318:1209;:::o;12046:303:1:-;12156:19;:17;:19::i;:::-;12144:31;;:8;:31;;;12140:61;;;12184:17;;;;;;;;;;;;;;12140:61;12264:8;12212:18;:39;12231:19;:17;:19::i;:::-;12212:39;;;;;;;;;;;;;;;:49;12252:8;12212:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;12323:8;12287:55;;12302:19;:17;:19::i;:::-;12287:55;;;12333:8;12287:55;;;;;;:::i;:::-;;;;;;;;12046:303;;:::o;4787:118:4:-;4849:4;4869:20;:31;4891:7;4869:31;;;;;;;;;;;;;;;;4862:38;;4787:118;;;:::o;5276:61::-;1211:12:3;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5328:4:4::1;5317:8;;:15;;;;;;;;;;;;;;;;;;5276:61::o:0;13114:385:1:-;13275:28;13285:4;13291:2;13295:7;13275:9;:28::i;:::-;13335:1;13317:2;:14;;;:19;13313:180;;13355:56;13386:4;13392:2;13396:7;13405:5;13355:30;:56::i;:::-;13350:143;;13438:40;;;;;;;;;;;;;;13350:143;13313:180;13114:385;;;;:::o;1721:38:4:-;;;;:::o;1571:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3550:472::-;3626:13;3657:18;3666:7;3657;:18::i;:::-;3648:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;3781:5;3769:17;;:8;;;;;;;;;;;:17;;;3764:63;;;3806:14;3799:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3764:63;3837:28;3868:10;:8;:10::i;:::-;3837:41;;3924:1;3898:14;3891:30;:34;:126;;;;;;;;;;;;;;;;;3960:14;3976:18;:7;:16;:18::i;:::-;3996:13;3942:69;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3891:126;3884:133;;;3550:472;;;;:::o;1649:31::-;;;;:::o;5964:122::-;1211:12:3;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6064:17:4::1;6048:13;:33;;;;;;;;;;;;:::i;:::-;;5964:122:::0;:::o;12415:162:1:-;12512:4;12535:18;:25;12554:5;12535:25;;;;;;;;;;;;;;;:35;12561:8;12535:35;;;;;;;;;;;;;;;;;;;;;;;;;12528:42;;12415:162;;;;:::o;6242:120:4:-;1211:12:3;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6342:15:4::1;6325:14;:32;;;;;;;;;;;;:::i;:::-;;6242:120:::0;:::o;1861:223:3:-;1211:12;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1982:1:::1;1962:22;;:8;:22;;;;1941:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;2058:19;2068:8;2058:9;:19::i;:::-;1861:223:::0;:::o;587:96:0:-;640:7;666:10;659:17;;587:96;:::o;13745:268:1:-;13802:4;13856:7;13837:15;:13;:15::i;:::-;:26;;:65;;;;;13889:13;;13879:7;:23;13837:65;:150;;;;;13986:1;1769:8;13939:17;:26;13957:7;13939:26;;;;;;;;;;;;:43;:48;13837:150;13818:169;;13745:268;;;:::o;7151:1105::-;7218:7;7237:12;7252:7;7237:22;;7317:4;7298:15;:13;:15::i;:::-;:23;7294:898;;7350:13;;7343:4;:20;7339:853;;;7387:14;7404:17;:23;7422:4;7404:23;;;;;;;;;;;;7387:40;;7518:1;1769:8;7491:6;:23;:28;7487:687;;;8002:111;8019:1;8009:6;:11;8002:111;;;8061:17;:25;8079:6;;;;;;;8061:25;;;;;;;;;;;;8052:34;;8002:111;;;8145:6;8138:13;;;;;;7487:687;7365:827;7339:853;7294:898;8218:31;;;;;;;;;;;;;;7151:1105;;;;:::o;27649:103::-;27709:7;27735:10;27728:17;;27649:103;:::o;4365:279::-;4412:7;4612:15;:13;:15::i;:::-;4596:13;;:31;4589:38;;4365:279;:::o;3502:90::-;3558:7;3584:1;3577:8;;3502:90;:::o;18865:2595::-;18975:27;19005;19024:7;19005:18;:27::i;:::-;18975:57;;19088:4;19047:45;;19063:19;19047:45;;;19043:86;;19101:28;;;;;;;;;;;;;;19043:86;19140:23;19166:15;:24;19182:7;19166:24;;;;;;;;;;;;;;;;;;;;;19140:50;;19201:22;19250:4;19227:27;;:19;:17;:19::i;:::-;:27;;;:86;;;;19270:43;19287:4;19293:19;:17;:19::i;:::-;19270:16;:43::i;:::-;19227:86;:140;;;;19348:19;:17;:19::i;:::-;19329:38;;:15;:38;;;19227:140;19201:167;;19384:17;19379:66;;19410:35;;;;;;;;;;;;;;19379:66;19484:1;19459:21;19477:2;19459:17;:21::i;:::-;:26;19455:62;;;19494:23;;;;;;;;;;;;;;19455:62;19528:43;19550:4;19556:2;19560:7;19569:1;19528:21;:43::i;:::-;19676:1;19638:34;19656:15;19638:17;:34::i;:::-;:39;19634:101;;19700:15;:24;19716:7;19700:24;;;;;;;;;;;;19693:31;;;;;;;;;;;19634:101;20095:18;:24;20114:4;20095:24;;;;;;;;;;;;;;;;20093:26;;;;;;;;;;;;20163:18;:22;20182:2;20163:22;;;;;;;;;;;;;;;;20161:24;;;;;;;;;;;2045:8;1656:3;20535:15;:41;;20494:21;20512:2;20494:17;:21::i;:::-;:83;:126;20449:17;:26;20467:7;20449:26;;;;;;;;;;;:171;;;;20787:1;2045:8;20737:19;:46;:51;20733:616;;;20808:19;20840:1;20830:7;:11;20808:33;;20995:1;20961:17;:30;20979:11;20961:30;;;;;;;;;;;;:35;20957:378;;;21097:13;;21082:11;:28;21078:239;;21275:19;21242:17;:30;21260:11;21242:30;;;;;;;;;;;:52;;;;21078:239;20957:378;20790:559;20733:616;21393:7;21389:2;21374:27;;21383:4;21374:27;;;;;;;;;;;;21411:42;21432:4;21438:2;21442:7;21451:1;21411:20;:42::i;:::-;18965:2495;;;18865:2595;;;:::o;10834:144::-;10898:14;10957:5;10947:15;;10834:144;;;:::o;2090:169:3:-;2145:16;2164:6;;;;;;;;;;;2145:25;;2189:8;2180:6;;:17;;;;;;;;;;;;;;;;;;2243:8;2212:40;;2233:8;2212:40;;;;;;;;;;;;2135:124;2090:169;:::o;14092:102:1:-;14160:27;14170:2;14174:8;14160:27;;;;;;;;;;;;:9;:27::i;:::-;14092:102;;:::o;25189:697::-;25347:4;25392:2;25367:45;;;25413:19;:17;:19::i;:::-;25434:4;25440:7;25449:5;25367:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;25363:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25662:1;25645:6;:13;:18;25641:229;;;25690:40;;;;;;;;;;;;;;25641:229;25830:6;25824:13;25815:6;25811:2;25807:15;25800:38;25363:517;25533:54;;;25523:64;;;:6;:64;;;;25516:71;;;25189:697;;;;;;:::o;2202:102:4:-;2263:13;2292:7;2285:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2202:102;:::o;275:703:5:-;331:13;557:1;548:5;:10;544:51;;;574:10;;;;;;;;;;;;;;;;;;;;;544:51;604:12;619:5;604:20;;634:14;658:75;673:1;665:4;:9;658:75;;690:8;;;;;:::i;:::-;;;;720:2;712:10;;;;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742:39;;791:150;807:1;798:5;:10;791:150;;834:1;824:11;;;;;:::i;:::-;;;900:2;892:5;:10;;;;:::i;:::-;879:2;:24;;;;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;928:2;919:11;;;;;:::i;:::-;;;791:150;;;964:6;950:21;;;;;275:703;;;;:::o;26517:154:1:-;;;;;:::o;27312:153::-;;;;;:::o;14554:2194::-;14672:20;14695:13;;14672:36;;14747:1;14722:21;14740:2;14722:17;:21::i;:::-;:26;14718:58;;;14757:19;;;;;;;;;;;;;;14718:58;14802:1;14790:8;:13;14786:44;;;14812:18;;;;;;;;;;;;;;14786:44;14841:61;14871:1;14875:2;14879:12;14893:8;14841:21;:61::i;:::-;15434:1;1151:2;15405:1;:25;;15404:31;15392:8;:44;15366:18;:22;15385:2;15366:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;1913:3;15825:29;15852:1;15840:8;:13;15825:14;:29::i;:::-;:56;;1656:3;15763:15;:41;;15722:21;15740:2;15722:17;:21::i;:::-;:83;:160;15672:17;:31;15690:12;15672:31;;;;;;;;;;;:210;;;;15897:20;15920:12;15897:35;;15946:11;15975:8;15960:12;:23;15946:37;;16020:1;16002:2;:14;;;:19;15998:622;;16041:308;16096:12;16092:2;16071:38;;16088:1;16071:38;;;;;;;;;;;;16136:69;16175:1;16179:2;16183:14;;;;;;16199:5;16136:30;:69::i;:::-;16131:172;;16240:40;;;;;;;;;;;;;;16131:172;16344:3;16329:12;:18;16041:308;;16428:12;16411:13;;:29;16407:43;;16442:8;;;16407:43;15998:622;;;16489:117;16544:14;;;;;;16540:2;16519:40;;16536:1;16519:40;;;;;;;;;;;;16601:3;16586:12;:18;16489:117;;15998:622;16649:12;16633:13;:28;;;;15149:1523;;16681:60;16710:1;16714:2;16718:12;16732:8;16681:20;:60::i;:::-;14662:2086;14554:2194;;;:::o;11060:138::-;11118:14;11177:5;11167:15;;11060:138;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:6:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249: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://e388f4c9c3f486a3215b9c3c5bed97159f7745c7b2a9c0b45f540735098b331d
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.